From ecb0640467323b1448ea385fa61f0f3aaee5f677 Mon Sep 17 00:00:00 2001 From: benjamc Date: Fri, 7 Jun 2024 14:37:18 +0200 Subject: [PATCH] Init commit --- .github/workflows/citation_cff.yml | 19 + .github/workflows/doc-deploy.yml | 35 + .github/workflows/docs.yml | 27 + .github/workflows/pre-commit.yml | 38 + .github/workflows/pytest.yml | 39 + .gitignore | 170 + .pre-commit-config.yaml | 52 + AUTHORS.md | 12 + CHANGELOG.md | 1 + CITATION.cff | 28 + CONTRIBUTING.md | 116 + LICENSE | 32 + LOCAL_DEVELOPMENT.md | 0 MANIFEST.in | 17 + Makefile | 66 + README.md | 127 + carps/__init__.py | 14 + carps/analysis/__init__.py | 0 carps/analysis/calc_hypervolume.py | 111 + carps/analysis/configs/gather_data_slurm.yaml | 14 + carps/analysis/final_performance.py | 94 + carps/analysis/gather_data.py | 503 ++ carps/analysis/gather_data_slurm.py | 27 + carps/analysis/interval_estimates.py | 187 + carps/analysis/performance_over_time.py | 59 + carps/analysis/plot_ranking.py | 75 + carps/analysis/plot_relative_perf.py | 39 + carps/analysis/process_data.py | 190 + carps/analysis/run_autorank.py | 351 ++ carps/analysis/superplotting.py | 271 + carps/analysis/utils.py | 42 + carps/benchmarks/COLLECTIONS.md | 33 + carps/benchmarks/__init__.py | 0 carps/benchmarks/bbob.py | 97 + carps/benchmarks/dummy_problem.py | 32 + carps/benchmarks/hpo_b.py | 302 ++ carps/benchmarks/hpo_bench.py | 157 + carps/benchmarks/manyaffinebbob.py | 74 + carps/benchmarks/mfpbench.py | 152 + carps/benchmarks/problem.py | 88 + carps/benchmarks/pymoo.py | 94 + carps/benchmarks/yahpo.py | 174 + carps/configs/__init__.py | 0 carps/configs/base.yaml | 36 + carps/configs/cluster/local.yaml | 7 + carps/configs/cluster/noctua.yaml | 14 + carps/configs/cluster/slurm.yaml | 12 + carps/configs/logger.yaml | 9 + carps/configs/optimizer/DUMMY/config.yaml | 9 + .../optimizer/DUMMY/multifidelity.yaml | 10 + .../configs/optimizer/dehb/multifidelity.yaml | 13 + carps/configs/optimizer/hebo/config.yaml | 6 + carps/configs/optimizer/nevergrad/DE.yaml | 21 + carps/configs/optimizer/nevergrad/ES.yaml | 16 + .../configs/optimizer/nevergrad/Hyperopt.yaml | 10 + .../optimizer/nevergrad/NoisyBandit.yaml | 10 + .../configs/optimizer/nevergrad/bayesopt.yaml | 17 + carps/configs/optimizer/nevergrad/cmaes.yaml | 20 + .../configs/optimizer/nevergrad/default.yaml | 10 + carps/configs/optimizer/optuna/config.yaml | 11 + .../optimizer/optuna/multiobjective.yaml | 10 + .../optimizer/randomsearch/config.yaml | 6 + .../configs/optimizer/scikit_optimize/BO.yaml | 15 + carps/configs/optimizer/smac14/blackbox.yaml | 24 + .../optimizer/smac14/multifidelity.yaml | 25 + .../optimizer/smac14/multiobjective.yaml | 30 + carps/configs/optimizer/smac20/blackbox.yaml | 18 + carps/configs/optimizer/smac20/hpo.yaml | 18 + carps/configs/optimizer/smac20/hyperband.yaml | 21 + carps/configs/optimizer/smac20/momf_gp.yaml | 30 + carps/configs/optimizer/smac20/momf_rf.yaml | 30 + .../optimizer/smac20/multifidelity.yaml | 25 + .../optimizer/smac20/multiobjective.yaml | 22 + .../optimizer/smac20/multiobjective_gp.yaml | 22 + carps/configs/optimizer/synetune/BO.yaml | 17 + carps/configs/optimizer/synetune/BORE.yaml | 11 + .../configs/optimizer/synetune/BO_MO_LS.yaml | 17 + .../configs/optimizer/synetune/BO_MO_RS.yaml | 17 + carps/configs/optimizer/synetune/DEHB.yaml | 20 + carps/configs/optimizer/synetune/KDE.yaml | 15 + carps/configs/optimizer/synetune/MOREA.yaml | 17 + .../optimizer/synetune/SyncMOBSTER.yaml | 13 + .../configs/problem/BBOB/cfg_16_10_16_0.yaml | 33 + .../configs/problem/BBOB/cfg_16_10_16_1.yaml | 33 + .../configs/problem/BBOB/cfg_16_10_16_2.yaml | 33 + .../configs/problem/BBOB/cfg_16_11_16_0.yaml | 33 + .../configs/problem/BBOB/cfg_16_11_16_1.yaml | 33 + .../configs/problem/BBOB/cfg_16_11_16_2.yaml | 33 + .../configs/problem/BBOB/cfg_16_12_16_0.yaml | 33 + .../configs/problem/BBOB/cfg_16_12_16_1.yaml | 33 + .../configs/problem/BBOB/cfg_16_12_16_2.yaml | 33 + .../configs/problem/BBOB/cfg_16_13_16_0.yaml | 33 + .../configs/problem/BBOB/cfg_16_13_16_1.yaml | 33 + .../configs/problem/BBOB/cfg_16_13_16_2.yaml | 33 + .../configs/problem/BBOB/cfg_16_14_16_0.yaml | 33 + .../configs/problem/BBOB/cfg_16_14_16_1.yaml | 33 + .../configs/problem/BBOB/cfg_16_14_16_2.yaml | 33 + .../configs/problem/BBOB/cfg_16_15_16_0.yaml | 33 + .../configs/problem/BBOB/cfg_16_15_16_1.yaml | 33 + .../configs/problem/BBOB/cfg_16_15_16_2.yaml | 33 + .../configs/problem/BBOB/cfg_16_16_16_0.yaml | 33 + .../configs/problem/BBOB/cfg_16_16_16_1.yaml | 33 + .../configs/problem/BBOB/cfg_16_16_16_2.yaml | 33 + .../configs/problem/BBOB/cfg_16_17_16_0.yaml | 33 + .../configs/problem/BBOB/cfg_16_17_16_1.yaml | 33 + .../configs/problem/BBOB/cfg_16_17_16_2.yaml | 33 + .../configs/problem/BBOB/cfg_16_18_16_0.yaml | 33 + .../configs/problem/BBOB/cfg_16_18_16_1.yaml | 33 + .../configs/problem/BBOB/cfg_16_18_16_2.yaml | 33 + .../configs/problem/BBOB/cfg_16_19_16_0.yaml | 33 + .../configs/problem/BBOB/cfg_16_19_16_1.yaml | 33 + .../configs/problem/BBOB/cfg_16_19_16_2.yaml | 33 + carps/configs/problem/BBOB/cfg_16_1_16_0.yaml | 33 + carps/configs/problem/BBOB/cfg_16_1_16_1.yaml | 33 + carps/configs/problem/BBOB/cfg_16_1_16_2.yaml | 33 + .../configs/problem/BBOB/cfg_16_20_16_0.yaml | 33 + .../configs/problem/BBOB/cfg_16_20_16_1.yaml | 33 + .../configs/problem/BBOB/cfg_16_20_16_2.yaml | 33 + .../configs/problem/BBOB/cfg_16_21_16_0.yaml | 33 + .../configs/problem/BBOB/cfg_16_21_16_1.yaml | 33 + .../configs/problem/BBOB/cfg_16_21_16_2.yaml | 33 + .../configs/problem/BBOB/cfg_16_22_16_0.yaml | 33 + .../configs/problem/BBOB/cfg_16_22_16_1.yaml | 33 + .../configs/problem/BBOB/cfg_16_22_16_2.yaml | 33 + .../configs/problem/BBOB/cfg_16_23_16_0.yaml | 33 + .../configs/problem/BBOB/cfg_16_23_16_1.yaml | 33 + .../configs/problem/BBOB/cfg_16_23_16_2.yaml | 33 + .../configs/problem/BBOB/cfg_16_24_16_0.yaml | 33 + .../configs/problem/BBOB/cfg_16_24_16_1.yaml | 33 + .../configs/problem/BBOB/cfg_16_24_16_2.yaml | 33 + carps/configs/problem/BBOB/cfg_16_2_16_0.yaml | 33 + carps/configs/problem/BBOB/cfg_16_2_16_1.yaml | 33 + carps/configs/problem/BBOB/cfg_16_2_16_2.yaml | 33 + carps/configs/problem/BBOB/cfg_16_3_16_0.yaml | 33 + carps/configs/problem/BBOB/cfg_16_3_16_1.yaml | 33 + carps/configs/problem/BBOB/cfg_16_3_16_2.yaml | 33 + carps/configs/problem/BBOB/cfg_16_4_16_0.yaml | 33 + carps/configs/problem/BBOB/cfg_16_4_16_1.yaml | 33 + carps/configs/problem/BBOB/cfg_16_4_16_2.yaml | 33 + carps/configs/problem/BBOB/cfg_16_5_16_0.yaml | 33 + carps/configs/problem/BBOB/cfg_16_5_16_1.yaml | 33 + carps/configs/problem/BBOB/cfg_16_5_16_2.yaml | 33 + carps/configs/problem/BBOB/cfg_16_6_16_0.yaml | 33 + carps/configs/problem/BBOB/cfg_16_6_16_1.yaml | 33 + carps/configs/problem/BBOB/cfg_16_6_16_2.yaml | 33 + carps/configs/problem/BBOB/cfg_16_7_16_0.yaml | 33 + carps/configs/problem/BBOB/cfg_16_7_16_1.yaml | 33 + carps/configs/problem/BBOB/cfg_16_7_16_2.yaml | 33 + carps/configs/problem/BBOB/cfg_16_8_16_0.yaml | 33 + carps/configs/problem/BBOB/cfg_16_8_16_1.yaml | 33 + carps/configs/problem/BBOB/cfg_16_8_16_2.yaml | 33 + carps/configs/problem/BBOB/cfg_16_9_16_0.yaml | 33 + carps/configs/problem/BBOB/cfg_16_9_16_1.yaml | 33 + carps/configs/problem/BBOB/cfg_16_9_16_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_10_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_10_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_10_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_11_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_11_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_11_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_12_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_12_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_12_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_13_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_13_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_13_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_14_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_14_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_14_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_15_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_15_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_15_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_16_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_16_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_16_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_17_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_17_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_17_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_18_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_18_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_18_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_19_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_19_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_19_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_1_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_1_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_1_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_20_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_20_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_20_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_21_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_21_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_21_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_22_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_22_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_22_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_23_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_23_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_23_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_24_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_24_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_24_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_2_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_2_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_2_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_3_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_3_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_3_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_4_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_4_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_4_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_5_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_5_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_5_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_6_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_6_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_6_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_7_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_7_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_7_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_8_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_8_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_8_2_2.yaml | 33 + carps/configs/problem/BBOB/cfg_2_9_2_0.yaml | 33 + carps/configs/problem/BBOB/cfg_2_9_2_1.yaml | 33 + carps/configs/problem/BBOB/cfg_2_9_2_2.yaml | 33 + .../configs/problem/BBOB/cfg_32_10_32_0.yaml | 33 + .../configs/problem/BBOB/cfg_32_10_32_1.yaml | 33 + .../configs/problem/BBOB/cfg_32_10_32_2.yaml | 33 + .../configs/problem/BBOB/cfg_32_11_32_0.yaml | 33 + .../configs/problem/BBOB/cfg_32_11_32_1.yaml | 33 + .../configs/problem/BBOB/cfg_32_11_32_2.yaml | 33 + .../configs/problem/BBOB/cfg_32_12_32_0.yaml | 33 + .../configs/problem/BBOB/cfg_32_12_32_1.yaml | 33 + .../configs/problem/BBOB/cfg_32_12_32_2.yaml | 33 + .../configs/problem/BBOB/cfg_32_13_32_0.yaml | 33 + .../configs/problem/BBOB/cfg_32_13_32_1.yaml | 33 + .../configs/problem/BBOB/cfg_32_13_32_2.yaml | 33 + .../configs/problem/BBOB/cfg_32_14_32_0.yaml | 33 + .../configs/problem/BBOB/cfg_32_14_32_1.yaml | 33 + .../configs/problem/BBOB/cfg_32_14_32_2.yaml | 33 + .../configs/problem/BBOB/cfg_32_15_32_0.yaml | 33 + .../configs/problem/BBOB/cfg_32_15_32_1.yaml | 33 + .../configs/problem/BBOB/cfg_32_15_32_2.yaml | 33 + .../configs/problem/BBOB/cfg_32_16_32_0.yaml | 33 + .../configs/problem/BBOB/cfg_32_16_32_1.yaml | 33 + .../configs/problem/BBOB/cfg_32_16_32_2.yaml | 33 + .../configs/problem/BBOB/cfg_32_17_32_0.yaml | 33 + .../configs/problem/BBOB/cfg_32_17_32_1.yaml | 33 + .../configs/problem/BBOB/cfg_32_17_32_2.yaml | 33 + .../configs/problem/BBOB/cfg_32_18_32_0.yaml | 33 + .../configs/problem/BBOB/cfg_32_18_32_1.yaml | 33 + .../configs/problem/BBOB/cfg_32_18_32_2.yaml | 33 + .../configs/problem/BBOB/cfg_32_19_32_0.yaml | 33 + .../configs/problem/BBOB/cfg_32_19_32_1.yaml | 33 + .../configs/problem/BBOB/cfg_32_19_32_2.yaml | 33 + carps/configs/problem/BBOB/cfg_32_1_32_0.yaml | 33 + carps/configs/problem/BBOB/cfg_32_1_32_1.yaml | 33 + carps/configs/problem/BBOB/cfg_32_1_32_2.yaml | 33 + .../configs/problem/BBOB/cfg_32_20_32_0.yaml | 33 + .../configs/problem/BBOB/cfg_32_20_32_1.yaml | 33 + .../configs/problem/BBOB/cfg_32_20_32_2.yaml | 33 + .../configs/problem/BBOB/cfg_32_21_32_0.yaml | 33 + .../configs/problem/BBOB/cfg_32_21_32_1.yaml | 33 + .../configs/problem/BBOB/cfg_32_21_32_2.yaml | 33 + .../configs/problem/BBOB/cfg_32_22_32_0.yaml | 33 + .../configs/problem/BBOB/cfg_32_22_32_1.yaml | 33 + .../configs/problem/BBOB/cfg_32_22_32_2.yaml | 33 + .../configs/problem/BBOB/cfg_32_23_32_0.yaml | 33 + .../configs/problem/BBOB/cfg_32_23_32_1.yaml | 33 + .../configs/problem/BBOB/cfg_32_23_32_2.yaml | 33 + .../configs/problem/BBOB/cfg_32_24_32_0.yaml | 33 + .../configs/problem/BBOB/cfg_32_24_32_1.yaml | 33 + .../configs/problem/BBOB/cfg_32_24_32_2.yaml | 33 + carps/configs/problem/BBOB/cfg_32_2_32_0.yaml | 33 + carps/configs/problem/BBOB/cfg_32_2_32_1.yaml | 33 + carps/configs/problem/BBOB/cfg_32_2_32_2.yaml | 33 + carps/configs/problem/BBOB/cfg_32_3_32_0.yaml | 33 + carps/configs/problem/BBOB/cfg_32_3_32_1.yaml | 33 + carps/configs/problem/BBOB/cfg_32_3_32_2.yaml | 33 + carps/configs/problem/BBOB/cfg_32_4_32_0.yaml | 33 + carps/configs/problem/BBOB/cfg_32_4_32_1.yaml | 33 + carps/configs/problem/BBOB/cfg_32_4_32_2.yaml | 33 + carps/configs/problem/BBOB/cfg_32_5_32_0.yaml | 33 + carps/configs/problem/BBOB/cfg_32_5_32_1.yaml | 33 + carps/configs/problem/BBOB/cfg_32_5_32_2.yaml | 33 + carps/configs/problem/BBOB/cfg_32_6_32_0.yaml | 33 + carps/configs/problem/BBOB/cfg_32_6_32_1.yaml | 33 + carps/configs/problem/BBOB/cfg_32_6_32_2.yaml | 33 + carps/configs/problem/BBOB/cfg_32_7_32_0.yaml | 33 + carps/configs/problem/BBOB/cfg_32_7_32_1.yaml | 33 + carps/configs/problem/BBOB/cfg_32_7_32_2.yaml | 33 + carps/configs/problem/BBOB/cfg_32_8_32_0.yaml | 33 + carps/configs/problem/BBOB/cfg_32_8_32_1.yaml | 33 + carps/configs/problem/BBOB/cfg_32_8_32_2.yaml | 33 + carps/configs/problem/BBOB/cfg_32_9_32_0.yaml | 33 + carps/configs/problem/BBOB/cfg_32_9_32_1.yaml | 33 + carps/configs/problem/BBOB/cfg_32_9_32_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_10_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_10_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_10_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_11_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_11_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_11_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_12_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_12_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_12_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_13_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_13_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_13_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_14_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_14_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_14_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_15_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_15_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_15_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_16_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_16_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_16_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_17_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_17_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_17_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_18_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_18_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_18_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_19_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_19_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_19_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_1_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_1_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_1_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_20_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_20_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_20_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_21_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_21_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_21_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_22_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_22_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_22_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_23_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_23_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_23_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_24_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_24_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_24_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_2_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_2_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_2_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_3_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_3_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_3_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_4_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_4_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_4_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_5_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_5_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_5_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_6_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_6_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_6_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_7_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_7_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_7_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_8_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_8_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_8_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_4_9_4_0.yaml | 33 + carps/configs/problem/BBOB/cfg_4_9_4_1.yaml | 33 + carps/configs/problem/BBOB/cfg_4_9_4_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_10_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_10_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_10_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_11_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_11_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_11_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_12_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_12_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_12_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_13_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_13_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_13_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_14_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_14_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_14_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_15_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_15_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_15_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_16_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_16_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_16_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_17_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_17_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_17_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_18_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_18_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_18_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_19_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_19_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_19_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_1_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_1_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_1_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_20_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_20_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_20_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_21_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_21_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_21_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_22_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_22_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_22_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_23_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_23_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_23_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_24_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_24_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_24_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_2_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_2_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_2_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_3_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_3_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_3_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_4_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_4_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_4_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_5_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_5_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_5_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_6_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_6_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_6_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_7_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_7_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_7_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_8_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_8_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_8_8_2.yaml | 33 + carps/configs/problem/BBOB/cfg_8_9_8_0.yaml | 33 + carps/configs/problem/BBOB/cfg_8_9_8_1.yaml | 33 + carps/configs/problem/BBOB/cfg_8_9_8_2.yaml | 33 + carps/configs/problem/DUMMY/config.yaml | 13 + .../configs/problem/HPOB/all/cfg_124_41.yaml | 32 + .../configs/problem/HPOB/all/cfg_124_59.yaml | 32 + .../configs/problem/HPOB/all/cfg_151_12.yaml | 32 + .../configs/problem/HPOB/all/cfg_151_20.yaml | 32 + .../configs/problem/HPOB/all/cfg_151_28.yaml | 32 + .../configs/problem/HPOB/all/cfg_151_59.yaml | 32 + carps/configs/problem/HPOB/all/cfg_151_6.yaml | 32 + .../configs/problem/HPOB/all/cfg_153_59.yaml | 32 + .../problem/HPOB/all/cfg_158_2079.yaml | 32 + .../configs/problem/HPOB/all/cfg_189_22.yaml | 32 + .../configs/problem/HPOB/all/cfg_189_42.yaml | 32 + .../problem/HPOB/all/cfg_2010_125966.yaml | 32 + .../problem/HPOB/all/cfg_2039_125966.yaml | 32 + .../problem/HPOB/all/cfg_2039_125968.yaml | 32 + .../problem/HPOB/all/cfg_2073_125966.yaml | 32 + .../problem/HPOB/all/cfg_2073_125968.yaml | 32 + .../problem/HPOB/all/cfg_2073_125969.yaml | 32 + .../configs/problem/HPOB/all/cfg_214_58.yaml | 32 + .../problem/HPOB/all/cfg_2277_125966.yaml | 32 + .../problem/HPOB/all/cfg_2277_125968.yaml | 32 + .../problem/HPOB/all/cfg_2277_125969.yaml | 32 + .../configs/problem/HPOB/all/cfg_243_59.yaml | 32 + .../configs/problem/HPOB/all/cfg_245_59.yaml | 32 + .../configs/problem/HPOB/all/cfg_246_59.yaml | 32 + .../configs/problem/HPOB/all/cfg_247_59.yaml | 32 + .../configs/problem/HPOB/all/cfg_248_59.yaml | 32 + .../configs/problem/HPOB/all/cfg_2553_3.yaml | 32 + .../problem/HPOB/all/cfg_2566_3647.yaml | 32 + .../problem/HPOB/all/cfg_2614_3954.yaml | 32 + .../problem/HPOB/all/cfg_2629_14951.yaml | 32 + .../problem/HPOB/all/cfg_2793_14951.yaml | 32 + .../problem/HPOB/all/cfg_2799_14951.yaml | 32 + .../problem/HPOB/all/cfg_2823_14951.yaml | 32 + .../problem/HPOB/all/cfg_3414_14951.yaml | 32 + .../problem/HPOB/all/cfg_3425_14951.yaml | 32 + .../problem/HPOB/all/cfg_3434_14951.yaml | 32 + .../problem/HPOB/all/cfg_3439_14951.yaml | 32 + .../problem/HPOB/all/cfg_3442_14951.yaml | 32 + .../problem/HPOB/all/cfg_3489_125966.yaml | 32 + .../problem/HPOB/all/cfg_3489_125968.yaml | 32 + .../problem/HPOB/all/cfg_3489_125969.yaml | 32 + .../problem/HPOB/all/cfg_3490_125966.yaml | 32 + .../problem/HPOB/all/cfg_3490_125968.yaml | 32 + .../problem/HPOB/all/cfg_3490_125969.yaml | 32 + .../problem/HPOB/all/cfg_3502_125966.yaml | 32 + .../problem/HPOB/all/cfg_3502_125969.yaml | 32 + .../problem/HPOB/all/cfg_3737_3736.yaml | 32 + .../problem/HPOB/all/cfg_3894_3577.yaml | 32 + .../problem/HPOB/all/cfg_3894_3647.yaml | 32 + .../problem/HPOB/all/cfg_3894_3729.yaml | 32 + .../problem/HPOB/all/cfg_3894_3731.yaml | 32 + .../problem/HPOB/all/cfg_3960_125966.yaml | 32 + .../problem/HPOB/all/cfg_3994_10093.yaml | 32 + .../problem/HPOB/all/cfg_3994_10101.yaml | 32 + .../problem/HPOB/all/cfg_3994_9903.yaml | 32 + .../problem/HPOB/all/cfg_3994_9905.yaml | 32 + .../problem/HPOB/all/cfg_3994_9971.yaml | 32 + .../configs/problem/HPOB/all/cfg_4006_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_4006_57.yaml | 32 + .../configs/problem/HPOB/all/cfg_423_29.yaml | 32 + .../configs/problem/HPOB/all/cfg_423_59.yaml | 32 + .../problem/HPOB/all/cfg_4289_125966.yaml | 32 + .../problem/HPOB/all/cfg_4796_10093.yaml | 32 + .../problem/HPOB/all/cfg_4796_10101.yaml | 32 + .../configs/problem/HPOB/all/cfg_4796_11.yaml | 32 + .../problem/HPOB/all/cfg_4796_14964.yaml | 32 + .../problem/HPOB/all/cfg_4796_14968.yaml | 32 + .../configs/problem/HPOB/all/cfg_4796_15.yaml | 32 + .../configs/problem/HPOB/all/cfg_4796_18.yaml | 32 + .../configs/problem/HPOB/all/cfg_4796_2.yaml | 32 + .../problem/HPOB/all/cfg_4796_2079.yaml | 32 + .../configs/problem/HPOB/all/cfg_4796_21.yaml | 32 + .../configs/problem/HPOB/all/cfg_4796_23.yaml | 32 + .../configs/problem/HPOB/all/cfg_4796_29.yaml | 32 + .../problem/HPOB/all/cfg_4796_3022.yaml | 32 + .../configs/problem/HPOB/all/cfg_4796_31.yaml | 32 + .../problem/HPOB/all/cfg_4796_3492.yaml | 32 + .../problem/HPOB/all/cfg_4796_3493.yaml | 32 + .../problem/HPOB/all/cfg_4796_3494.yaml | 32 + .../problem/HPOB/all/cfg_4796_3512.yaml | 32 + .../problem/HPOB/all/cfg_4796_3543.yaml | 32 + .../problem/HPOB/all/cfg_4796_3549.yaml | 32 + .../problem/HPOB/all/cfg_4796_3560.yaml | 32 + .../problem/HPOB/all/cfg_4796_3561.yaml | 32 + .../problem/HPOB/all/cfg_4796_3567.yaml | 32 + .../configs/problem/HPOB/all/cfg_4796_36.yaml | 32 + .../configs/problem/HPOB/all/cfg_4796_37.yaml | 32 + .../problem/HPOB/all/cfg_4796_3902.yaml | 32 + .../problem/HPOB/all/cfg_4796_3903.yaml | 32 + .../problem/HPOB/all/cfg_4796_3913.yaml | 32 + .../problem/HPOB/all/cfg_4796_3917.yaml | 32 + .../problem/HPOB/all/cfg_4796_3918.yaml | 32 + .../configs/problem/HPOB/all/cfg_4796_41.yaml | 32 + .../configs/problem/HPOB/all/cfg_4796_49.yaml | 32 + .../configs/problem/HPOB/all/cfg_4796_53.yaml | 32 + .../problem/HPOB/all/cfg_4796_9903.yaml | 32 + .../problem/HPOB/all/cfg_4796_9905.yaml | 32 + .../problem/HPOB/all/cfg_4796_9906.yaml | 32 + .../problem/HPOB/all/cfg_4796_9914.yaml | 32 + .../problem/HPOB/all/cfg_4796_9946.yaml | 32 + .../problem/HPOB/all/cfg_4796_9952.yaml | 32 + .../problem/HPOB/all/cfg_4796_9957.yaml | 32 + .../problem/HPOB/all/cfg_4796_9967.yaml | 32 + .../problem/HPOB/all/cfg_4796_9971.yaml | 32 + .../problem/HPOB/all/cfg_4796_9979.yaml | 32 + .../problem/HPOB/all/cfg_4796_9980.yaml | 32 + .../configs/problem/HPOB/all/cfg_4828_57.yaml | 32 + carps/configs/problem/HPOB/all/cfg_506_1.yaml | 32 + .../configs/problem/HPOB/all/cfg_506_15.yaml | 32 + .../problem/HPOB/all/cfg_506_1793.yaml | 32 + .../configs/problem/HPOB/all/cfg_506_257.yaml | 32 + .../configs/problem/HPOB/all/cfg_506_269.yaml | 32 + .../configs/problem/HPOB/all/cfg_506_34.yaml | 32 + .../problem/HPOB/all/cfg_506_3658.yaml | 32 + .../problem/HPOB/all/cfg_506_3949.yaml | 32 + .../configs/problem/HPOB/all/cfg_506_59.yaml | 32 + .../problem/HPOB/all/cfg_5218_125966.yaml | 32 + .../problem/HPOB/all/cfg_5237_125966.yaml | 32 + .../problem/HPOB/all/cfg_5253_125966.yaml | 32 + .../problem/HPOB/all/cfg_5295_125966.yaml | 32 + .../problem/HPOB/all/cfg_5301_125966.yaml | 32 + .../problem/HPOB/all/cfg_5315_125966.yaml | 32 + .../configs/problem/HPOB/all/cfg_534_10.yaml | 32 + .../configs/problem/HPOB/all/cfg_534_11.yaml | 32 + .../configs/problem/HPOB/all/cfg_534_12.yaml | 32 + .../configs/problem/HPOB/all/cfg_534_15.yaml | 32 + .../configs/problem/HPOB/all/cfg_534_16.yaml | 32 + .../problem/HPOB/all/cfg_534_1793.yaml | 32 + .../configs/problem/HPOB/all/cfg_534_18.yaml | 32 + .../configs/problem/HPOB/all/cfg_534_20.yaml | 32 + .../problem/HPOB/all/cfg_534_2073.yaml | 32 + .../problem/HPOB/all/cfg_534_2075.yaml | 32 + .../configs/problem/HPOB/all/cfg_534_23.yaml | 32 + .../configs/problem/HPOB/all/cfg_534_269.yaml | 32 + .../configs/problem/HPOB/all/cfg_534_272.yaml | 32 + .../configs/problem/HPOB/all/cfg_534_29.yaml | 32 + .../problem/HPOB/all/cfg_534_3011.yaml | 32 + .../problem/HPOB/all/cfg_534_3021.yaml | 32 + .../configs/problem/HPOB/all/cfg_534_34.yaml | 32 + .../problem/HPOB/all/cfg_534_3481.yaml | 32 + .../problem/HPOB/all/cfg_534_3493.yaml | 32 + .../problem/HPOB/all/cfg_534_3494.yaml | 32 + .../problem/HPOB/all/cfg_534_3497.yaml | 32 + .../problem/HPOB/all/cfg_534_3510.yaml | 32 + .../problem/HPOB/all/cfg_534_3542.yaml | 32 + .../problem/HPOB/all/cfg_534_3549.yaml | 32 + .../problem/HPOB/all/cfg_534_3550.yaml | 32 + .../problem/HPOB/all/cfg_534_3555.yaml | 32 + .../problem/HPOB/all/cfg_534_3560.yaml | 32 + .../problem/HPOB/all/cfg_534_3561.yaml | 32 + .../problem/HPOB/all/cfg_534_3570.yaml | 32 + .../problem/HPOB/all/cfg_534_3577.yaml | 32 + .../problem/HPOB/all/cfg_534_3578.yaml | 32 + .../problem/HPOB/all/cfg_534_3580.yaml | 32 + .../problem/HPOB/all/cfg_534_3585.yaml | 32 + .../problem/HPOB/all/cfg_534_3591.yaml | 32 + .../problem/HPOB/all/cfg_534_3599.yaml | 32 + .../configs/problem/HPOB/all/cfg_534_36.yaml | 32 + .../problem/HPOB/all/cfg_534_3613.yaml | 32 + .../problem/HPOB/all/cfg_534_3614.yaml | 32 + .../problem/HPOB/all/cfg_534_3620.yaml | 32 + .../problem/HPOB/all/cfg_534_3709.yaml | 32 + .../problem/HPOB/all/cfg_534_3713.yaml | 32 + .../problem/HPOB/all/cfg_534_3724.yaml | 32 + .../problem/HPOB/all/cfg_534_3731.yaml | 32 + .../problem/HPOB/all/cfg_534_3736.yaml | 32 + .../problem/HPOB/all/cfg_534_3758.yaml | 32 + .../problem/HPOB/all/cfg_534_3763.yaml | 32 + .../problem/HPOB/all/cfg_534_3765.yaml | 32 + .../problem/HPOB/all/cfg_534_3784.yaml | 32 + .../problem/HPOB/all/cfg_534_3799.yaml | 32 + .../problem/HPOB/all/cfg_534_3818.yaml | 32 + .../problem/HPOB/all/cfg_534_3820.yaml | 32 + .../problem/HPOB/all/cfg_534_3837.yaml | 32 + .../problem/HPOB/all/cfg_534_3846.yaml | 32 + .../problem/HPOB/all/cfg_534_3849.yaml | 32 + .../problem/HPOB/all/cfg_534_3854.yaml | 32 + .../problem/HPOB/all/cfg_534_3859.yaml | 32 + .../problem/HPOB/all/cfg_534_3896.yaml | 32 + .../problem/HPOB/all/cfg_534_3902.yaml | 32 + .../problem/HPOB/all/cfg_534_3919.yaml | 32 + .../configs/problem/HPOB/all/cfg_534_41.yaml | 32 + .../configs/problem/HPOB/all/cfg_534_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_534_49.yaml | 32 + .../configs/problem/HPOB/all/cfg_534_50.yaml | 32 + .../configs/problem/HPOB/all/cfg_534_53.yaml | 32 + .../configs/problem/HPOB/all/cfg_534_59.yaml | 32 + .../problem/HPOB/all/cfg_5435_125920.yaml | 32 + .../problem/HPOB/all/cfg_5435_125921.yaml | 32 + .../problem/HPOB/all/cfg_5435_125922.yaml | 32 + .../problem/HPOB/all/cfg_5435_125923.yaml | 32 + .../problem/HPOB/all/cfg_5458_3011.yaml | 32 + .../problem/HPOB/all/cfg_5458_3021.yaml | 32 + .../configs/problem/HPOB/all/cfg_5458_34.yaml | 32 + .../problem/HPOB/all/cfg_5458_3820.yaml | 32 + .../problem/HPOB/all/cfg_5489_3011.yaml | 32 + .../configs/problem/HPOB/all/cfg_5489_34.yaml | 32 + .../problem/HPOB/all/cfg_5489_3849.yaml | 32 + .../problem/HPOB/all/cfg_5489_3866.yaml | 32 + .../configs/problem/HPOB/all/cfg_5489_50.yaml | 32 + .../configs/problem/HPOB/all/cfg_5499_11.yaml | 32 + .../problem/HPOB/all/cfg_5499_145677.yaml | 32 + .../problem/HPOB/all/cfg_5502_145677.yaml | 32 + .../problem/HPOB/all/cfg_5503_145677.yaml | 32 + .../problem/HPOB/all/cfg_5503_14951.yaml | 32 + .../problem/HPOB/all/cfg_5521_145677.yaml | 32 + .../problem/HPOB/all/cfg_5526_145833.yaml | 32 + .../problem/HPOB/all/cfg_5526_145834.yaml | 32 + .../configs/problem/HPOB/all/cfg_5526_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_5526_31.yaml | 32 + .../problem/HPOB/all/cfg_5526_3494.yaml | 32 + .../problem/HPOB/all/cfg_5526_3899.yaml | 32 + .../problem/HPOB/all/cfg_5526_7295.yaml | 32 + .../problem/HPOB/all/cfg_5527_10101.yaml | 32 + .../problem/HPOB/all/cfg_5527_125923.yaml | 32 + .../problem/HPOB/all/cfg_5527_145804.yaml | 32 + .../problem/HPOB/all/cfg_5527_145833.yaml | 32 + .../problem/HPOB/all/cfg_5527_145834.yaml | 32 + .../problem/HPOB/all/cfg_5527_145836.yaml | 32 + .../problem/HPOB/all/cfg_5527_145847.yaml | 32 + .../problem/HPOB/all/cfg_5527_145853.yaml | 32 + .../problem/HPOB/all/cfg_5527_145854.yaml | 32 + .../problem/HPOB/all/cfg_5527_145855.yaml | 32 + .../problem/HPOB/all/cfg_5527_145857.yaml | 32 + .../problem/HPOB/all/cfg_5527_145862.yaml | 32 + .../problem/HPOB/all/cfg_5527_145872.yaml | 32 + .../problem/HPOB/all/cfg_5527_145878.yaml | 32 + .../problem/HPOB/all/cfg_5527_145953.yaml | 32 + .../problem/HPOB/all/cfg_5527_145972.yaml | 32 + .../problem/HPOB/all/cfg_5527_145976.yaml | 32 + .../problem/HPOB/all/cfg_5527_145979.yaml | 32 + .../problem/HPOB/all/cfg_5527_146012.yaml | 32 + .../problem/HPOB/all/cfg_5527_146064.yaml | 32 + .../problem/HPOB/all/cfg_5527_146065.yaml | 32 + .../problem/HPOB/all/cfg_5527_146066.yaml | 32 + .../problem/HPOB/all/cfg_5527_146082.yaml | 32 + .../problem/HPOB/all/cfg_5527_146085.yaml | 32 + .../problem/HPOB/all/cfg_5527_14951.yaml | 32 + .../problem/HPOB/all/cfg_5527_14965.yaml | 32 + .../problem/HPOB/all/cfg_5527_14971.yaml | 32 + .../problem/HPOB/all/cfg_5527_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_5527_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_5527_31.yaml | 32 + .../problem/HPOB/all/cfg_5527_34536.yaml | 32 + .../problem/HPOB/all/cfg_5527_3485.yaml | 32 + .../problem/HPOB/all/cfg_5527_3492.yaml | 32 + .../problem/HPOB/all/cfg_5527_3493.yaml | 32 + .../problem/HPOB/all/cfg_5527_3494.yaml | 32 + .../configs/problem/HPOB/all/cfg_5527_37.yaml | 32 + .../problem/HPOB/all/cfg_5527_3889.yaml | 32 + .../problem/HPOB/all/cfg_5527_3891.yaml | 32 + .../problem/HPOB/all/cfg_5527_3896.yaml | 32 + .../problem/HPOB/all/cfg_5527_3899.yaml | 32 + .../problem/HPOB/all/cfg_5527_3902.yaml | 32 + .../problem/HPOB/all/cfg_5527_3903.yaml | 32 + .../problem/HPOB/all/cfg_5527_3913.yaml | 32 + .../problem/HPOB/all/cfg_5527_3917.yaml | 32 + .../problem/HPOB/all/cfg_5527_3918.yaml | 32 + .../problem/HPOB/all/cfg_5527_3950.yaml | 32 + .../problem/HPOB/all/cfg_5527_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_5527_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_5527_49.yaml | 32 + .../problem/HPOB/all/cfg_5527_6566.yaml | 32 + .../problem/HPOB/all/cfg_5527_7295.yaml | 32 + .../problem/HPOB/all/cfg_5527_9889.yaml | 32 + .../problem/HPOB/all/cfg_5527_9914.yaml | 32 + .../problem/HPOB/all/cfg_5527_9946.yaml | 32 + .../problem/HPOB/all/cfg_5527_9952.yaml | 32 + .../problem/HPOB/all/cfg_5527_9957.yaml | 32 + .../problem/HPOB/all/cfg_5527_9967.yaml | 32 + .../problem/HPOB/all/cfg_5527_9970.yaml | 32 + .../problem/HPOB/all/cfg_5527_9971.yaml | 32 + .../problem/HPOB/all/cfg_5527_9976.yaml | 32 + .../problem/HPOB/all/cfg_5527_9977.yaml | 32 + .../problem/HPOB/all/cfg_5527_9978.yaml | 32 + .../problem/HPOB/all/cfg_5527_9980.yaml | 32 + .../configs/problem/HPOB/all/cfg_5584_18.yaml | 32 + .../configs/problem/HPOB/all/cfg_5584_47.yaml | 32 + .../problem/HPOB/all/cfg_5604_145677.yaml | 32 + .../problem/HPOB/all/cfg_5623_146085.yaml | 32 + .../problem/HPOB/all/cfg_5623_272.yaml | 32 + .../problem/HPOB/all/cfg_5623_282.yaml | 32 + .../problem/HPOB/all/cfg_5624_219.yaml | 32 + .../problem/HPOB/all/cfg_5624_272.yaml | 32 + .../problem/HPOB/all/cfg_5624_282.yaml | 32 + .../problem/HPOB/all/cfg_5624_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_5624_43.yaml | 32 + .../problem/HPOB/all/cfg_5626_145677.yaml | 32 + .../configs/problem/HPOB/all/cfg_5626_23.yaml | 32 + .../configs/problem/HPOB/all/cfg_5626_36.yaml | 32 + .../problem/HPOB/all/cfg_5636_10093.yaml | 32 + .../problem/HPOB/all/cfg_5636_10101.yaml | 32 + .../problem/HPOB/all/cfg_5636_125923.yaml | 32 + .../problem/HPOB/all/cfg_5636_145804.yaml | 32 + .../problem/HPOB/all/cfg_5636_145833.yaml | 32 + .../problem/HPOB/all/cfg_5636_145834.yaml | 32 + .../problem/HPOB/all/cfg_5636_145836.yaml | 32 + .../problem/HPOB/all/cfg_5636_145839.yaml | 32 + .../problem/HPOB/all/cfg_5636_145847.yaml | 32 + .../problem/HPOB/all/cfg_5636_145848.yaml | 32 + .../problem/HPOB/all/cfg_5636_145853.yaml | 32 + .../problem/HPOB/all/cfg_5636_145854.yaml | 32 + .../problem/HPOB/all/cfg_5636_145855.yaml | 32 + .../problem/HPOB/all/cfg_5636_145857.yaml | 32 + .../problem/HPOB/all/cfg_5636_145862.yaml | 32 + .../problem/HPOB/all/cfg_5636_145872.yaml | 32 + .../problem/HPOB/all/cfg_5636_145878.yaml | 32 + .../problem/HPOB/all/cfg_5636_145953.yaml | 32 + .../problem/HPOB/all/cfg_5636_145972.yaml | 32 + .../problem/HPOB/all/cfg_5636_145976.yaml | 32 + .../problem/HPOB/all/cfg_5636_145979.yaml | 32 + .../problem/HPOB/all/cfg_5636_146012.yaml | 32 + .../problem/HPOB/all/cfg_5636_146064.yaml | 32 + .../problem/HPOB/all/cfg_5636_146065.yaml | 32 + .../problem/HPOB/all/cfg_5636_146066.yaml | 32 + .../problem/HPOB/all/cfg_5636_146082.yaml | 32 + .../problem/HPOB/all/cfg_5636_146085.yaml | 32 + .../problem/HPOB/all/cfg_5636_14951.yaml | 32 + .../problem/HPOB/all/cfg_5636_14965.yaml | 32 + .../problem/HPOB/all/cfg_5636_14971.yaml | 32 + .../problem/HPOB/all/cfg_5636_219.yaml | 32 + .../problem/HPOB/all/cfg_5636_272.yaml | 32 + .../problem/HPOB/all/cfg_5636_282.yaml | 32 + .../configs/problem/HPOB/all/cfg_5636_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_5636_31.yaml | 32 + .../problem/HPOB/all/cfg_5636_34536.yaml | 32 + .../problem/HPOB/all/cfg_5636_3485.yaml | 32 + .../problem/HPOB/all/cfg_5636_3492.yaml | 32 + .../problem/HPOB/all/cfg_5636_3493.yaml | 32 + .../problem/HPOB/all/cfg_5636_3494.yaml | 32 + .../configs/problem/HPOB/all/cfg_5636_37.yaml | 32 + .../problem/HPOB/all/cfg_5636_3889.yaml | 32 + .../problem/HPOB/all/cfg_5636_3891.yaml | 32 + .../problem/HPOB/all/cfg_5636_3896.yaml | 32 + .../problem/HPOB/all/cfg_5636_3899.yaml | 32 + .../problem/HPOB/all/cfg_5636_3902.yaml | 32 + .../problem/HPOB/all/cfg_5636_3903.yaml | 32 + .../problem/HPOB/all/cfg_5636_3913.yaml | 32 + .../problem/HPOB/all/cfg_5636_3917.yaml | 32 + .../problem/HPOB/all/cfg_5636_3918.yaml | 32 + .../problem/HPOB/all/cfg_5636_3950.yaml | 32 + .../problem/HPOB/all/cfg_5636_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_5636_43.yaml | 32 + .../problem/HPOB/all/cfg_5636_6566.yaml | 32 + .../problem/HPOB/all/cfg_5636_7295.yaml | 32 + .../problem/HPOB/all/cfg_5636_9889.yaml | 32 + .../problem/HPOB/all/cfg_5636_9914.yaml | 32 + .../problem/HPOB/all/cfg_5636_9946.yaml | 32 + .../problem/HPOB/all/cfg_5636_9952.yaml | 32 + .../problem/HPOB/all/cfg_5636_9957.yaml | 32 + .../problem/HPOB/all/cfg_5636_9967.yaml | 32 + .../problem/HPOB/all/cfg_5636_9970.yaml | 32 + .../problem/HPOB/all/cfg_5636_9971.yaml | 32 + .../problem/HPOB/all/cfg_5636_9976.yaml | 32 + .../problem/HPOB/all/cfg_5636_9977.yaml | 32 + .../problem/HPOB/all/cfg_5636_9980.yaml | 32 + .../problem/HPOB/all/cfg_5636_9983.yaml | 32 + .../problem/HPOB/all/cfg_5704_145677.yaml | 32 + .../problem/HPOB/all/cfg_5788_145677.yaml | 32 + .../problem/HPOB/all/cfg_5813_145677.yaml | 32 + .../problem/HPOB/all/cfg_5859_10093.yaml | 32 + .../problem/HPOB/all/cfg_5859_10101.yaml | 32 + .../problem/HPOB/all/cfg_5859_125923.yaml | 32 + .../problem/HPOB/all/cfg_5859_145677.yaml | 32 + .../problem/HPOB/all/cfg_5859_145833.yaml | 32 + .../problem/HPOB/all/cfg_5859_145834.yaml | 32 + .../problem/HPOB/all/cfg_5859_145836.yaml | 32 + .../problem/HPOB/all/cfg_5859_145839.yaml | 32 + .../problem/HPOB/all/cfg_5859_145848.yaml | 32 + .../problem/HPOB/all/cfg_5859_145853.yaml | 32 + .../problem/HPOB/all/cfg_5859_145854.yaml | 32 + .../problem/HPOB/all/cfg_5859_145855.yaml | 32 + .../problem/HPOB/all/cfg_5859_145862.yaml | 32 + .../problem/HPOB/all/cfg_5859_145872.yaml | 32 + .../problem/HPOB/all/cfg_5859_145878.yaml | 32 + .../problem/HPOB/all/cfg_5859_145972.yaml | 32 + .../problem/HPOB/all/cfg_5859_145979.yaml | 32 + .../problem/HPOB/all/cfg_5859_146064.yaml | 32 + .../problem/HPOB/all/cfg_5859_146065.yaml | 32 + .../problem/HPOB/all/cfg_5859_146066.yaml | 32 + .../problem/HPOB/all/cfg_5859_146082.yaml | 32 + .../problem/HPOB/all/cfg_5859_14951.yaml | 32 + .../problem/HPOB/all/cfg_5859_14952.yaml | 32 + .../problem/HPOB/all/cfg_5859_14965.yaml | 32 + .../problem/HPOB/all/cfg_5859_14966.yaml | 32 + .../problem/HPOB/all/cfg_5859_14971.yaml | 32 + .../problem/HPOB/all/cfg_5859_219.yaml | 32 + .../problem/HPOB/all/cfg_5859_272.yaml | 32 + .../problem/HPOB/all/cfg_5859_282.yaml | 32 + .../configs/problem/HPOB/all/cfg_5859_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_5859_31.yaml | 32 + .../problem/HPOB/all/cfg_5859_34536.yaml | 32 + .../problem/HPOB/all/cfg_5859_34537.yaml | 32 + .../problem/HPOB/all/cfg_5859_34539.yaml | 32 + .../problem/HPOB/all/cfg_5859_3485.yaml | 32 + .../problem/HPOB/all/cfg_5859_3492.yaml | 32 + .../problem/HPOB/all/cfg_5859_3493.yaml | 32 + .../problem/HPOB/all/cfg_5859_3494.yaml | 32 + .../configs/problem/HPOB/all/cfg_5859_37.yaml | 32 + .../problem/HPOB/all/cfg_5859_3889.yaml | 32 + .../problem/HPOB/all/cfg_5859_3891.yaml | 32 + .../problem/HPOB/all/cfg_5859_3896.yaml | 32 + .../problem/HPOB/all/cfg_5859_3899.yaml | 32 + .../problem/HPOB/all/cfg_5859_3902.yaml | 32 + .../problem/HPOB/all/cfg_5859_3903.yaml | 32 + .../problem/HPOB/all/cfg_5859_3913.yaml | 32 + .../problem/HPOB/all/cfg_5859_3917.yaml | 32 + .../problem/HPOB/all/cfg_5859_3918.yaml | 32 + .../problem/HPOB/all/cfg_5859_3950.yaml | 32 + .../problem/HPOB/all/cfg_5859_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_5859_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_5859_49.yaml | 32 + .../problem/HPOB/all/cfg_5859_6566.yaml | 32 + .../problem/HPOB/all/cfg_5859_7295.yaml | 32 + .../problem/HPOB/all/cfg_5859_9889.yaml | 32 + .../problem/HPOB/all/cfg_5859_9910.yaml | 32 + .../problem/HPOB/all/cfg_5859_9911.yaml | 32 + .../problem/HPOB/all/cfg_5859_9914.yaml | 32 + .../problem/HPOB/all/cfg_5859_9946.yaml | 32 + .../problem/HPOB/all/cfg_5859_9952.yaml | 32 + .../problem/HPOB/all/cfg_5859_9957.yaml | 32 + .../problem/HPOB/all/cfg_5859_9967.yaml | 32 + .../problem/HPOB/all/cfg_5859_9970.yaml | 32 + .../problem/HPOB/all/cfg_5859_9971.yaml | 32 + .../problem/HPOB/all/cfg_5859_9976.yaml | 32 + .../problem/HPOB/all/cfg_5859_9977.yaml | 32 + .../problem/HPOB/all/cfg_5859_9978.yaml | 32 + .../problem/HPOB/all/cfg_5859_9980.yaml | 32 + .../problem/HPOB/all/cfg_5859_9983.yaml | 32 + .../problem/HPOB/all/cfg_5860_10101.yaml | 32 + .../problem/HPOB/all/cfg_5860_125923.yaml | 32 + .../problem/HPOB/all/cfg_5860_14951.yaml | 32 + .../problem/HPOB/all/cfg_5860_14965.yaml | 32 + .../problem/HPOB/all/cfg_5860_14971.yaml | 32 + .../problem/HPOB/all/cfg_5860_272.yaml | 32 + .../problem/HPOB/all/cfg_5860_282.yaml | 32 + .../configs/problem/HPOB/all/cfg_5860_3.yaml | 32 + .../problem/HPOB/all/cfg_5860_3485.yaml | 32 + .../problem/HPOB/all/cfg_5860_3492.yaml | 32 + .../problem/HPOB/all/cfg_5860_3493.yaml | 32 + .../configs/problem/HPOB/all/cfg_5860_37.yaml | 32 + .../problem/HPOB/all/cfg_5860_3889.yaml | 32 + .../problem/HPOB/all/cfg_5860_3891.yaml | 32 + .../problem/HPOB/all/cfg_5860_3896.yaml | 32 + .../problem/HPOB/all/cfg_5860_3899.yaml | 32 + .../problem/HPOB/all/cfg_5860_3902.yaml | 32 + .../problem/HPOB/all/cfg_5860_3903.yaml | 32 + .../problem/HPOB/all/cfg_5860_3917.yaml | 32 + .../problem/HPOB/all/cfg_5860_3950.yaml | 32 + .../problem/HPOB/all/cfg_5860_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_5860_49.yaml | 32 + .../problem/HPOB/all/cfg_5860_6566.yaml | 32 + .../problem/HPOB/all/cfg_5860_7295.yaml | 32 + .../problem/HPOB/all/cfg_5860_9889.yaml | 32 + .../problem/HPOB/all/cfg_5860_9952.yaml | 32 + .../problem/HPOB/all/cfg_5860_9957.yaml | 32 + .../problem/HPOB/all/cfg_5860_9967.yaml | 32 + .../problem/HPOB/all/cfg_5860_9970.yaml | 32 + .../problem/HPOB/all/cfg_5860_9976.yaml | 32 + .../problem/HPOB/all/cfg_5860_9977.yaml | 32 + .../problem/HPOB/all/cfg_5860_9978.yaml | 32 + .../problem/HPOB/all/cfg_5860_9980.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_11.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_12.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_14.yaml | 32 + .../problem/HPOB/all/cfg_5886_145685.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_18.yaml | 32 + .../problem/HPOB/all/cfg_5886_2068.yaml | 32 + .../problem/HPOB/all/cfg_5886_2071.yaml | 32 + .../problem/HPOB/all/cfg_5886_2073.yaml | 32 + .../problem/HPOB/all/cfg_5886_2074.yaml | 32 + .../problem/HPOB/all/cfg_5886_2075.yaml | 32 + .../problem/HPOB/all/cfg_5886_2076.yaml | 32 + .../problem/HPOB/all/cfg_5886_2077.yaml | 32 + .../problem/HPOB/all/cfg_5886_2079.yaml | 32 + .../problem/HPOB/all/cfg_5886_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_22.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_23.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_24.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_26.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_28.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_29.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_30.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_31.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_32.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_33.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_36.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_37.yaml | 32 + .../problem/HPOB/all/cfg_5886_3951.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_41.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_45.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_49.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_53.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_58.yaml | 32 + .../configs/problem/HPOB/all/cfg_5886_6.yaml | 32 + .../problem/HPOB/all/cfg_5889_10101.yaml | 32 + .../problem/HPOB/all/cfg_5889_125923.yaml | 32 + .../problem/HPOB/all/cfg_5889_14971.yaml | 32 + .../configs/problem/HPOB/all/cfg_5889_31.yaml | 32 + .../problem/HPOB/all/cfg_5889_3493.yaml | 32 + .../problem/HPOB/all/cfg_5889_3494.yaml | 32 + .../problem/HPOB/all/cfg_5889_3889.yaml | 32 + .../problem/HPOB/all/cfg_5889_3891.yaml | 32 + .../problem/HPOB/all/cfg_5889_3913.yaml | 32 + .../problem/HPOB/all/cfg_5889_3917.yaml | 32 + .../problem/HPOB/all/cfg_5889_3918.yaml | 32 + .../problem/HPOB/all/cfg_5889_3950.yaml | 32 + .../problem/HPOB/all/cfg_5889_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_5889_49.yaml | 32 + .../problem/HPOB/all/cfg_5889_6566.yaml | 32 + .../problem/HPOB/all/cfg_5889_7295.yaml | 32 + .../problem/HPOB/all/cfg_5889_9946.yaml | 32 + .../problem/HPOB/all/cfg_5889_9957.yaml | 32 + .../problem/HPOB/all/cfg_5889_9970.yaml | 32 + .../problem/HPOB/all/cfg_5889_9971.yaml | 32 + .../problem/HPOB/all/cfg_5889_9977.yaml | 32 + .../problem/HPOB/all/cfg_5889_9978.yaml | 32 + .../problem/HPOB/all/cfg_5889_9980.yaml | 32 + .../problem/HPOB/all/cfg_5889_9983.yaml | 32 + .../problem/HPOB/all/cfg_5890_125923.yaml | 32 + .../problem/HPOB/all/cfg_5890_145677.yaml | 32 + .../problem/HPOB/all/cfg_5890_145804.yaml | 32 + .../problem/HPOB/all/cfg_5890_145833.yaml | 32 + .../problem/HPOB/all/cfg_5890_145834.yaml | 32 + .../problem/HPOB/all/cfg_5890_145836.yaml | 32 + .../problem/HPOB/all/cfg_5890_145839.yaml | 32 + .../problem/HPOB/all/cfg_5890_145847.yaml | 32 + .../problem/HPOB/all/cfg_5890_145853.yaml | 32 + .../problem/HPOB/all/cfg_5890_145854.yaml | 32 + .../problem/HPOB/all/cfg_5890_145855.yaml | 32 + .../problem/HPOB/all/cfg_5890_145857.yaml | 32 + .../problem/HPOB/all/cfg_5890_145862.yaml | 32 + .../problem/HPOB/all/cfg_5890_145872.yaml | 32 + .../problem/HPOB/all/cfg_5890_145878.yaml | 32 + .../problem/HPOB/all/cfg_5890_145953.yaml | 32 + .../problem/HPOB/all/cfg_5890_145972.yaml | 32 + .../problem/HPOB/all/cfg_5890_145976.yaml | 32 + .../problem/HPOB/all/cfg_5890_145979.yaml | 32 + .../problem/HPOB/all/cfg_5890_146012.yaml | 32 + .../problem/HPOB/all/cfg_5890_146064.yaml | 32 + .../problem/HPOB/all/cfg_5890_146065.yaml | 32 + .../problem/HPOB/all/cfg_5890_146066.yaml | 32 + .../problem/HPOB/all/cfg_5890_146082.yaml | 32 + .../problem/HPOB/all/cfg_5890_146085.yaml | 32 + .../problem/HPOB/all/cfg_5890_14951.yaml | 32 + .../problem/HPOB/all/cfg_5890_14965.yaml | 32 + .../problem/HPOB/all/cfg_5890_14966.yaml | 32 + .../problem/HPOB/all/cfg_5890_14971.yaml | 32 + .../problem/HPOB/all/cfg_5890_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_5890_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_5890_31.yaml | 32 + .../problem/HPOB/all/cfg_5890_34536.yaml | 32 + .../problem/HPOB/all/cfg_5890_34537.yaml | 32 + .../problem/HPOB/all/cfg_5890_3485.yaml | 32 + .../problem/HPOB/all/cfg_5890_3492.yaml | 32 + .../problem/HPOB/all/cfg_5890_3493.yaml | 32 + .../problem/HPOB/all/cfg_5890_3494.yaml | 32 + .../configs/problem/HPOB/all/cfg_5890_37.yaml | 32 + .../problem/HPOB/all/cfg_5890_3889.yaml | 32 + .../problem/HPOB/all/cfg_5890_3891.yaml | 32 + .../problem/HPOB/all/cfg_5890_3896.yaml | 32 + .../problem/HPOB/all/cfg_5890_3899.yaml | 32 + .../problem/HPOB/all/cfg_5890_3902.yaml | 32 + .../problem/HPOB/all/cfg_5890_3903.yaml | 32 + .../problem/HPOB/all/cfg_5890_3913.yaml | 32 + .../problem/HPOB/all/cfg_5890_3917.yaml | 32 + .../problem/HPOB/all/cfg_5890_3918.yaml | 32 + .../problem/HPOB/all/cfg_5890_3950.yaml | 32 + .../problem/HPOB/all/cfg_5890_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_5890_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_5890_49.yaml | 32 + .../problem/HPOB/all/cfg_5890_6566.yaml | 32 + .../problem/HPOB/all/cfg_5890_7295.yaml | 32 + .../problem/HPOB/all/cfg_5890_9889.yaml | 32 + .../problem/HPOB/all/cfg_5890_9910.yaml | 32 + .../problem/HPOB/all/cfg_5890_9971.yaml | 32 + .../problem/HPOB/all/cfg_5890_9976.yaml | 32 + .../problem/HPOB/all/cfg_5891_10093.yaml | 32 + .../problem/HPOB/all/cfg_5891_10101.yaml | 32 + .../problem/HPOB/all/cfg_5891_125923.yaml | 32 + .../problem/HPOB/all/cfg_5891_145677.yaml | 32 + .../problem/HPOB/all/cfg_5891_145834.yaml | 32 + .../problem/HPOB/all/cfg_5891_145839.yaml | 32 + .../problem/HPOB/all/cfg_5891_145848.yaml | 32 + .../problem/HPOB/all/cfg_5891_145855.yaml | 32 + .../problem/HPOB/all/cfg_5891_145857.yaml | 32 + .../problem/HPOB/all/cfg_5891_145862.yaml | 32 + .../problem/HPOB/all/cfg_5891_145872.yaml | 32 + .../problem/HPOB/all/cfg_5891_145878.yaml | 32 + .../problem/HPOB/all/cfg_5891_145953.yaml | 32 + .../problem/HPOB/all/cfg_5891_145972.yaml | 32 + .../problem/HPOB/all/cfg_5891_145979.yaml | 32 + .../problem/HPOB/all/cfg_5891_146012.yaml | 32 + .../problem/HPOB/all/cfg_5891_146064.yaml | 32 + .../problem/HPOB/all/cfg_5891_146066.yaml | 32 + .../problem/HPOB/all/cfg_5891_146082.yaml | 32 + .../problem/HPOB/all/cfg_5891_14951.yaml | 32 + .../problem/HPOB/all/cfg_5891_14952.yaml | 32 + .../problem/HPOB/all/cfg_5891_14965.yaml | 32 + .../problem/HPOB/all/cfg_5891_14966.yaml | 32 + .../problem/HPOB/all/cfg_5891_14971.yaml | 32 + .../problem/HPOB/all/cfg_5891_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_5891_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_5891_31.yaml | 32 + .../problem/HPOB/all/cfg_5891_34536.yaml | 32 + .../problem/HPOB/all/cfg_5891_34537.yaml | 32 + .../problem/HPOB/all/cfg_5891_3485.yaml | 32 + .../problem/HPOB/all/cfg_5891_3492.yaml | 32 + .../problem/HPOB/all/cfg_5891_3493.yaml | 32 + .../problem/HPOB/all/cfg_5891_3494.yaml | 32 + .../configs/problem/HPOB/all/cfg_5891_37.yaml | 32 + .../problem/HPOB/all/cfg_5891_3889.yaml | 32 + .../problem/HPOB/all/cfg_5891_3891.yaml | 32 + .../problem/HPOB/all/cfg_5891_3896.yaml | 32 + .../problem/HPOB/all/cfg_5891_3899.yaml | 32 + .../problem/HPOB/all/cfg_5891_3902.yaml | 32 + .../problem/HPOB/all/cfg_5891_3903.yaml | 32 + .../problem/HPOB/all/cfg_5891_3913.yaml | 32 + .../problem/HPOB/all/cfg_5891_3917.yaml | 32 + .../problem/HPOB/all/cfg_5891_3918.yaml | 32 + .../problem/HPOB/all/cfg_5891_3950.yaml | 32 + .../problem/HPOB/all/cfg_5891_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_5891_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_5891_49.yaml | 32 + .../problem/HPOB/all/cfg_5891_6566.yaml | 32 + .../problem/HPOB/all/cfg_5891_7295.yaml | 32 + .../problem/HPOB/all/cfg_5891_9889.yaml | 32 + .../problem/HPOB/all/cfg_5891_9910.yaml | 32 + .../problem/HPOB/all/cfg_5891_9914.yaml | 32 + .../problem/HPOB/all/cfg_5891_9946.yaml | 32 + .../problem/HPOB/all/cfg_5891_9952.yaml | 32 + .../problem/HPOB/all/cfg_5891_9957.yaml | 32 + .../problem/HPOB/all/cfg_5891_9967.yaml | 32 + .../problem/HPOB/all/cfg_5891_9970.yaml | 32 + .../problem/HPOB/all/cfg_5891_9971.yaml | 32 + .../problem/HPOB/all/cfg_5891_9976.yaml | 32 + .../problem/HPOB/all/cfg_5891_9977.yaml | 32 + .../problem/HPOB/all/cfg_5891_9978.yaml | 32 + .../problem/HPOB/all/cfg_5891_9980.yaml | 32 + .../problem/HPOB/all/cfg_5891_9983.yaml | 32 + .../problem/HPOB/all/cfg_5906_125923.yaml | 32 + .../problem/HPOB/all/cfg_5906_14951.yaml | 32 + .../problem/HPOB/all/cfg_5906_14965.yaml | 32 + .../configs/problem/HPOB/all/cfg_5906_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_5906_31.yaml | 32 + .../problem/HPOB/all/cfg_5906_3492.yaml | 32 + .../problem/HPOB/all/cfg_5906_3493.yaml | 32 + .../problem/HPOB/all/cfg_5906_3494.yaml | 32 + .../configs/problem/HPOB/all/cfg_5906_37.yaml | 32 + .../problem/HPOB/all/cfg_5906_3889.yaml | 32 + .../problem/HPOB/all/cfg_5906_3891.yaml | 32 + .../problem/HPOB/all/cfg_5906_3896.yaml | 32 + .../problem/HPOB/all/cfg_5906_3902.yaml | 32 + .../problem/HPOB/all/cfg_5906_3917.yaml | 32 + .../problem/HPOB/all/cfg_5906_3918.yaml | 32 + .../problem/HPOB/all/cfg_5906_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_5906_49.yaml | 32 + .../problem/HPOB/all/cfg_5906_6566.yaml | 32 + .../problem/HPOB/all/cfg_5906_7295.yaml | 32 + .../problem/HPOB/all/cfg_5906_9889.yaml | 32 + .../problem/HPOB/all/cfg_5906_9914.yaml | 32 + .../problem/HPOB/all/cfg_5906_9952.yaml | 32 + .../problem/HPOB/all/cfg_5906_9957.yaml | 32 + .../problem/HPOB/all/cfg_5906_9967.yaml | 32 + .../problem/HPOB/all/cfg_5906_9970.yaml | 32 + .../problem/HPOB/all/cfg_5906_9971.yaml | 32 + .../problem/HPOB/all/cfg_5906_9977.yaml | 32 + .../problem/HPOB/all/cfg_5906_9978.yaml | 32 + .../problem/HPOB/all/cfg_5906_9983.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_11.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_12.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_14.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_15.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_18.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_20.yaml | 32 + .../problem/HPOB/all/cfg_5918_2068.yaml | 32 + .../problem/HPOB/all/cfg_5918_2071.yaml | 32 + .../problem/HPOB/all/cfg_5918_2074.yaml | 32 + .../problem/HPOB/all/cfg_5918_2075.yaml | 32 + .../problem/HPOB/all/cfg_5918_2076.yaml | 32 + .../problem/HPOB/all/cfg_5918_2077.yaml | 32 + .../problem/HPOB/all/cfg_5918_2079.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_21.yaml | 32 + .../problem/HPOB/all/cfg_5918_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_22.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_23.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_24.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_29.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_30.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_31.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_33.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_36.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_37.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_41.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_45.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_49.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_53.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_58.yaml | 32 + .../configs/problem/HPOB/all/cfg_5918_6.yaml | 32 + .../problem/HPOB/all/cfg_5919_145682.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_11.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_12.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_15.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_16.yaml | 32 + .../problem/HPOB/all/cfg_5920_2068.yaml | 32 + .../problem/HPOB/all/cfg_5920_2073.yaml | 32 + .../problem/HPOB/all/cfg_5920_2074.yaml | 32 + .../problem/HPOB/all/cfg_5920_2075.yaml | 32 + .../problem/HPOB/all/cfg_5920_2076.yaml | 32 + .../problem/HPOB/all/cfg_5920_2077.yaml | 32 + .../problem/HPOB/all/cfg_5920_2079.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_21.yaml | 32 + .../problem/HPOB/all/cfg_5920_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_23.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_24.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_26.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_28.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_29.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_30.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_32.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_36.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_37.yaml | 32 + .../problem/HPOB/all/cfg_5920_3951.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_41.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_49.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_53.yaml | 32 + .../configs/problem/HPOB/all/cfg_5920_58.yaml | 32 + .../problem/HPOB/all/cfg_5921_145682.yaml | 32 + .../problem/HPOB/all/cfg_5922_145682.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_11.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_12.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_14.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_15.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_16.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_18.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_2.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_20.yaml | 32 + .../problem/HPOB/all/cfg_5923_2068.yaml | 32 + .../problem/HPOB/all/cfg_5923_2071.yaml | 32 + .../problem/HPOB/all/cfg_5923_2074.yaml | 32 + .../problem/HPOB/all/cfg_5923_2075.yaml | 32 + .../problem/HPOB/all/cfg_5923_2076.yaml | 32 + .../problem/HPOB/all/cfg_5923_2077.yaml | 32 + .../problem/HPOB/all/cfg_5923_2079.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_21.yaml | 32 + .../problem/HPOB/all/cfg_5923_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_22.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_23.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_24.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_26.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_29.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_31.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_32.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_33.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_37.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_45.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_49.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_53.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_58.yaml | 32 + .../configs/problem/HPOB/all/cfg_5923_6.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_14.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_15.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_16.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_2.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_20.yaml | 32 + .../problem/HPOB/all/cfg_5926_2068.yaml | 32 + .../problem/HPOB/all/cfg_5926_2073.yaml | 32 + .../problem/HPOB/all/cfg_5926_2074.yaml | 32 + .../problem/HPOB/all/cfg_5926_2075.yaml | 32 + .../problem/HPOB/all/cfg_5926_2076.yaml | 32 + .../problem/HPOB/all/cfg_5926_2077.yaml | 32 + .../problem/HPOB/all/cfg_5926_2079.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_21.yaml | 32 + .../problem/HPOB/all/cfg_5926_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_23.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_24.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_26.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_28.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_29.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_30.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_31.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_32.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_33.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_36.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_37.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_41.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_45.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_53.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_58.yaml | 32 + .../configs/problem/HPOB/all/cfg_5926_6.yaml | 32 + .../problem/HPOB/all/cfg_5960_145682.yaml | 32 + .../problem/HPOB/all/cfg_5963_34536.yaml | 32 + .../problem/HPOB/all/cfg_5963_3917.yaml | 32 + .../problem/HPOB/all/cfg_5964_9889.yaml | 32 + .../problem/HPOB/all/cfg_5964_9946.yaml | 32 + .../problem/HPOB/all/cfg_5965_10093.yaml | 32 + .../problem/HPOB/all/cfg_5965_10101.yaml | 32 + .../problem/HPOB/all/cfg_5965_125923.yaml | 32 + .../problem/HPOB/all/cfg_5965_145677.yaml | 32 + .../problem/HPOB/all/cfg_5965_145804.yaml | 32 + .../problem/HPOB/all/cfg_5965_145833.yaml | 32 + .../problem/HPOB/all/cfg_5965_145834.yaml | 32 + .../problem/HPOB/all/cfg_5965_145836.yaml | 32 + .../problem/HPOB/all/cfg_5965_145839.yaml | 32 + .../problem/HPOB/all/cfg_5965_145847.yaml | 32 + .../problem/HPOB/all/cfg_5965_145848.yaml | 32 + .../problem/HPOB/all/cfg_5965_145853.yaml | 32 + .../problem/HPOB/all/cfg_5965_145854.yaml | 32 + .../problem/HPOB/all/cfg_5965_145855.yaml | 32 + .../problem/HPOB/all/cfg_5965_145857.yaml | 32 + .../problem/HPOB/all/cfg_5965_145862.yaml | 32 + .../problem/HPOB/all/cfg_5965_145872.yaml | 32 + .../problem/HPOB/all/cfg_5965_145878.yaml | 32 + .../problem/HPOB/all/cfg_5965_145953.yaml | 32 + .../problem/HPOB/all/cfg_5965_145972.yaml | 32 + .../problem/HPOB/all/cfg_5965_145976.yaml | 32 + .../problem/HPOB/all/cfg_5965_145979.yaml | 32 + .../problem/HPOB/all/cfg_5965_146012.yaml | 32 + .../problem/HPOB/all/cfg_5965_146064.yaml | 32 + .../problem/HPOB/all/cfg_5965_146065.yaml | 32 + .../problem/HPOB/all/cfg_5965_146066.yaml | 32 + .../problem/HPOB/all/cfg_5965_146085.yaml | 32 + .../problem/HPOB/all/cfg_5965_146803.yaml | 32 + .../problem/HPOB/all/cfg_5965_14951.yaml | 32 + .../problem/HPOB/all/cfg_5965_14952.yaml | 32 + .../problem/HPOB/all/cfg_5965_14965.yaml | 32 + .../problem/HPOB/all/cfg_5965_14966.yaml | 32 + .../problem/HPOB/all/cfg_5965_14971.yaml | 32 + .../problem/HPOB/all/cfg_5965_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_5965_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_5965_31.yaml | 32 + .../problem/HPOB/all/cfg_5965_34536.yaml | 32 + .../problem/HPOB/all/cfg_5965_34537.yaml | 32 + .../problem/HPOB/all/cfg_5965_34539.yaml | 32 + .../problem/HPOB/all/cfg_5965_3485.yaml | 32 + .../problem/HPOB/all/cfg_5965_3492.yaml | 32 + .../problem/HPOB/all/cfg_5965_3493.yaml | 32 + .../problem/HPOB/all/cfg_5965_3494.yaml | 32 + .../configs/problem/HPOB/all/cfg_5965_37.yaml | 32 + .../problem/HPOB/all/cfg_5965_3889.yaml | 32 + .../problem/HPOB/all/cfg_5965_3891.yaml | 32 + .../problem/HPOB/all/cfg_5965_3896.yaml | 32 + .../problem/HPOB/all/cfg_5965_3899.yaml | 32 + .../problem/HPOB/all/cfg_5965_3902.yaml | 32 + .../problem/HPOB/all/cfg_5965_3903.yaml | 32 + .../problem/HPOB/all/cfg_5965_3913.yaml | 32 + .../problem/HPOB/all/cfg_5965_3917.yaml | 32 + .../problem/HPOB/all/cfg_5965_3918.yaml | 32 + .../problem/HPOB/all/cfg_5965_3950.yaml | 32 + .../problem/HPOB/all/cfg_5965_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_5965_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_5965_49.yaml | 32 + .../problem/HPOB/all/cfg_5965_6566.yaml | 32 + .../problem/HPOB/all/cfg_5965_7295.yaml | 32 + .../problem/HPOB/all/cfg_5965_9889.yaml | 32 + .../problem/HPOB/all/cfg_5965_9910.yaml | 32 + .../problem/HPOB/all/cfg_5965_9911.yaml | 32 + .../problem/HPOB/all/cfg_5965_9914.yaml | 32 + .../problem/HPOB/all/cfg_5965_9946.yaml | 32 + .../problem/HPOB/all/cfg_5965_9952.yaml | 32 + .../problem/HPOB/all/cfg_5965_9957.yaml | 32 + .../problem/HPOB/all/cfg_5965_9967.yaml | 32 + .../problem/HPOB/all/cfg_5965_9970.yaml | 32 + .../problem/HPOB/all/cfg_5965_9971.yaml | 32 + .../problem/HPOB/all/cfg_5965_9976.yaml | 32 + .../problem/HPOB/all/cfg_5965_9977.yaml | 32 + .../problem/HPOB/all/cfg_5965_9978.yaml | 32 + .../problem/HPOB/all/cfg_5965_9980.yaml | 32 + .../problem/HPOB/all/cfg_5965_9983.yaml | 32 + .../problem/HPOB/all/cfg_5968_10101.yaml | 32 + .../configs/problem/HPOB/all/cfg_5968_3.yaml | 32 + .../problem/HPOB/all/cfg_5968_3896.yaml | 32 + .../problem/HPOB/all/cfg_5968_9889.yaml | 32 + .../problem/HPOB/all/cfg_5968_9914.yaml | 32 + .../problem/HPOB/all/cfg_5968_9952.yaml | 32 + .../problem/HPOB/all/cfg_5968_9957.yaml | 32 + .../problem/HPOB/all/cfg_5968_9983.yaml | 32 + .../problem/HPOB/all/cfg_5969_34536.yaml | 32 + .../problem/HPOB/all/cfg_5969_3485.yaml | 32 + .../problem/HPOB/all/cfg_5969_3493.yaml | 32 + .../problem/HPOB/all/cfg_5969_9914.yaml | 32 + .../problem/HPOB/all/cfg_5970_10093.yaml | 32 + .../problem/HPOB/all/cfg_5970_10101.yaml | 32 + .../problem/HPOB/all/cfg_5970_125923.yaml | 32 + .../problem/HPOB/all/cfg_5970_145677.yaml | 32 + .../problem/HPOB/all/cfg_5970_145833.yaml | 32 + .../problem/HPOB/all/cfg_5970_145834.yaml | 32 + .../problem/HPOB/all/cfg_5970_145836.yaml | 32 + .../problem/HPOB/all/cfg_5970_145839.yaml | 32 + .../problem/HPOB/all/cfg_5970_145847.yaml | 32 + .../problem/HPOB/all/cfg_5970_145848.yaml | 32 + .../problem/HPOB/all/cfg_5970_145853.yaml | 32 + .../problem/HPOB/all/cfg_5970_145854.yaml | 32 + .../problem/HPOB/all/cfg_5970_145855.yaml | 32 + .../problem/HPOB/all/cfg_5970_145857.yaml | 32 + .../problem/HPOB/all/cfg_5970_145862.yaml | 32 + .../problem/HPOB/all/cfg_5970_145872.yaml | 32 + .../problem/HPOB/all/cfg_5970_145878.yaml | 32 + .../problem/HPOB/all/cfg_5970_145953.yaml | 32 + .../problem/HPOB/all/cfg_5970_145972.yaml | 32 + .../problem/HPOB/all/cfg_5970_145976.yaml | 32 + .../problem/HPOB/all/cfg_5970_145979.yaml | 32 + .../problem/HPOB/all/cfg_5970_146012.yaml | 32 + .../problem/HPOB/all/cfg_5970_146064.yaml | 32 + .../problem/HPOB/all/cfg_5970_146065.yaml | 32 + .../problem/HPOB/all/cfg_5970_146085.yaml | 32 + .../problem/HPOB/all/cfg_5970_14951.yaml | 32 + .../problem/HPOB/all/cfg_5970_14952.yaml | 32 + .../problem/HPOB/all/cfg_5970_14965.yaml | 32 + .../problem/HPOB/all/cfg_5970_14966.yaml | 32 + .../problem/HPOB/all/cfg_5970_14971.yaml | 32 + .../problem/HPOB/all/cfg_5970_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_5970_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_5970_31.yaml | 32 + .../problem/HPOB/all/cfg_5970_34536.yaml | 32 + .../problem/HPOB/all/cfg_5970_34537.yaml | 32 + .../problem/HPOB/all/cfg_5970_3485.yaml | 32 + .../problem/HPOB/all/cfg_5970_3492.yaml | 32 + .../problem/HPOB/all/cfg_5970_3493.yaml | 32 + .../problem/HPOB/all/cfg_5970_3494.yaml | 32 + .../configs/problem/HPOB/all/cfg_5970_37.yaml | 32 + .../problem/HPOB/all/cfg_5970_3889.yaml | 32 + .../problem/HPOB/all/cfg_5970_3891.yaml | 32 + .../problem/HPOB/all/cfg_5970_3896.yaml | 32 + .../problem/HPOB/all/cfg_5970_3899.yaml | 32 + .../problem/HPOB/all/cfg_5970_3902.yaml | 32 + .../problem/HPOB/all/cfg_5970_3903.yaml | 32 + .../problem/HPOB/all/cfg_5970_3913.yaml | 32 + .../problem/HPOB/all/cfg_5970_3917.yaml | 32 + .../problem/HPOB/all/cfg_5970_3918.yaml | 32 + .../problem/HPOB/all/cfg_5970_3950.yaml | 32 + .../problem/HPOB/all/cfg_5970_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_5970_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_5970_49.yaml | 32 + .../problem/HPOB/all/cfg_5970_6566.yaml | 32 + .../problem/HPOB/all/cfg_5970_7295.yaml | 32 + .../problem/HPOB/all/cfg_5970_9889.yaml | 32 + .../problem/HPOB/all/cfg_5970_9910.yaml | 32 + .../problem/HPOB/all/cfg_5970_9914.yaml | 32 + .../problem/HPOB/all/cfg_5970_9946.yaml | 32 + .../problem/HPOB/all/cfg_5970_9952.yaml | 32 + .../problem/HPOB/all/cfg_5970_9957.yaml | 32 + .../problem/HPOB/all/cfg_5970_9967.yaml | 32 + .../problem/HPOB/all/cfg_5970_9970.yaml | 32 + .../problem/HPOB/all/cfg_5970_9976.yaml | 32 + .../problem/HPOB/all/cfg_5970_9977.yaml | 32 + .../problem/HPOB/all/cfg_5970_9978.yaml | 32 + .../problem/HPOB/all/cfg_5970_9980.yaml | 32 + .../problem/HPOB/all/cfg_5970_9983.yaml | 32 + .../problem/HPOB/all/cfg_5971_10093.yaml | 32 + .../problem/HPOB/all/cfg_5971_10101.yaml | 32 + .../problem/HPOB/all/cfg_5971_125923.yaml | 32 + .../problem/HPOB/all/cfg_5971_145677.yaml | 32 + .../problem/HPOB/all/cfg_5971_145804.yaml | 32 + .../problem/HPOB/all/cfg_5971_145833.yaml | 32 + .../problem/HPOB/all/cfg_5971_145834.yaml | 32 + .../problem/HPOB/all/cfg_5971_145836.yaml | 32 + .../problem/HPOB/all/cfg_5971_145847.yaml | 32 + .../problem/HPOB/all/cfg_5971_145848.yaml | 32 + .../problem/HPOB/all/cfg_5971_145853.yaml | 32 + .../problem/HPOB/all/cfg_5971_145855.yaml | 32 + .../problem/HPOB/all/cfg_5971_145857.yaml | 32 + .../problem/HPOB/all/cfg_5971_145862.yaml | 32 + .../problem/HPOB/all/cfg_5971_145872.yaml | 32 + .../problem/HPOB/all/cfg_5971_145878.yaml | 32 + .../problem/HPOB/all/cfg_5971_145972.yaml | 32 + .../problem/HPOB/all/cfg_5971_145976.yaml | 32 + .../problem/HPOB/all/cfg_5971_145979.yaml | 32 + .../problem/HPOB/all/cfg_5971_146012.yaml | 32 + .../problem/HPOB/all/cfg_5971_146065.yaml | 32 + .../problem/HPOB/all/cfg_5971_146085.yaml | 32 + .../problem/HPOB/all/cfg_5971_14951.yaml | 32 + .../problem/HPOB/all/cfg_5971_14965.yaml | 32 + .../problem/HPOB/all/cfg_5971_14966.yaml | 32 + .../problem/HPOB/all/cfg_5971_14971.yaml | 32 + .../problem/HPOB/all/cfg_5971_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_5971_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_5971_31.yaml | 32 + .../problem/HPOB/all/cfg_5971_34536.yaml | 32 + .../problem/HPOB/all/cfg_5971_34537.yaml | 32 + .../problem/HPOB/all/cfg_5971_3485.yaml | 32 + .../problem/HPOB/all/cfg_5971_3492.yaml | 32 + .../problem/HPOB/all/cfg_5971_3493.yaml | 32 + .../problem/HPOB/all/cfg_5971_3494.yaml | 32 + .../configs/problem/HPOB/all/cfg_5971_37.yaml | 32 + .../problem/HPOB/all/cfg_5971_3889.yaml | 32 + .../problem/HPOB/all/cfg_5971_3891.yaml | 32 + .../problem/HPOB/all/cfg_5971_3896.yaml | 32 + .../problem/HPOB/all/cfg_5971_3899.yaml | 32 + .../problem/HPOB/all/cfg_5971_3902.yaml | 32 + .../problem/HPOB/all/cfg_5971_3903.yaml | 32 + .../problem/HPOB/all/cfg_5971_3913.yaml | 32 + .../problem/HPOB/all/cfg_5971_3917.yaml | 32 + .../problem/HPOB/all/cfg_5971_3918.yaml | 32 + .../problem/HPOB/all/cfg_5971_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_5971_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_5971_49.yaml | 32 + .../problem/HPOB/all/cfg_5971_6566.yaml | 32 + .../problem/HPOB/all/cfg_5971_7295.yaml | 32 + .../problem/HPOB/all/cfg_5971_9889.yaml | 32 + .../problem/HPOB/all/cfg_5971_9910.yaml | 32 + .../problem/HPOB/all/cfg_5971_9914.yaml | 32 + .../problem/HPOB/all/cfg_5971_9946.yaml | 32 + .../problem/HPOB/all/cfg_5971_9952.yaml | 32 + .../problem/HPOB/all/cfg_5971_9957.yaml | 32 + .../problem/HPOB/all/cfg_5971_9967.yaml | 32 + .../problem/HPOB/all/cfg_5971_9970.yaml | 32 + .../problem/HPOB/all/cfg_5971_9971.yaml | 32 + .../problem/HPOB/all/cfg_5971_9976.yaml | 32 + .../problem/HPOB/all/cfg_5971_9977.yaml | 32 + .../problem/HPOB/all/cfg_5971_9978.yaml | 32 + .../problem/HPOB/all/cfg_5971_9980.yaml | 32 + .../problem/HPOB/all/cfg_5971_9983.yaml | 32 + .../problem/HPOB/all/cfg_5972_14965.yaml | 32 + .../problem/HPOB/all/cfg_5972_3485.yaml | 32 + .../problem/HPOB/all/cfg_5972_3954.yaml | 32 + .../problem/HPOB/all/cfg_5972_9952.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_11.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_12.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_14.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_18.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_20.yaml | 32 + .../problem/HPOB/all/cfg_5978_2068.yaml | 32 + .../problem/HPOB/all/cfg_5978_2071.yaml | 32 + .../problem/HPOB/all/cfg_5978_2074.yaml | 32 + .../problem/HPOB/all/cfg_5978_2075.yaml | 32 + .../problem/HPOB/all/cfg_5978_2076.yaml | 32 + .../problem/HPOB/all/cfg_5978_2077.yaml | 32 + .../problem/HPOB/all/cfg_5978_2079.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_21.yaml | 32 + .../problem/HPOB/all/cfg_5978_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_22.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_24.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_26.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_28.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_29.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_30.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_31.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_32.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_33.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_36.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_41.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_45.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_49.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_53.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_58.yaml | 32 + .../configs/problem/HPOB/all/cfg_5978_6.yaml | 32 + .../configs/problem/HPOB/all/cfg_5988_14.yaml | 32 + .../configs/problem/HPOB/all/cfg_5988_20.yaml | 32 + .../configs/problem/HPOB/all/cfg_5988_21.yaml | 32 + .../configs/problem/HPOB/all/cfg_5988_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_5988_33.yaml | 32 + .../configs/problem/HPOB/all/cfg_5988_45.yaml | 32 + .../configs/problem/HPOB/all/cfg_5988_49.yaml | 32 + .../configs/problem/HPOB/all/cfg_5988_53.yaml | 32 + .../problem/HPOB/all/cfg_6000_3917.yaml | 32 + .../problem/HPOB/all/cfg_6003_219.yaml | 32 + .../problem/HPOB/all/cfg_6003_3902.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_11.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_12.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_14.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_16.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_18.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_20.yaml | 32 + .../problem/HPOB/all/cfg_6007_2068.yaml | 32 + .../problem/HPOB/all/cfg_6007_2071.yaml | 32 + .../problem/HPOB/all/cfg_6007_2073.yaml | 32 + .../problem/HPOB/all/cfg_6007_2074.yaml | 32 + .../problem/HPOB/all/cfg_6007_2075.yaml | 32 + .../problem/HPOB/all/cfg_6007_2076.yaml | 32 + .../problem/HPOB/all/cfg_6007_2079.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_21.yaml | 32 + .../problem/HPOB/all/cfg_6007_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_22.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_23.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_24.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_26.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_28.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_29.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_31.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_32.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_33.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_41.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_45.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_49.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_53.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_58.yaml | 32 + .../configs/problem/HPOB/all/cfg_6007_6.yaml | 32 + .../problem/HPOB/all/cfg_6024_145682.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_11.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_12.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_15.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_18.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_20.yaml | 32 + .../problem/HPOB/all/cfg_6073_2068.yaml | 32 + .../problem/HPOB/all/cfg_6073_2071.yaml | 32 + .../problem/HPOB/all/cfg_6073_2073.yaml | 32 + .../problem/HPOB/all/cfg_6073_2074.yaml | 32 + .../problem/HPOB/all/cfg_6073_2076.yaml | 32 + .../problem/HPOB/all/cfg_6073_2077.yaml | 32 + .../problem/HPOB/all/cfg_6073_2079.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_21.yaml | 32 + .../problem/HPOB/all/cfg_6073_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_22.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_23.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_24.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_26.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_28.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_29.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_30.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_31.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_33.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_36.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_37.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_41.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_45.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_53.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_58.yaml | 32 + .../configs/problem/HPOB/all/cfg_6073_6.yaml | 32 + .../problem/HPOB/all/cfg_6075_9952.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_14.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_18.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_2.yaml | 32 + .../problem/HPOB/all/cfg_6105_2068.yaml | 32 + .../problem/HPOB/all/cfg_6105_2073.yaml | 32 + .../problem/HPOB/all/cfg_6105_2074.yaml | 32 + .../problem/HPOB/all/cfg_6105_2075.yaml | 32 + .../problem/HPOB/all/cfg_6105_2076.yaml | 32 + .../problem/HPOB/all/cfg_6105_2077.yaml | 32 + .../problem/HPOB/all/cfg_6105_2079.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_21.yaml | 32 + .../problem/HPOB/all/cfg_6105_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_22.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_23.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_24.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_26.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_28.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_29.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_30.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_31.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_32.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_33.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_36.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_37.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_41.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_45.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_49.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_53.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_58.yaml | 32 + .../configs/problem/HPOB/all/cfg_6105_6.yaml | 32 + .../problem/HPOB/all/cfg_6124_145682.yaml | 32 + .../problem/HPOB/all/cfg_6131_14951.yaml | 32 + .../problem/HPOB/all/cfg_6134_145682.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_11.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_12.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_14.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_16.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_18.yaml | 32 + .../problem/HPOB/all/cfg_6136_2068.yaml | 32 + .../problem/HPOB/all/cfg_6136_2074.yaml | 32 + .../problem/HPOB/all/cfg_6136_2075.yaml | 32 + .../problem/HPOB/all/cfg_6136_2076.yaml | 32 + .../problem/HPOB/all/cfg_6136_2079.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_21.yaml | 32 + .../problem/HPOB/all/cfg_6136_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_22.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_23.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_24.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_26.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_28.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_29.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_30.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_31.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_32.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_33.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_36.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_37.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_41.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_45.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_49.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_58.yaml | 32 + .../configs/problem/HPOB/all/cfg_6136_6.yaml | 32 + .../problem/HPOB/all/cfg_6137_145682.yaml | 32 + .../problem/HPOB/all/cfg_6139_145682.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_11.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_12.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_14.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_18.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_20.yaml | 32 + .../problem/HPOB/all/cfg_6140_2068.yaml | 32 + .../problem/HPOB/all/cfg_6140_2074.yaml | 32 + .../problem/HPOB/all/cfg_6140_2075.yaml | 32 + .../problem/HPOB/all/cfg_6140_2076.yaml | 32 + .../problem/HPOB/all/cfg_6140_2077.yaml | 32 + .../problem/HPOB/all/cfg_6140_2079.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_21.yaml | 32 + .../problem/HPOB/all/cfg_6140_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_22.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_23.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_24.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_26.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_28.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_29.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_30.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_31.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_32.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_33.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_36.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_41.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_45.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_49.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_53.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_58.yaml | 32 + .../configs/problem/HPOB/all/cfg_6140_6.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_11.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_12.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_14.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_18.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_20.yaml | 32 + .../problem/HPOB/all/cfg_6154_2068.yaml | 32 + .../problem/HPOB/all/cfg_6154_2074.yaml | 32 + .../problem/HPOB/all/cfg_6154_2075.yaml | 32 + .../problem/HPOB/all/cfg_6154_2076.yaml | 32 + .../problem/HPOB/all/cfg_6154_2077.yaml | 32 + .../problem/HPOB/all/cfg_6154_2079.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_21.yaml | 32 + .../problem/HPOB/all/cfg_6154_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_22.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_23.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_24.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_26.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_28.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_29.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_30.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_31.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_32.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_33.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_36.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_41.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_45.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_49.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_53.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_58.yaml | 32 + .../configs/problem/HPOB/all/cfg_6154_6.yaml | 32 + .../problem/HPOB/all/cfg_6155_145682.yaml | 32 + .../problem/HPOB/all/cfg_6156_145682.yaml | 32 + .../problem/HPOB/all/cfg_6182_145682.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_14.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_18.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_2.yaml | 32 + .../problem/HPOB/all/cfg_6183_2068.yaml | 32 + .../problem/HPOB/all/cfg_6183_2073.yaml | 32 + .../problem/HPOB/all/cfg_6183_2074.yaml | 32 + .../problem/HPOB/all/cfg_6183_2075.yaml | 32 + .../problem/HPOB/all/cfg_6183_2076.yaml | 32 + .../problem/HPOB/all/cfg_6183_2077.yaml | 32 + .../problem/HPOB/all/cfg_6183_2079.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_21.yaml | 32 + .../problem/HPOB/all/cfg_6183_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_22.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_23.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_24.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_26.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_28.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_29.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_30.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_31.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_32.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_33.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_36.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_37.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_41.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_45.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_49.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_53.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_58.yaml | 32 + .../configs/problem/HPOB/all/cfg_6183_6.yaml | 32 + .../problem/HPOB/all/cfg_6189_145682.yaml | 32 + .../problem/HPOB/all/cfg_6190_145682.yaml | 32 + .../problem/HPOB/all/cfg_6211_145682.yaml | 32 + .../problem/HPOB/all/cfg_6212_145682.yaml | 32 + .../problem/HPOB/all/cfg_6213_145682.yaml | 32 + .../problem/HPOB/all/cfg_6215_145682.yaml | 32 + .../problem/HPOB/all/cfg_6216_145682.yaml | 32 + .../problem/HPOB/all/cfg_6271_145682.yaml | 32 + .../problem/HPOB/all/cfg_6285_145682.yaml | 32 + .../problem/HPOB/all/cfg_6308_34536.yaml | 32 + .../configs/problem/HPOB/all/cfg_6308_37.yaml | 32 + .../configs/problem/HPOB/all/cfg_6308_49.yaml | 32 + .../problem/HPOB/all/cfg_6309_145682.yaml | 32 + .../problem/HPOB/all/cfg_6322_145677.yaml | 32 + .../problem/HPOB/all/cfg_6322_3917.yaml | 32 + .../problem/HPOB/all/cfg_6323_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_633_59.yaml | 32 + .../problem/HPOB/all/cfg_6345_145682.yaml | 32 + .../problem/HPOB/all/cfg_6347_145682.yaml | 32 + .../problem/HPOB/all/cfg_6364_145682.yaml | 32 + .../problem/HPOB/all/cfg_6365_145682.yaml | 32 + .../problem/HPOB/all/cfg_6376_145682.yaml | 32 + .../problem/HPOB/all/cfg_6433_145682.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_11.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_12.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_14.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_16.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_18.yaml | 32 + .../problem/HPOB/all/cfg_6447_2068.yaml | 32 + .../problem/HPOB/all/cfg_6447_2074.yaml | 32 + .../problem/HPOB/all/cfg_6447_2075.yaml | 32 + .../problem/HPOB/all/cfg_6447_2076.yaml | 32 + .../problem/HPOB/all/cfg_6447_2079.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_21.yaml | 32 + .../problem/HPOB/all/cfg_6447_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_22.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_23.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_24.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_26.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_28.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_29.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_30.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_31.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_32.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_33.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_36.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_37.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_41.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_45.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_49.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_58.yaml | 32 + .../configs/problem/HPOB/all/cfg_6447_6.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_11.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_12.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_14.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_16.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_18.yaml | 32 + .../problem/HPOB/all/cfg_6458_2068.yaml | 32 + .../problem/HPOB/all/cfg_6458_2074.yaml | 32 + .../problem/HPOB/all/cfg_6458_2075.yaml | 32 + .../problem/HPOB/all/cfg_6458_2076.yaml | 32 + .../problem/HPOB/all/cfg_6458_2079.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_21.yaml | 32 + .../problem/HPOB/all/cfg_6458_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_22.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_23.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_24.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_26.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_28.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_29.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_30.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_31.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_32.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_33.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_36.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_37.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_41.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_45.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_49.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_58.yaml | 32 + .../configs/problem/HPOB/all/cfg_6458_6.yaml | 32 + .../problem/HPOB/all/cfg_6461_145682.yaml | 32 + .../problem/HPOB/all/cfg_6493_145682.yaml | 32 + .../problem/HPOB/all/cfg_6507_145682.yaml | 32 + .../problem/HPOB/all/cfg_673_1898.yaml | 32 + .../problem/HPOB/all/cfg_673_1902.yaml | 32 + .../problem/HPOB/all/cfg_673_1917.yaml | 32 + .../problem/HPOB/all/cfg_673_1919.yaml | 32 + .../problem/HPOB/all/cfg_673_1939.yaml | 32 + .../configs/problem/HPOB/all/cfg_6741_58.yaml | 32 + .../problem/HPOB/all/cfg_674_1898.yaml | 32 + .../problem/HPOB/all/cfg_674_1902.yaml | 32 + .../problem/HPOB/all/cfg_674_1917.yaml | 32 + .../problem/HPOB/all/cfg_674_1919.yaml | 32 + .../problem/HPOB/all/cfg_674_1939.yaml | 32 + .../problem/HPOB/all/cfg_6762_282.yaml | 32 + .../configs/problem/HPOB/all/cfg_6762_3.yaml | 32 + .../problem/HPOB/all/cfg_6762_3493.yaml | 32 + .../configs/problem/HPOB/all/cfg_6762_37.yaml | 32 + .../configs/problem/HPOB/all/cfg_6762_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_6762_49.yaml | 32 + .../problem/HPOB/all/cfg_6762_9946.yaml | 32 + .../problem/HPOB/all/cfg_6765_219.yaml | 32 + .../problem/HPOB/all/cfg_6765_272.yaml | 32 + .../problem/HPOB/all/cfg_6765_3913.yaml | 32 + .../problem/HPOB/all/cfg_6766_10101.yaml | 32 + .../problem/HPOB/all/cfg_6766_125923.yaml | 32 + .../problem/HPOB/all/cfg_6766_145804.yaml | 32 + .../problem/HPOB/all/cfg_6766_145833.yaml | 32 + .../problem/HPOB/all/cfg_6766_145834.yaml | 32 + .../problem/HPOB/all/cfg_6766_145836.yaml | 32 + .../problem/HPOB/all/cfg_6766_145839.yaml | 32 + .../problem/HPOB/all/cfg_6766_145847.yaml | 32 + .../problem/HPOB/all/cfg_6766_145848.yaml | 32 + .../problem/HPOB/all/cfg_6766_145853.yaml | 32 + .../problem/HPOB/all/cfg_6766_145854.yaml | 32 + .../problem/HPOB/all/cfg_6766_145855.yaml | 32 + .../problem/HPOB/all/cfg_6766_145857.yaml | 32 + .../problem/HPOB/all/cfg_6766_145862.yaml | 32 + .../problem/HPOB/all/cfg_6766_145872.yaml | 32 + .../problem/HPOB/all/cfg_6766_145878.yaml | 32 + .../problem/HPOB/all/cfg_6766_145953.yaml | 32 + .../problem/HPOB/all/cfg_6766_145972.yaml | 32 + .../problem/HPOB/all/cfg_6766_145976.yaml | 32 + .../problem/HPOB/all/cfg_6766_145979.yaml | 32 + .../problem/HPOB/all/cfg_6766_146012.yaml | 32 + .../problem/HPOB/all/cfg_6766_146064.yaml | 32 + .../problem/HPOB/all/cfg_6766_146065.yaml | 32 + .../problem/HPOB/all/cfg_6766_146066.yaml | 32 + .../problem/HPOB/all/cfg_6766_146082.yaml | 32 + .../problem/HPOB/all/cfg_6766_146085.yaml | 32 + .../problem/HPOB/all/cfg_6766_14951.yaml | 32 + .../problem/HPOB/all/cfg_6766_14965.yaml | 32 + .../problem/HPOB/all/cfg_6766_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_6766_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_6766_31.yaml | 32 + .../problem/HPOB/all/cfg_6766_34536.yaml | 32 + .../problem/HPOB/all/cfg_6766_3485.yaml | 32 + .../problem/HPOB/all/cfg_6766_3492.yaml | 32 + .../problem/HPOB/all/cfg_6766_3493.yaml | 32 + .../problem/HPOB/all/cfg_6766_3494.yaml | 32 + .../configs/problem/HPOB/all/cfg_6766_37.yaml | 32 + .../problem/HPOB/all/cfg_6766_3889.yaml | 32 + .../problem/HPOB/all/cfg_6766_3891.yaml | 32 + .../problem/HPOB/all/cfg_6766_3896.yaml | 32 + .../problem/HPOB/all/cfg_6766_3899.yaml | 32 + .../problem/HPOB/all/cfg_6766_3902.yaml | 32 + .../problem/HPOB/all/cfg_6766_3903.yaml | 32 + .../problem/HPOB/all/cfg_6766_3913.yaml | 32 + .../problem/HPOB/all/cfg_6766_3917.yaml | 32 + .../problem/HPOB/all/cfg_6766_3918.yaml | 32 + .../problem/HPOB/all/cfg_6766_3950.yaml | 32 + .../problem/HPOB/all/cfg_6766_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_6766_43.yaml | 32 + .../problem/HPOB/all/cfg_6766_6566.yaml | 32 + .../problem/HPOB/all/cfg_6766_7295.yaml | 32 + .../problem/HPOB/all/cfg_6766_9889.yaml | 32 + .../problem/HPOB/all/cfg_6766_9914.yaml | 32 + .../problem/HPOB/all/cfg_6766_9946.yaml | 32 + .../problem/HPOB/all/cfg_6766_9952.yaml | 32 + .../problem/HPOB/all/cfg_6766_9957.yaml | 32 + .../problem/HPOB/all/cfg_6766_9967.yaml | 32 + .../problem/HPOB/all/cfg_6766_9970.yaml | 32 + .../problem/HPOB/all/cfg_6766_9971.yaml | 32 + .../problem/HPOB/all/cfg_6766_9976.yaml | 32 + .../problem/HPOB/all/cfg_6766_9978.yaml | 32 + .../problem/HPOB/all/cfg_6766_9980.yaml | 32 + .../problem/HPOB/all/cfg_6766_9983.yaml | 32 + .../problem/HPOB/all/cfg_6767_10093.yaml | 32 + .../problem/HPOB/all/cfg_6767_10101.yaml | 32 + .../problem/HPOB/all/cfg_6767_125923.yaml | 32 + .../problem/HPOB/all/cfg_6767_145804.yaml | 32 + .../problem/HPOB/all/cfg_6767_145833.yaml | 32 + .../problem/HPOB/all/cfg_6767_145834.yaml | 32 + .../problem/HPOB/all/cfg_6767_145836.yaml | 32 + .../problem/HPOB/all/cfg_6767_145839.yaml | 32 + .../problem/HPOB/all/cfg_6767_145847.yaml | 32 + .../problem/HPOB/all/cfg_6767_145848.yaml | 32 + .../problem/HPOB/all/cfg_6767_145853.yaml | 32 + .../problem/HPOB/all/cfg_6767_145854.yaml | 32 + .../problem/HPOB/all/cfg_6767_145855.yaml | 32 + .../problem/HPOB/all/cfg_6767_145857.yaml | 32 + .../problem/HPOB/all/cfg_6767_145862.yaml | 32 + .../problem/HPOB/all/cfg_6767_145872.yaml | 32 + .../problem/HPOB/all/cfg_6767_145878.yaml | 32 + .../problem/HPOB/all/cfg_6767_145953.yaml | 32 + .../problem/HPOB/all/cfg_6767_145972.yaml | 32 + .../problem/HPOB/all/cfg_6767_145976.yaml | 32 + .../problem/HPOB/all/cfg_6767_145979.yaml | 32 + .../problem/HPOB/all/cfg_6767_146012.yaml | 32 + .../problem/HPOB/all/cfg_6767_146064.yaml | 32 + .../problem/HPOB/all/cfg_6767_146065.yaml | 32 + .../problem/HPOB/all/cfg_6767_146066.yaml | 32 + .../problem/HPOB/all/cfg_6767_146085.yaml | 32 + .../problem/HPOB/all/cfg_6767_14951.yaml | 32 + .../problem/HPOB/all/cfg_6767_14965.yaml | 32 + .../problem/HPOB/all/cfg_6767_14971.yaml | 32 + .../problem/HPOB/all/cfg_6767_219.yaml | 32 + .../problem/HPOB/all/cfg_6767_272.yaml | 32 + .../configs/problem/HPOB/all/cfg_6767_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_6767_31.yaml | 32 + .../problem/HPOB/all/cfg_6767_34536.yaml | 32 + .../problem/HPOB/all/cfg_6767_3485.yaml | 32 + .../problem/HPOB/all/cfg_6767_3492.yaml | 32 + .../problem/HPOB/all/cfg_6767_3493.yaml | 32 + .../problem/HPOB/all/cfg_6767_3494.yaml | 32 + .../configs/problem/HPOB/all/cfg_6767_37.yaml | 32 + .../problem/HPOB/all/cfg_6767_3889.yaml | 32 + .../problem/HPOB/all/cfg_6767_3891.yaml | 32 + .../problem/HPOB/all/cfg_6767_3896.yaml | 32 + .../problem/HPOB/all/cfg_6767_3899.yaml | 32 + .../problem/HPOB/all/cfg_6767_3902.yaml | 32 + .../problem/HPOB/all/cfg_6767_3903.yaml | 32 + .../problem/HPOB/all/cfg_6767_3913.yaml | 32 + .../problem/HPOB/all/cfg_6767_3917.yaml | 32 + .../problem/HPOB/all/cfg_6767_3918.yaml | 32 + .../problem/HPOB/all/cfg_6767_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_6767_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_6767_49.yaml | 32 + .../problem/HPOB/all/cfg_6767_6566.yaml | 32 + .../problem/HPOB/all/cfg_6767_7295.yaml | 32 + .../problem/HPOB/all/cfg_6767_9889.yaml | 32 + .../problem/HPOB/all/cfg_6767_9914.yaml | 32 + .../problem/HPOB/all/cfg_6767_9946.yaml | 32 + .../problem/HPOB/all/cfg_6767_9952.yaml | 32 + .../problem/HPOB/all/cfg_6767_9957.yaml | 32 + .../problem/HPOB/all/cfg_6767_9967.yaml | 32 + .../problem/HPOB/all/cfg_6767_9970.yaml | 32 + .../problem/HPOB/all/cfg_6767_9971.yaml | 32 + .../problem/HPOB/all/cfg_6767_9976.yaml | 32 + .../problem/HPOB/all/cfg_6767_9977.yaml | 32 + .../problem/HPOB/all/cfg_6767_9978.yaml | 32 + .../problem/HPOB/all/cfg_6767_9980.yaml | 32 + .../problem/HPOB/all/cfg_678_1898.yaml | 32 + .../problem/HPOB/all/cfg_678_1902.yaml | 32 + .../problem/HPOB/all/cfg_678_1917.yaml | 32 + .../problem/HPOB/all/cfg_678_1919.yaml | 32 + .../problem/HPOB/all/cfg_678_1939.yaml | 32 + .../problem/HPOB/all/cfg_6794_10093.yaml | 32 + .../problem/HPOB/all/cfg_6794_10101.yaml | 32 + .../problem/HPOB/all/cfg_6794_125923.yaml | 32 + .../problem/HPOB/all/cfg_6794_145804.yaml | 32 + .../problem/HPOB/all/cfg_6794_145833.yaml | 32 + .../problem/HPOB/all/cfg_6794_145834.yaml | 32 + .../problem/HPOB/all/cfg_6794_145836.yaml | 32 + .../problem/HPOB/all/cfg_6794_145839.yaml | 32 + .../problem/HPOB/all/cfg_6794_145853.yaml | 32 + .../problem/HPOB/all/cfg_6794_145854.yaml | 32 + .../problem/HPOB/all/cfg_6794_145855.yaml | 32 + .../problem/HPOB/all/cfg_6794_145857.yaml | 32 + .../problem/HPOB/all/cfg_6794_145862.yaml | 32 + .../problem/HPOB/all/cfg_6794_145872.yaml | 32 + .../problem/HPOB/all/cfg_6794_145878.yaml | 32 + .../problem/HPOB/all/cfg_6794_145972.yaml | 32 + .../problem/HPOB/all/cfg_6794_145976.yaml | 32 + .../problem/HPOB/all/cfg_6794_145979.yaml | 32 + .../problem/HPOB/all/cfg_6794_146012.yaml | 32 + .../problem/HPOB/all/cfg_6794_146064.yaml | 32 + .../problem/HPOB/all/cfg_6794_146065.yaml | 32 + .../problem/HPOB/all/cfg_6794_146066.yaml | 32 + .../problem/HPOB/all/cfg_6794_146082.yaml | 32 + .../problem/HPOB/all/cfg_6794_146085.yaml | 32 + .../problem/HPOB/all/cfg_6794_14951.yaml | 32 + .../problem/HPOB/all/cfg_6794_14965.yaml | 32 + .../problem/HPOB/all/cfg_6794_14971.yaml | 32 + .../problem/HPOB/all/cfg_6794_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_6794_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_6794_31.yaml | 32 + .../problem/HPOB/all/cfg_6794_34536.yaml | 32 + .../problem/HPOB/all/cfg_6794_3485.yaml | 32 + .../problem/HPOB/all/cfg_6794_3492.yaml | 32 + .../problem/HPOB/all/cfg_6794_3493.yaml | 32 + .../problem/HPOB/all/cfg_6794_3494.yaml | 32 + .../configs/problem/HPOB/all/cfg_6794_37.yaml | 32 + .../problem/HPOB/all/cfg_6794_3889.yaml | 32 + .../problem/HPOB/all/cfg_6794_3891.yaml | 32 + .../problem/HPOB/all/cfg_6794_3896.yaml | 32 + .../problem/HPOB/all/cfg_6794_3899.yaml | 32 + .../problem/HPOB/all/cfg_6794_3902.yaml | 32 + .../problem/HPOB/all/cfg_6794_3903.yaml | 32 + .../problem/HPOB/all/cfg_6794_3913.yaml | 32 + .../problem/HPOB/all/cfg_6794_3917.yaml | 32 + .../problem/HPOB/all/cfg_6794_3918.yaml | 32 + .../problem/HPOB/all/cfg_6794_3950.yaml | 32 + .../problem/HPOB/all/cfg_6794_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_6794_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_6794_49.yaml | 32 + .../problem/HPOB/all/cfg_6794_6566.yaml | 32 + .../problem/HPOB/all/cfg_6794_7295.yaml | 32 + .../problem/HPOB/all/cfg_6794_9889.yaml | 32 + .../problem/HPOB/all/cfg_6794_9914.yaml | 32 + .../problem/HPOB/all/cfg_6794_9946.yaml | 32 + .../problem/HPOB/all/cfg_6794_9952.yaml | 32 + .../problem/HPOB/all/cfg_6794_9957.yaml | 32 + .../problem/HPOB/all/cfg_6794_9967.yaml | 32 + .../problem/HPOB/all/cfg_6794_9970.yaml | 32 + .../problem/HPOB/all/cfg_6794_9971.yaml | 32 + .../problem/HPOB/all/cfg_6794_9976.yaml | 32 + .../problem/HPOB/all/cfg_6794_9977.yaml | 32 + .../problem/HPOB/all/cfg_6794_9978.yaml | 32 + .../problem/HPOB/all/cfg_6794_9980.yaml | 32 + .../problem/HPOB/all/cfg_6794_9983.yaml | 32 + .../problem/HPOB/all/cfg_679_1898.yaml | 32 + .../problem/HPOB/all/cfg_679_1902.yaml | 32 + .../problem/HPOB/all/cfg_679_1917.yaml | 32 + .../problem/HPOB/all/cfg_679_1919.yaml | 32 + .../problem/HPOB/all/cfg_679_1939.yaml | 32 + .../problem/HPOB/all/cfg_680_1898.yaml | 32 + .../problem/HPOB/all/cfg_680_1902.yaml | 32 + .../problem/HPOB/all/cfg_680_1917.yaml | 32 + .../problem/HPOB/all/cfg_680_1919.yaml | 32 + .../problem/HPOB/all/cfg_680_1939.yaml | 32 + .../problem/HPOB/all/cfg_681_1898.yaml | 32 + .../problem/HPOB/all/cfg_681_1902.yaml | 32 + .../problem/HPOB/all/cfg_681_1917.yaml | 32 + .../problem/HPOB/all/cfg_681_1919.yaml | 32 + .../problem/HPOB/all/cfg_681_1939.yaml | 32 + .../problem/HPOB/all/cfg_682_1898.yaml | 32 + .../problem/HPOB/all/cfg_682_1902.yaml | 32 + .../problem/HPOB/all/cfg_682_1917.yaml | 32 + .../problem/HPOB/all/cfg_682_1919.yaml | 32 + .../problem/HPOB/all/cfg_682_1939.yaml | 32 + .../problem/HPOB/all/cfg_683_1898.yaml | 32 + .../problem/HPOB/all/cfg_683_1902.yaml | 32 + .../problem/HPOB/all/cfg_683_1917.yaml | 32 + .../problem/HPOB/all/cfg_683_1919.yaml | 32 + .../problem/HPOB/all/cfg_683_1939.yaml | 32 + .../problem/HPOB/all/cfg_684_1898.yaml | 32 + .../problem/HPOB/all/cfg_684_1902.yaml | 32 + .../problem/HPOB/all/cfg_684_1917.yaml | 32 + .../problem/HPOB/all/cfg_684_1919.yaml | 32 + .../problem/HPOB/all/cfg_684_1939.yaml | 32 + .../configs/problem/HPOB/all/cfg_6856_37.yaml | 32 + .../problem/HPOB/all/cfg_685_1898.yaml | 32 + .../problem/HPOB/all/cfg_685_1902.yaml | 32 + .../problem/HPOB/all/cfg_685_1917.yaml | 32 + .../problem/HPOB/all/cfg_685_1919.yaml | 32 + .../problem/HPOB/all/cfg_685_1939.yaml | 32 + .../problem/HPOB/all/cfg_688_1917.yaml | 32 + .../problem/HPOB/all/cfg_689_1917.yaml | 32 + .../problem/HPOB/all/cfg_690_1917.yaml | 32 + .../problem/HPOB/all/cfg_691_1917.yaml | 32 + .../problem/HPOB/all/cfg_692_1917.yaml | 32 + .../problem/HPOB/all/cfg_693_1917.yaml | 32 + .../problem/HPOB/all/cfg_694_1917.yaml | 32 + .../problem/HPOB/all/cfg_695_1917.yaml | 32 + .../problem/HPOB/all/cfg_696_1917.yaml | 32 + .../problem/HPOB/all/cfg_697_1917.yaml | 32 + .../problem/HPOB/all/cfg_7021_125923.yaml | 32 + .../configs/problem/HPOB/all/cfg_7064_22.yaml | 32 + .../problem/HPOB/all/cfg_7188_10093.yaml | 32 + .../problem/HPOB/all/cfg_7188_125920.yaml | 32 + .../problem/HPOB/all/cfg_7188_125923.yaml | 32 + .../configs/problem/HPOB/all/cfg_7188_24.yaml | 32 + .../configs/problem/HPOB/all/cfg_7188_29.yaml | 32 + .../configs/problem/HPOB/all/cfg_7188_3.yaml | 32 + .../problem/HPOB/all/cfg_7188_3021.yaml | 32 + .../configs/problem/HPOB/all/cfg_7188_31.yaml | 32 + .../problem/HPOB/all/cfg_7188_34536.yaml | 32 + .../problem/HPOB/all/cfg_7188_34537.yaml | 32 + .../problem/HPOB/all/cfg_7188_3492.yaml | 32 + .../problem/HPOB/all/cfg_7188_3493.yaml | 32 + .../problem/HPOB/all/cfg_7188_3494.yaml | 32 + .../configs/problem/HPOB/all/cfg_7188_37.yaml | 32 + .../problem/HPOB/all/cfg_7188_3899.yaml | 32 + .../problem/HPOB/all/cfg_7188_3902.yaml | 32 + .../problem/HPOB/all/cfg_7188_3903.yaml | 32 + .../problem/HPOB/all/cfg_7188_3904.yaml | 32 + .../problem/HPOB/all/cfg_7188_3913.yaml | 32 + .../problem/HPOB/all/cfg_7188_3917.yaml | 32 + .../problem/HPOB/all/cfg_7188_3918.yaml | 32 + .../problem/HPOB/all/cfg_7188_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_7188_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_7188_49.yaml | 32 + .../problem/HPOB/all/cfg_7188_7592.yaml | 32 + .../problem/HPOB/all/cfg_7188_9914.yaml | 32 + .../problem/HPOB/all/cfg_7188_9946.yaml | 32 + .../problem/HPOB/all/cfg_7188_9952.yaml | 32 + .../problem/HPOB/all/cfg_7188_9967.yaml | 32 + .../problem/HPOB/all/cfg_7188_9970.yaml | 32 + .../problem/HPOB/all/cfg_7188_9971.yaml | 32 + .../problem/HPOB/all/cfg_7188_9977.yaml | 32 + .../problem/HPOB/all/cfg_7188_9978.yaml | 32 + .../problem/HPOB/all/cfg_7188_9980.yaml | 32 + .../problem/HPOB/all/cfg_7188_9983.yaml | 32 + .../problem/HPOB/all/cfg_7189_10093.yaml | 32 + .../problem/HPOB/all/cfg_7189_10101.yaml | 32 + .../problem/HPOB/all/cfg_7189_125920.yaml | 32 + .../problem/HPOB/all/cfg_7189_125923.yaml | 32 + .../problem/HPOB/all/cfg_7189_14965.yaml | 32 + .../problem/HPOB/all/cfg_7189_14966.yaml | 32 + .../configs/problem/HPOB/all/cfg_7189_15.yaml | 32 + .../configs/problem/HPOB/all/cfg_7189_24.yaml | 32 + .../configs/problem/HPOB/all/cfg_7189_29.yaml | 32 + .../configs/problem/HPOB/all/cfg_7189_3.yaml | 32 + .../problem/HPOB/all/cfg_7189_3021.yaml | 32 + .../configs/problem/HPOB/all/cfg_7189_31.yaml | 32 + .../problem/HPOB/all/cfg_7189_34536.yaml | 32 + .../problem/HPOB/all/cfg_7189_34537.yaml | 32 + .../problem/HPOB/all/cfg_7189_3485.yaml | 32 + .../problem/HPOB/all/cfg_7189_3492.yaml | 32 + .../problem/HPOB/all/cfg_7189_3493.yaml | 32 + .../problem/HPOB/all/cfg_7189_3494.yaml | 32 + .../problem/HPOB/all/cfg_7189_3543.yaml | 32 + .../configs/problem/HPOB/all/cfg_7189_37.yaml | 32 + .../problem/HPOB/all/cfg_7189_3896.yaml | 32 + .../problem/HPOB/all/cfg_7189_3899.yaml | 32 + .../problem/HPOB/all/cfg_7189_3902.yaml | 32 + .../problem/HPOB/all/cfg_7189_3903.yaml | 32 + .../problem/HPOB/all/cfg_7189_3913.yaml | 32 + .../problem/HPOB/all/cfg_7189_3917.yaml | 32 + .../problem/HPOB/all/cfg_7189_3918.yaml | 32 + .../problem/HPOB/all/cfg_7189_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_7189_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_7189_49.yaml | 32 + .../problem/HPOB/all/cfg_7189_7592.yaml | 32 + .../problem/HPOB/all/cfg_7189_9914.yaml | 32 + .../problem/HPOB/all/cfg_7189_9957.yaml | 32 + .../problem/HPOB/all/cfg_7189_9970.yaml | 32 + .../problem/HPOB/all/cfg_7189_9971.yaml | 32 + .../problem/HPOB/all/cfg_7189_9976.yaml | 32 + .../problem/HPOB/all/cfg_7189_9977.yaml | 32 + .../problem/HPOB/all/cfg_7189_9978.yaml | 32 + .../problem/HPOB/all/cfg_7189_9980.yaml | 32 + .../problem/HPOB/all/cfg_7189_9983.yaml | 32 + .../problem/HPOB/all/cfg_7190_10093.yaml | 32 + .../problem/HPOB/all/cfg_7190_10101.yaml | 32 + .../configs/problem/HPOB/all/cfg_7190_15.yaml | 32 + .../configs/problem/HPOB/all/cfg_7190_24.yaml | 32 + .../configs/problem/HPOB/all/cfg_7190_29.yaml | 32 + .../configs/problem/HPOB/all/cfg_7190_3.yaml | 32 + .../problem/HPOB/all/cfg_7190_3021.yaml | 32 + .../configs/problem/HPOB/all/cfg_7190_31.yaml | 32 + .../problem/HPOB/all/cfg_7190_34536.yaml | 32 + .../problem/HPOB/all/cfg_7190_34537.yaml | 32 + .../problem/HPOB/all/cfg_7190_3485.yaml | 32 + .../configs/problem/HPOB/all/cfg_7190_37.yaml | 32 + .../problem/HPOB/all/cfg_7190_3896.yaml | 32 + .../problem/HPOB/all/cfg_7190_3899.yaml | 32 + .../problem/HPOB/all/cfg_7190_3902.yaml | 32 + .../problem/HPOB/all/cfg_7190_3903.yaml | 32 + .../problem/HPOB/all/cfg_7190_3917.yaml | 32 + .../problem/HPOB/all/cfg_7190_3918.yaml | 32 + .../problem/HPOB/all/cfg_7190_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_7190_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_7190_49.yaml | 32 + .../problem/HPOB/all/cfg_7190_9914.yaml | 32 + .../problem/HPOB/all/cfg_7190_9946.yaml | 32 + .../problem/HPOB/all/cfg_7190_9952.yaml | 32 + .../problem/HPOB/all/cfg_7190_9957.yaml | 32 + .../problem/HPOB/all/cfg_7190_9967.yaml | 32 + .../problem/HPOB/all/cfg_7190_9970.yaml | 32 + .../problem/HPOB/all/cfg_7190_9971.yaml | 32 + .../problem/HPOB/all/cfg_7190_9976.yaml | 32 + .../problem/HPOB/all/cfg_7190_9978.yaml | 32 + .../problem/HPOB/all/cfg_7190_9980.yaml | 32 + .../problem/HPOB/all/cfg_7190_9983.yaml | 32 + .../problem/HPOB/all/cfg_7200_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_7286_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_7290_3.yaml | 32 + .../problem/HPOB/all/cfg_7604_146066.yaml | 32 + .../problem/HPOB/all/cfg_7607_10093.yaml | 32 + .../problem/HPOB/all/cfg_7607_10101.yaml | 32 + .../problem/HPOB/all/cfg_7607_125923.yaml | 32 + .../problem/HPOB/all/cfg_7607_145677.yaml | 32 + .../problem/HPOB/all/cfg_7607_145804.yaml | 32 + .../problem/HPOB/all/cfg_7607_145833.yaml | 32 + .../problem/HPOB/all/cfg_7607_145834.yaml | 32 + .../problem/HPOB/all/cfg_7607_145836.yaml | 32 + .../problem/HPOB/all/cfg_7607_145839.yaml | 32 + .../problem/HPOB/all/cfg_7607_145847.yaml | 32 + .../problem/HPOB/all/cfg_7607_145848.yaml | 32 + .../problem/HPOB/all/cfg_7607_145853.yaml | 32 + .../problem/HPOB/all/cfg_7607_145854.yaml | 32 + .../problem/HPOB/all/cfg_7607_145855.yaml | 32 + .../problem/HPOB/all/cfg_7607_145857.yaml | 32 + .../problem/HPOB/all/cfg_7607_145862.yaml | 32 + .../problem/HPOB/all/cfg_7607_145872.yaml | 32 + .../problem/HPOB/all/cfg_7607_145878.yaml | 32 + .../problem/HPOB/all/cfg_7607_145953.yaml | 32 + .../problem/HPOB/all/cfg_7607_145972.yaml | 32 + .../problem/HPOB/all/cfg_7607_145976.yaml | 32 + .../problem/HPOB/all/cfg_7607_145979.yaml | 32 + .../problem/HPOB/all/cfg_7607_146012.yaml | 32 + .../problem/HPOB/all/cfg_7607_146064.yaml | 32 + .../problem/HPOB/all/cfg_7607_146065.yaml | 32 + .../problem/HPOB/all/cfg_7607_146066.yaml | 32 + .../problem/HPOB/all/cfg_7607_146085.yaml | 32 + .../problem/HPOB/all/cfg_7607_146803.yaml | 32 + .../problem/HPOB/all/cfg_7607_14951.yaml | 32 + .../problem/HPOB/all/cfg_7607_14952.yaml | 32 + .../problem/HPOB/all/cfg_7607_14965.yaml | 32 + .../problem/HPOB/all/cfg_7607_14966.yaml | 32 + .../problem/HPOB/all/cfg_7607_14971.yaml | 32 + .../problem/HPOB/all/cfg_7607_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_7607_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_7607_31.yaml | 32 + .../problem/HPOB/all/cfg_7607_34536.yaml | 32 + .../problem/HPOB/all/cfg_7607_34537.yaml | 32 + .../problem/HPOB/all/cfg_7607_34539.yaml | 32 + .../problem/HPOB/all/cfg_7607_3485.yaml | 32 + .../problem/HPOB/all/cfg_7607_3492.yaml | 32 + .../problem/HPOB/all/cfg_7607_3493.yaml | 32 + .../problem/HPOB/all/cfg_7607_3494.yaml | 32 + .../configs/problem/HPOB/all/cfg_7607_37.yaml | 32 + .../problem/HPOB/all/cfg_7607_3889.yaml | 32 + .../problem/HPOB/all/cfg_7607_3891.yaml | 32 + .../problem/HPOB/all/cfg_7607_3896.yaml | 32 + .../problem/HPOB/all/cfg_7607_3899.yaml | 32 + .../problem/HPOB/all/cfg_7607_3902.yaml | 32 + .../problem/HPOB/all/cfg_7607_3903.yaml | 32 + .../problem/HPOB/all/cfg_7607_3913.yaml | 32 + .../problem/HPOB/all/cfg_7607_3917.yaml | 32 + .../problem/HPOB/all/cfg_7607_3918.yaml | 32 + .../problem/HPOB/all/cfg_7607_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_7607_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_7607_49.yaml | 32 + .../problem/HPOB/all/cfg_7607_7295.yaml | 32 + .../problem/HPOB/all/cfg_7607_9889.yaml | 32 + .../problem/HPOB/all/cfg_7607_9910.yaml | 32 + .../problem/HPOB/all/cfg_7607_9911.yaml | 32 + .../problem/HPOB/all/cfg_7607_9914.yaml | 32 + .../problem/HPOB/all/cfg_7607_9946.yaml | 32 + .../problem/HPOB/all/cfg_7607_9952.yaml | 32 + .../problem/HPOB/all/cfg_7607_9957.yaml | 32 + .../problem/HPOB/all/cfg_7607_9967.yaml | 32 + .../problem/HPOB/all/cfg_7607_9970.yaml | 32 + .../problem/HPOB/all/cfg_7607_9971.yaml | 32 + .../problem/HPOB/all/cfg_7607_9976.yaml | 32 + .../problem/HPOB/all/cfg_7607_9977.yaml | 32 + .../problem/HPOB/all/cfg_7607_9978.yaml | 32 + .../problem/HPOB/all/cfg_7607_9980.yaml | 32 + .../problem/HPOB/all/cfg_7607_9983.yaml | 32 + .../problem/HPOB/all/cfg_7609_10093.yaml | 32 + .../problem/HPOB/all/cfg_7609_10101.yaml | 32 + .../problem/HPOB/all/cfg_7609_125923.yaml | 32 + .../problem/HPOB/all/cfg_7609_145677.yaml | 32 + .../problem/HPOB/all/cfg_7609_145804.yaml | 32 + .../problem/HPOB/all/cfg_7609_145833.yaml | 32 + .../problem/HPOB/all/cfg_7609_145834.yaml | 32 + .../problem/HPOB/all/cfg_7609_145836.yaml | 32 + .../problem/HPOB/all/cfg_7609_145839.yaml | 32 + .../problem/HPOB/all/cfg_7609_145847.yaml | 32 + .../problem/HPOB/all/cfg_7609_145848.yaml | 32 + .../problem/HPOB/all/cfg_7609_145853.yaml | 32 + .../problem/HPOB/all/cfg_7609_145854.yaml | 32 + .../problem/HPOB/all/cfg_7609_145855.yaml | 32 + .../problem/HPOB/all/cfg_7609_145857.yaml | 32 + .../problem/HPOB/all/cfg_7609_145862.yaml | 32 + .../problem/HPOB/all/cfg_7609_145872.yaml | 32 + .../problem/HPOB/all/cfg_7609_145878.yaml | 32 + .../problem/HPOB/all/cfg_7609_145953.yaml | 32 + .../problem/HPOB/all/cfg_7609_145972.yaml | 32 + .../problem/HPOB/all/cfg_7609_145976.yaml | 32 + .../problem/HPOB/all/cfg_7609_145979.yaml | 32 + .../problem/HPOB/all/cfg_7609_146012.yaml | 32 + .../problem/HPOB/all/cfg_7609_146064.yaml | 32 + .../problem/HPOB/all/cfg_7609_146065.yaml | 32 + .../problem/HPOB/all/cfg_7609_146066.yaml | 32 + .../problem/HPOB/all/cfg_7609_146085.yaml | 32 + .../problem/HPOB/all/cfg_7609_146803.yaml | 32 + .../problem/HPOB/all/cfg_7609_14951.yaml | 32 + .../problem/HPOB/all/cfg_7609_14952.yaml | 32 + .../problem/HPOB/all/cfg_7609_14965.yaml | 32 + .../problem/HPOB/all/cfg_7609_14966.yaml | 32 + .../problem/HPOB/all/cfg_7609_14971.yaml | 32 + .../problem/HPOB/all/cfg_7609_219.yaml | 32 + .../configs/problem/HPOB/all/cfg_7609_3.yaml | 32 + .../configs/problem/HPOB/all/cfg_7609_31.yaml | 32 + .../problem/HPOB/all/cfg_7609_34536.yaml | 32 + .../problem/HPOB/all/cfg_7609_34537.yaml | 32 + .../problem/HPOB/all/cfg_7609_34539.yaml | 32 + .../problem/HPOB/all/cfg_7609_3485.yaml | 32 + .../problem/HPOB/all/cfg_7609_3492.yaml | 32 + .../problem/HPOB/all/cfg_7609_3493.yaml | 32 + .../problem/HPOB/all/cfg_7609_3494.yaml | 32 + .../configs/problem/HPOB/all/cfg_7609_37.yaml | 32 + .../problem/HPOB/all/cfg_7609_3889.yaml | 32 + .../problem/HPOB/all/cfg_7609_3891.yaml | 32 + .../problem/HPOB/all/cfg_7609_3896.yaml | 32 + .../problem/HPOB/all/cfg_7609_3899.yaml | 32 + .../problem/HPOB/all/cfg_7609_3902.yaml | 32 + .../problem/HPOB/all/cfg_7609_3903.yaml | 32 + .../problem/HPOB/all/cfg_7609_3913.yaml | 32 + .../problem/HPOB/all/cfg_7609_3917.yaml | 32 + .../problem/HPOB/all/cfg_7609_3918.yaml | 32 + .../problem/HPOB/all/cfg_7609_3954.yaml | 32 + .../configs/problem/HPOB/all/cfg_7609_43.yaml | 32 + .../configs/problem/HPOB/all/cfg_7609_49.yaml | 32 + .../problem/HPOB/all/cfg_7609_6566.yaml | 32 + .../problem/HPOB/all/cfg_7609_7295.yaml | 32 + .../problem/HPOB/all/cfg_7609_9889.yaml | 32 + .../problem/HPOB/all/cfg_7609_9910.yaml | 32 + .../problem/HPOB/all/cfg_7609_9911.yaml | 32 + .../problem/HPOB/all/cfg_7609_9914.yaml | 32 + .../problem/HPOB/all/cfg_7609_9946.yaml | 32 + .../problem/HPOB/all/cfg_7609_9952.yaml | 32 + .../problem/HPOB/all/cfg_7609_9957.yaml | 32 + .../problem/HPOB/all/cfg_7609_9967.yaml | 32 + .../problem/HPOB/all/cfg_7609_9970.yaml | 32 + .../problem/HPOB/all/cfg_7609_9971.yaml | 32 + .../problem/HPOB/all/cfg_7609_9976.yaml | 32 + .../problem/HPOB/all/cfg_7609_9977.yaml | 32 + .../problem/HPOB/all/cfg_7609_9978.yaml | 32 + .../problem/HPOB/all/cfg_7609_9980.yaml | 32 + .../problem/HPOB/all/cfg_7609_9983.yaml | 32 + .../problem/HPOB/all/cfg_7680_146064.yaml | 32 + .../problem/HPOB/all/cfg_829_7293.yaml | 32 + .../problem/HPOB/all/cfg_833_7293.yaml | 32 + .../problem/HPOB/all/cfg_935_7293.yaml | 32 + .../problem/HPOB/subset/cfg_5489_3011.yaml | 32 + .../problem/HPOB/subset/cfg_5489_34.yaml | 32 + .../problem/HPOB/subset/cfg_5489_3849.yaml | 32 + .../problem/HPOB/subset/cfg_5489_3866.yaml | 32 + .../problem/HPOB/subset/cfg_5489_50.yaml | 32 + .../problem/HPOB/subset/cfg_5886_14.yaml | 32 + .../problem/HPOB/subset/cfg_5886_2073.yaml | 32 + .../problem/HPOB/subset/cfg_5886_2076.yaml | 32 + .../problem/HPOB/subset/cfg_5886_45.yaml | 32 + .../problem/HPOB/subset/cfg_5886_53.yaml | 32 + .../problem/HPOB/subset/cfg_5968_10101.yaml | 32 + .../problem/HPOB/subset/cfg_5968_3896.yaml | 32 + .../problem/HPOB/subset/cfg_5968_9889.yaml | 32 + .../problem/HPOB/subset/cfg_5968_9914.yaml | 32 + .../problem/HPOB/subset/cfg_5968_9952.yaml | 32 + .../problem/HPOB/subset/cfg_6073_11.yaml | 32 + .../problem/HPOB/subset/cfg_6073_2076.yaml | 32 + .../problem/HPOB/subset/cfg_6073_26.yaml | 32 + .../problem/HPOB/subset/cfg_6073_53.yaml | 32 + .../problem/HPOB/subset/cfg_6073_6.yaml | 32 + .../problem/HPOB/subset/cfg_6447_11.yaml | 32 + .../problem/HPOB/subset/cfg_6447_22.yaml | 32 + .../problem/HPOB/subset/cfg_6447_31.yaml | 32 + .../problem/HPOB/subset/cfg_6447_37.yaml | 32 + .../problem/HPOB/subset/cfg_6447_41.yaml | 32 + .../problem/HPOB/subset/cfg_678_1898.yaml | 32 + .../problem/HPOB/subset/cfg_678_1902.yaml | 32 + .../problem/HPOB/subset/cfg_678_1917.yaml | 32 + .../problem/HPOB/subset/cfg_678_1919.yaml | 32 + .../problem/HPOB/subset/cfg_678_1939.yaml | 32 + .../problem/HPOB/subset/cfg_679_1898.yaml | 32 + .../problem/HPOB/subset/cfg_679_1902.yaml | 32 + .../problem/HPOB/subset/cfg_679_1917.yaml | 32 + .../problem/HPOB/subset/cfg_679_1919.yaml | 32 + .../problem/HPOB/subset/cfg_679_1939.yaml | 32 + .../problem/HPOB/subset/cfg_682_1898.yaml | 32 + .../problem/HPOB/subset/cfg_682_1902.yaml | 32 + .../problem/HPOB/subset/cfg_682_1917.yaml | 32 + .../problem/HPOB/subset/cfg_682_1919.yaml | 32 + .../problem/HPOB/subset/cfg_682_1939.yaml | 32 + .../problem/HPOB/subset/cfg_7188_125920.yaml | 32 + .../problem/HPOB/subset/cfg_7188_3.yaml | 32 + .../problem/HPOB/subset/cfg_7188_3493.yaml | 32 + .../problem/HPOB/subset/cfg_7188_3899.yaml | 32 + .../problem/HPOB/subset/cfg_7188_3903.yaml | 32 + .../problem/HPOB/subset/cfg_7189_3902.yaml | 32 + .../problem/HPOB/subset/cfg_7189_49.yaml | 32 + .../problem/HPOB/subset/cfg_7189_9914.yaml | 32 + .../problem/HPOB/subset/cfg_7189_9957.yaml | 32 + .../problem/HPOB/subset/cfg_7189_9976.yaml | 32 + .../HPOBench/MO/tab/cfg_ml_lr_10101.yaml | 37 + .../problem/HPOBench/MO/tab/cfg_ml_lr_12.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_lr_146212.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_lr_146606.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_lr_146818.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_lr_146821.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_lr_146822.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_lr_14965.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_lr_167119.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_lr_167120.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_lr_168911.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_lr_168912.yaml | 37 + .../problem/HPOBench/MO/tab/cfg_ml_lr_3.yaml | 37 + .../problem/HPOBench/MO/tab/cfg_ml_lr_31.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_lr_3917.yaml | 37 + .../problem/HPOBench/MO/tab/cfg_ml_lr_53.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_lr_7592.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_lr_9952.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_lr_9977.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_lr_9981.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_nn_10101.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_nn_146818.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_nn_146821.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_nn_146822.yaml | 37 + .../problem/HPOBench/MO/tab/cfg_ml_nn_31.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_nn_3917.yaml | 37 + .../problem/HPOBench/MO/tab/cfg_ml_nn_53.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_nn_9952.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_rf_10101.yaml | 37 + .../problem/HPOBench/MO/tab/cfg_ml_rf_12.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_rf_146212.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_rf_146606.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_rf_146818.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_rf_146821.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_rf_146822.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_rf_14965.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_rf_167119.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_rf_167120.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_rf_168911.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_rf_168912.yaml | 37 + .../problem/HPOBench/MO/tab/cfg_ml_rf_3.yaml | 37 + .../problem/HPOBench/MO/tab/cfg_ml_rf_31.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_rf_3917.yaml | 37 + .../problem/HPOBench/MO/tab/cfg_ml_rf_53.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_rf_7592.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_rf_9952.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_rf_9977.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_rf_9981.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_svm_10101.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_svm_12.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_svm_146212.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_svm_146606.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_svm_146818.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_svm_146821.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_svm_146822.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_svm_14965.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_svm_167119.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_svm_167120.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_svm_168911.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_svm_168912.yaml | 37 + .../problem/HPOBench/MO/tab/cfg_ml_svm_3.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_svm_31.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_svm_3917.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_svm_53.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_svm_7592.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_svm_9952.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_svm_9977.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_svm_9981.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_xgboost_10101.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_xgboost_12.yaml | 37 + .../MO/tab/cfg_ml_xgboost_146212.yaml | 37 + .../MO/tab/cfg_ml_xgboost_146606.yaml | 37 + .../MO/tab/cfg_ml_xgboost_146818.yaml | 37 + .../MO/tab/cfg_ml_xgboost_146821.yaml | 37 + .../MO/tab/cfg_ml_xgboost_146822.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_xgboost_14965.yaml | 37 + .../MO/tab/cfg_ml_xgboost_167119.yaml | 37 + .../MO/tab/cfg_ml_xgboost_167120.yaml | 37 + .../MO/tab/cfg_ml_xgboost_168911.yaml | 37 + .../MO/tab/cfg_ml_xgboost_168912.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_xgboost_3.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_xgboost_31.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_xgboost_3917.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_xgboost_53.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_xgboost_7592.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_xgboost_9952.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_xgboost_9977.yaml | 37 + .../HPOBench/MO/tab/cfg_ml_xgboost_9981.yaml | 37 + .../surr/cfg_surr_ParamNet_Adult.yaml | 33 + .../surr/cfg_surr_ParamNet_Higgs.yaml | 33 + .../surr/cfg_surr_ParamNet_Letter.yaml | 33 + .../surr/cfg_surr_ParamNet_Mnist.yaml | 33 + .../surr/cfg_surr_ParamNet_Optdigits.yaml | 33 + .../surr/cfg_surr_ParamNet_Poker.yaml | 33 + .../blackbox/surr/cfg_surr_SVM_default.yaml | 33 + .../blackbox/tab/cfg_ml_lr_10101.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_lr_12.yaml | 33 + .../blackbox/tab/cfg_ml_lr_146212.yaml | 33 + .../blackbox/tab/cfg_ml_lr_146606.yaml | 33 + .../blackbox/tab/cfg_ml_lr_146818.yaml | 33 + .../blackbox/tab/cfg_ml_lr_146821.yaml | 33 + .../blackbox/tab/cfg_ml_lr_146822.yaml | 33 + .../blackbox/tab/cfg_ml_lr_14965.yaml | 33 + .../blackbox/tab/cfg_ml_lr_167119.yaml | 33 + .../blackbox/tab/cfg_ml_lr_167120.yaml | 33 + .../blackbox/tab/cfg_ml_lr_168911.yaml | 33 + .../blackbox/tab/cfg_ml_lr_168912.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_lr_3.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_lr_31.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_lr_3917.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_lr_53.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_lr_7592.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_lr_9952.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_lr_9977.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_lr_9981.yaml | 33 + .../blackbox/tab/cfg_ml_nn_10101.yaml | 33 + .../blackbox/tab/cfg_ml_nn_146818.yaml | 33 + .../blackbox/tab/cfg_ml_nn_146821.yaml | 33 + .../blackbox/tab/cfg_ml_nn_146822.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_nn_31.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_nn_3917.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_nn_53.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_nn_9952.yaml | 33 + .../blackbox/tab/cfg_ml_rf_10101.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_rf_12.yaml | 33 + .../blackbox/tab/cfg_ml_rf_146212.yaml | 33 + .../blackbox/tab/cfg_ml_rf_146606.yaml | 33 + .../blackbox/tab/cfg_ml_rf_146818.yaml | 33 + .../blackbox/tab/cfg_ml_rf_146821.yaml | 33 + .../blackbox/tab/cfg_ml_rf_146822.yaml | 33 + .../blackbox/tab/cfg_ml_rf_14965.yaml | 33 + .../blackbox/tab/cfg_ml_rf_167119.yaml | 33 + .../blackbox/tab/cfg_ml_rf_167120.yaml | 33 + .../blackbox/tab/cfg_ml_rf_168911.yaml | 33 + .../blackbox/tab/cfg_ml_rf_168912.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_rf_3.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_rf_31.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_rf_3917.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_rf_53.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_rf_7592.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_rf_9952.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_rf_9977.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_rf_9981.yaml | 33 + .../blackbox/tab/cfg_ml_svm_10101.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_svm_12.yaml | 33 + .../blackbox/tab/cfg_ml_svm_146212.yaml | 33 + .../blackbox/tab/cfg_ml_svm_146606.yaml | 33 + .../blackbox/tab/cfg_ml_svm_146818.yaml | 33 + .../blackbox/tab/cfg_ml_svm_146821.yaml | 33 + .../blackbox/tab/cfg_ml_svm_146822.yaml | 33 + .../blackbox/tab/cfg_ml_svm_14965.yaml | 33 + .../blackbox/tab/cfg_ml_svm_167119.yaml | 33 + .../blackbox/tab/cfg_ml_svm_167120.yaml | 33 + .../blackbox/tab/cfg_ml_svm_168911.yaml | 33 + .../blackbox/tab/cfg_ml_svm_168912.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_svm_3.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_svm_31.yaml | 33 + .../blackbox/tab/cfg_ml_svm_3917.yaml | 33 + .../HPOBench/blackbox/tab/cfg_ml_svm_53.yaml | 33 + .../blackbox/tab/cfg_ml_svm_7592.yaml | 33 + .../blackbox/tab/cfg_ml_svm_9952.yaml | 33 + .../blackbox/tab/cfg_ml_svm_9977.yaml | 33 + .../blackbox/tab/cfg_ml_svm_9981.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_10101.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_12.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_146212.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_146606.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_146818.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_146821.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_146822.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_14965.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_167119.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_167120.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_168911.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_168912.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_3.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_31.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_3917.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_53.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_7592.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_9952.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_9977.yaml | 33 + .../blackbox/tab/cfg_ml_xgboost_9981.yaml | 33 + .../multifidelity/cfg_ml_lr_10101_iter.yaml | 33 + .../cfg_ml_lr_10101_subsample.yaml | 33 + .../multifidelity/cfg_ml_lr_12_iter.yaml | 33 + .../multifidelity/cfg_ml_lr_12_subsample.yaml | 33 + .../multifidelity/cfg_ml_lr_146212_iter.yaml | 33 + .../cfg_ml_lr_146212_subsample.yaml | 33 + .../multifidelity/cfg_ml_lr_146606_iter.yaml | 33 + .../cfg_ml_lr_146606_subsample.yaml | 33 + .../multifidelity/cfg_ml_lr_146818_iter.yaml | 33 + .../cfg_ml_lr_146818_subsample.yaml | 33 + .../multifidelity/cfg_ml_lr_146821_iter.yaml | 33 + .../cfg_ml_lr_146821_subsample.yaml | 33 + .../multifidelity/cfg_ml_lr_146822_iter.yaml | 33 + .../cfg_ml_lr_146822_subsample.yaml | 33 + .../multifidelity/cfg_ml_lr_14965_iter.yaml | 33 + .../cfg_ml_lr_14965_subsample.yaml | 33 + .../multifidelity/cfg_ml_lr_167119_iter.yaml | 33 + .../cfg_ml_lr_167119_subsample.yaml | 33 + .../multifidelity/cfg_ml_lr_167120_iter.yaml | 33 + .../cfg_ml_lr_167120_subsample.yaml | 33 + .../multifidelity/cfg_ml_lr_168911_iter.yaml | 33 + .../cfg_ml_lr_168911_subsample.yaml | 33 + .../multifidelity/cfg_ml_lr_168912_iter.yaml | 33 + .../cfg_ml_lr_168912_subsample.yaml | 33 + .../multifidelity/cfg_ml_lr_31_iter.yaml | 33 + .../multifidelity/cfg_ml_lr_31_subsample.yaml | 33 + .../multifidelity/cfg_ml_lr_3917_iter.yaml | 33 + .../cfg_ml_lr_3917_subsample.yaml | 33 + .../multifidelity/cfg_ml_lr_3_iter.yaml | 33 + .../multifidelity/cfg_ml_lr_3_subsample.yaml | 33 + .../multifidelity/cfg_ml_lr_53_iter.yaml | 33 + .../multifidelity/cfg_ml_lr_53_subsample.yaml | 33 + .../multifidelity/cfg_ml_lr_7592_iter.yaml | 33 + .../cfg_ml_lr_7592_subsample.yaml | 33 + .../multifidelity/cfg_ml_lr_9952_iter.yaml | 33 + .../cfg_ml_lr_9952_subsample.yaml | 33 + .../multifidelity/cfg_ml_lr_9977_iter.yaml | 33 + .../cfg_ml_lr_9977_subsample.yaml | 33 + .../multifidelity/cfg_ml_lr_9981_iter.yaml | 33 + .../cfg_ml_lr_9981_subsample.yaml | 33 + .../multifidelity/cfg_ml_nn_10101_iter.yaml | 33 + .../cfg_ml_nn_10101_subsample.yaml | 33 + .../multifidelity/cfg_ml_nn_146818_iter.yaml | 33 + .../cfg_ml_nn_146818_subsample.yaml | 33 + .../multifidelity/cfg_ml_nn_146821_iter.yaml | 33 + .../cfg_ml_nn_146821_subsample.yaml | 33 + .../multifidelity/cfg_ml_nn_146822_iter.yaml | 33 + .../cfg_ml_nn_146822_subsample.yaml | 33 + .../multifidelity/cfg_ml_nn_31_iter.yaml | 33 + .../multifidelity/cfg_ml_nn_31_subsample.yaml | 33 + .../multifidelity/cfg_ml_nn_3917_iter.yaml | 33 + .../cfg_ml_nn_3917_subsample.yaml | 33 + .../multifidelity/cfg_ml_nn_53_iter.yaml | 33 + .../multifidelity/cfg_ml_nn_53_subsample.yaml | 33 + .../multifidelity/cfg_ml_nn_9952_iter.yaml | 33 + .../cfg_ml_nn_9952_subsample.yaml | 33 + .../cfg_ml_rf_10101_n_estimators.yaml | 33 + .../cfg_ml_rf_10101_subsample.yaml | 33 + .../cfg_ml_rf_12_n_estimators.yaml | 33 + .../multifidelity/cfg_ml_rf_12_subsample.yaml | 33 + .../cfg_ml_rf_146212_n_estimators.yaml | 33 + .../cfg_ml_rf_146212_subsample.yaml | 33 + .../cfg_ml_rf_146606_n_estimators.yaml | 33 + .../cfg_ml_rf_146606_subsample.yaml | 33 + .../cfg_ml_rf_146818_n_estimators.yaml | 33 + .../cfg_ml_rf_146818_subsample.yaml | 33 + .../cfg_ml_rf_146821_n_estimators.yaml | 33 + .../cfg_ml_rf_146821_subsample.yaml | 33 + .../cfg_ml_rf_146822_n_estimators.yaml | 33 + .../cfg_ml_rf_146822_subsample.yaml | 33 + .../cfg_ml_rf_14965_n_estimators.yaml | 33 + .../cfg_ml_rf_14965_subsample.yaml | 33 + .../cfg_ml_rf_167119_n_estimators.yaml | 33 + .../cfg_ml_rf_167119_subsample.yaml | 33 + .../cfg_ml_rf_167120_n_estimators.yaml | 33 + .../cfg_ml_rf_167120_subsample.yaml | 33 + .../cfg_ml_rf_168911_n_estimators.yaml | 33 + .../cfg_ml_rf_168911_subsample.yaml | 33 + .../cfg_ml_rf_168912_n_estimators.yaml | 33 + .../cfg_ml_rf_168912_subsample.yaml | 33 + .../cfg_ml_rf_31_n_estimators.yaml | 33 + .../multifidelity/cfg_ml_rf_31_subsample.yaml | 33 + .../cfg_ml_rf_3917_n_estimators.yaml | 33 + .../cfg_ml_rf_3917_subsample.yaml | 33 + .../cfg_ml_rf_3_n_estimators.yaml | 33 + .../multifidelity/cfg_ml_rf_3_subsample.yaml | 33 + .../cfg_ml_rf_53_n_estimators.yaml | 33 + .../multifidelity/cfg_ml_rf_53_subsample.yaml | 33 + .../cfg_ml_rf_7592_n_estimators.yaml | 33 + .../cfg_ml_rf_7592_subsample.yaml | 33 + .../cfg_ml_rf_9952_n_estimators.yaml | 33 + .../cfg_ml_rf_9952_subsample.yaml | 33 + .../cfg_ml_rf_9977_n_estimators.yaml | 33 + .../cfg_ml_rf_9977_subsample.yaml | 33 + .../cfg_ml_rf_9981_n_estimators.yaml | 33 + .../cfg_ml_rf_9981_subsample.yaml | 33 + .../cfg_ml_svm_10101_subsample.yaml | 33 + .../cfg_ml_svm_12_subsample.yaml | 33 + .../cfg_ml_svm_146212_subsample.yaml | 33 + .../cfg_ml_svm_146606_subsample.yaml | 33 + .../cfg_ml_svm_146818_subsample.yaml | 33 + .../cfg_ml_svm_146821_subsample.yaml | 33 + .../cfg_ml_svm_146822_subsample.yaml | 33 + .../cfg_ml_svm_14965_subsample.yaml | 33 + .../cfg_ml_svm_167119_subsample.yaml | 33 + .../cfg_ml_svm_167120_subsample.yaml | 33 + .../cfg_ml_svm_168911_subsample.yaml | 33 + .../cfg_ml_svm_168912_subsample.yaml | 33 + .../cfg_ml_svm_31_subsample.yaml | 33 + .../cfg_ml_svm_3917_subsample.yaml | 33 + .../multifidelity/cfg_ml_svm_3_subsample.yaml | 33 + .../cfg_ml_svm_53_subsample.yaml | 33 + .../cfg_ml_svm_7592_subsample.yaml | 33 + .../cfg_ml_svm_9952_subsample.yaml | 33 + .../cfg_ml_svm_9977_subsample.yaml | 33 + .../cfg_ml_svm_9981_subsample.yaml | 33 + .../cfg_ml_xgboost_10101_n_estimators.yaml | 33 + .../cfg_ml_xgboost_10101_subsample.yaml | 33 + .../cfg_ml_xgboost_12_n_estimators.yaml | 33 + .../cfg_ml_xgboost_12_subsample.yaml | 33 + .../cfg_ml_xgboost_146212_n_estimators.yaml | 33 + .../cfg_ml_xgboost_146212_subsample.yaml | 33 + .../cfg_ml_xgboost_146606_n_estimators.yaml | 33 + .../cfg_ml_xgboost_146606_subsample.yaml | 33 + .../cfg_ml_xgboost_146818_n_estimators.yaml | 33 + .../cfg_ml_xgboost_146818_subsample.yaml | 33 + .../cfg_ml_xgboost_146821_n_estimators.yaml | 33 + .../cfg_ml_xgboost_146821_subsample.yaml | 33 + .../cfg_ml_xgboost_146822_n_estimators.yaml | 33 + .../cfg_ml_xgboost_146822_subsample.yaml | 33 + .../cfg_ml_xgboost_14965_n_estimators.yaml | 33 + .../cfg_ml_xgboost_14965_subsample.yaml | 33 + .../cfg_ml_xgboost_167119_n_estimators.yaml | 33 + .../cfg_ml_xgboost_167119_subsample.yaml | 33 + .../cfg_ml_xgboost_167120_n_estimators.yaml | 33 + .../cfg_ml_xgboost_167120_subsample.yaml | 33 + .../cfg_ml_xgboost_168911_n_estimators.yaml | 33 + .../cfg_ml_xgboost_168911_subsample.yaml | 33 + .../cfg_ml_xgboost_168912_n_estimators.yaml | 33 + .../cfg_ml_xgboost_168912_subsample.yaml | 33 + .../cfg_ml_xgboost_31_n_estimators.yaml | 33 + .../cfg_ml_xgboost_31_subsample.yaml | 33 + .../cfg_ml_xgboost_3917_n_estimators.yaml | 33 + .../cfg_ml_xgboost_3917_subsample.yaml | 33 + .../cfg_ml_xgboost_3_n_estimators.yaml | 33 + .../cfg_ml_xgboost_3_subsample.yaml | 33 + .../cfg_ml_xgboost_53_n_estimators.yaml | 33 + .../cfg_ml_xgboost_53_subsample.yaml | 33 + .../cfg_ml_xgboost_7592_n_estimators.yaml | 33 + .../cfg_ml_xgboost_7592_subsample.yaml | 33 + .../cfg_ml_xgboost_9952_n_estimators.yaml | 33 + .../cfg_ml_xgboost_9952_subsample.yaml | 33 + .../cfg_ml_xgboost_9977_n_estimators.yaml | 33 + .../cfg_ml_xgboost_9977_subsample.yaml | 33 + .../cfg_ml_xgboost_9981_n_estimators.yaml | 33 + .../cfg_ml_xgboost_9981_subsample.yaml | 33 + .../MO/pd1/cifar100_wideresnet_2048.yaml | 40 + .../MFPBench/MO/pd1/imagenet_resnet_512.yaml | 40 + .../MO/pd1/lm1b_transformer_2048.yaml | 40 + .../MO/pd1/translatewmt_xformer_64.yaml | 40 + .../problem/MFPBench/SO/mfh/mfh3_bad.yaml | 39 + .../problem/MFPBench/SO/mfh/mfh3_good.yaml | 39 + .../MFPBench/SO/mfh/mfh3_moderate.yaml | 39 + .../MFPBench/SO/mfh/mfh3_terrible.yaml | 39 + .../problem/MFPBench/SO/mfh/mfh6_bad.yaml | 39 + .../problem/MFPBench/SO/mfh/mfh6_good.yaml | 39 + .../MFPBench/SO/mfh/mfh6_moderate.yaml | 39 + .../MFPBench/SO/mfh/mfh6_terrible.yaml | 39 + .../SO/pd1/cifar100_wideresnet_2048.yaml | 38 + .../MFPBench/SO/pd1/imagenet_resnet_512.yaml | 38 + .../SO/pd1/lm1b_transformer_2048.yaml | 38 + .../SO/pd1/translatewmt_xformer_64.yaml | 38 + carps/configs/problem/Pymoo/MO/kursawe.yaml | 35 + carps/configs/problem/Pymoo/MO/omnitest.yaml | 35 + carps/configs/problem/Pymoo/MO/sympart.yaml | 35 + .../problem/Pymoo/MO/sympart_rotated.yaml | 35 + carps/configs/problem/Pymoo/MO/zdt1.yaml | 35 + carps/configs/problem/Pymoo/MO/zdt2.yaml | 35 + carps/configs/problem/Pymoo/MO/zdt3.yaml | 35 + carps/configs/problem/Pymoo/MO/zdt4.yaml | 35 + carps/configs/problem/Pymoo/MO/zdt5.yaml | 35 + carps/configs/problem/Pymoo/MO/zdt6.yaml | 35 + .../YAHPO/MO/cfg_iaml_glmnet_1067.yaml | 36 + .../YAHPO/MO/cfg_iaml_glmnet_1489.yaml | 36 + .../YAHPO/MO/cfg_iaml_ranger_1067.yaml | 38 + .../YAHPO/MO/cfg_iaml_ranger_1489.yaml | 38 + .../problem/YAHPO/MO/cfg_iaml_super_1067.yaml | 38 + .../problem/YAHPO/MO/cfg_iaml_super_1489.yaml | 38 + .../YAHPO/MO/cfg_iaml_xgboost_1489.yaml | 40 + .../YAHPO/MO/cfg_iaml_xgboost_40981.yaml | 40 + .../problem/YAHPO/MO/cfg_lcbench_167152.yaml | 36 + .../problem/YAHPO/MO/cfg_lcbench_167185.yaml | 36 + .../problem/YAHPO/MO/cfg_lcbench_189873.yaml | 36 + .../problem/YAHPO/MO/cfg_rbv2_ranger_375.yaml | 36 + .../YAHPO/MO/cfg_rbv2_ranger_40979.yaml | 36 + .../problem/YAHPO/MO/cfg_rbv2_ranger_6.yaml | 36 + .../problem/YAHPO/MO/cfg_rbv2_rpart_1476.yaml | 36 + .../YAHPO/MO/cfg_rbv2_rpart_40499.yaml | 36 + .../YAHPO/MO/cfg_rbv2_rpart_41163.yaml | 36 + .../problem/YAHPO/MO/cfg_rbv2_super_1053.yaml | 36 + .../problem/YAHPO/MO/cfg_rbv2_super_1457.yaml | 36 + .../problem/YAHPO/MO/cfg_rbv2_super_6.yaml | 36 + .../problem/YAHPO/MO/cfg_rbv2_xgboost_12.yaml | 36 + .../YAHPO/MO/cfg_rbv2_xgboost_182.yaml | 36 + .../problem/YAHPO/MO/cfg_rbv2_xgboost_28.yaml | 36 + .../cfg_iaml_glmnet_1067_trainsize_mf.yaml | 36 + .../cfg_iaml_glmnet_1489_trainsize_mf.yaml | 36 + .../cfg_iaml_ranger_1067_trainsize_mf.yaml | 38 + .../cfg_iaml_ranger_1489_trainsize_mf.yaml | 38 + .../cfg_iaml_super_1067_trainsize_mf.yaml | 38 + .../cfg_iaml_super_1489_trainsize_mf.yaml | 38 + .../cfg_iaml_xgboost_1489_trainsize_mf.yaml | 40 + .../cfg_iaml_xgboost_40981_trainsize_mf.yaml | 40 + .../MOMF/cfg_lcbench_167152_epoch_mf.yaml | 36 + .../MOMF/cfg_lcbench_167185_epoch_mf.yaml | 36 + .../MOMF/cfg_lcbench_189873_epoch_mf.yaml | 36 + .../MOMF/cfg_rbv2_ranger_375_repl_mf.yaml | 36 + .../cfg_rbv2_ranger_375_trainsize_mf.yaml | 36 + .../MOMF/cfg_rbv2_ranger_40979_repl_mf.yaml | 36 + .../cfg_rbv2_ranger_40979_trainsize_mf.yaml | 36 + .../YAHPO/MOMF/cfg_rbv2_ranger_6_repl_mf.yaml | 36 + .../MOMF/cfg_rbv2_ranger_6_trainsize_mf.yaml | 36 + .../MOMF/cfg_rbv2_rpart_1476_repl_mf.yaml | 36 + .../cfg_rbv2_rpart_1476_trainsize_mf.yaml | 36 + .../MOMF/cfg_rbv2_rpart_40499_repl_mf.yaml | 36 + .../cfg_rbv2_rpart_40499_trainsize_mf.yaml | 36 + .../MOMF/cfg_rbv2_rpart_41163_repl_mf.yaml | 36 + .../cfg_rbv2_rpart_41163_trainsize_mf.yaml | 36 + .../MOMF/cfg_rbv2_super_1053_repl_mf.yaml | 36 + .../cfg_rbv2_super_1053_trainsize_mf.yaml | 36 + .../MOMF/cfg_rbv2_super_1457_repl_mf.yaml | 36 + .../cfg_rbv2_super_1457_trainsize_mf.yaml | 36 + .../YAHPO/MOMF/cfg_rbv2_super_6_repl_mf.yaml | 36 + .../MOMF/cfg_rbv2_super_6_trainsize_mf.yaml | 36 + .../MOMF/cfg_rbv2_xgboost_12_repl_mf.yaml | 36 + .../cfg_rbv2_xgboost_12_trainsize_mf.yaml | 36 + .../MOMF/cfg_rbv2_xgboost_182_repl_mf.yaml | 36 + .../cfg_rbv2_xgboost_182_trainsize_mf.yaml | 36 + .../MOMF/cfg_rbv2_xgboost_28_repl_mf.yaml | 36 + .../cfg_rbv2_xgboost_28_trainsize_mf.yaml | 36 + .../problem/YAHPO/SO/cfg_lcbench_167168.yaml | 34 + .../problem/YAHPO/SO/cfg_lcbench_189873.yaml | 34 + .../problem/YAHPO/SO/cfg_lcbench_189906.yaml | 34 + .../problem/YAHPO/SO/cfg_nb301_CIFAR10.yaml | 34 + .../problem/YAHPO/SO/cfg_rbv2_glmnet_375.yaml | 34 + .../problem/YAHPO/SO/cfg_rbv2_glmnet_458.yaml | 34 + .../problem/YAHPO/SO/cfg_rbv2_ranger_16.yaml | 34 + .../problem/YAHPO/SO/cfg_rbv2_ranger_42.yaml | 34 + .../problem/YAHPO/SO/cfg_rbv2_rpart_14.yaml | 34 + .../YAHPO/SO/cfg_rbv2_rpart_40499.yaml | 34 + .../problem/YAHPO/SO/cfg_rbv2_super_1053.yaml | 34 + .../problem/YAHPO/SO/cfg_rbv2_super_1063.yaml | 34 + .../problem/YAHPO/SO/cfg_rbv2_super_1457.yaml | 34 + .../problem/YAHPO/SO/cfg_rbv2_super_1468.yaml | 34 + .../problem/YAHPO/SO/cfg_rbv2_super_1479.yaml | 34 + .../problem/YAHPO/SO/cfg_rbv2_super_15.yaml | 34 + .../problem/YAHPO/SO/cfg_rbv2_xgboost_12.yaml | 34 + .../YAHPO/SO/cfg_rbv2_xgboost_1501.yaml | 34 + .../problem/YAHPO/SO/cfg_rbv2_xgboost_16.yaml | 34 + .../YAHPO/SO/cfg_rbv2_xgboost_40499.yaml | 34 + .../cfg_fcnet_fcnet_naval_propulsion.yaml | 33 + ...fcnet_fcnet_parkinsons_telemonitoring.yaml | 33 + .../cfg_fcnet_fcnet_protein_structure.yaml | 33 + .../cfg_fcnet_fcnet_slice_localization.yaml | 33 + .../YAHPO/blackbox/cfg_iaml_glmnet_1067.yaml | 33 + .../YAHPO/blackbox/cfg_iaml_glmnet_1489.yaml | 33 + .../YAHPO/blackbox/cfg_iaml_glmnet_40981.yaml | 33 + .../YAHPO/blackbox/cfg_iaml_glmnet_41146.yaml | 33 + .../YAHPO/blackbox/cfg_iaml_ranger_1067.yaml | 33 + .../YAHPO/blackbox/cfg_iaml_ranger_1489.yaml | 33 + .../YAHPO/blackbox/cfg_iaml_ranger_40981.yaml | 33 + .../YAHPO/blackbox/cfg_iaml_ranger_41146.yaml | 33 + .../YAHPO/blackbox/cfg_iaml_rpart_1067.yaml | 33 + .../YAHPO/blackbox/cfg_iaml_rpart_1489.yaml | 33 + .../YAHPO/blackbox/cfg_iaml_rpart_40981.yaml | 33 + .../YAHPO/blackbox/cfg_iaml_rpart_41146.yaml | 33 + .../YAHPO/blackbox/cfg_iaml_super_1067.yaml | 33 + .../YAHPO/blackbox/cfg_iaml_super_1489.yaml | 33 + .../YAHPO/blackbox/cfg_iaml_super_40981.yaml | 33 + .../YAHPO/blackbox/cfg_iaml_super_41146.yaml | 33 + .../YAHPO/blackbox/cfg_iaml_xgboost_1067.yaml | 33 + .../YAHPO/blackbox/cfg_iaml_xgboost_1489.yaml | 33 + .../blackbox/cfg_iaml_xgboost_40981.yaml | 33 + .../blackbox/cfg_iaml_xgboost_41146.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_126025.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_126026.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_126029.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_146212.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_167104.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_167149.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_167152.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_167161.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_167168.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_167181.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_167184.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_167185.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_167190.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_167200.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_167201.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_168329.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_168330.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_168331.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_168335.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_168868.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_168908.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_168910.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_189354.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_189862.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_189865.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_189866.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_189873.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_189905.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_189906.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_189908.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_189909.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_34539.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_3945.yaml | 33 + .../YAHPO/blackbox/cfg_lcbench_7593.yaml | 33 + .../YAHPO/blackbox/cfg_nb301_CIFAR10.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1040.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1049.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1050.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1053.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1056.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1063.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1067.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1068.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_11.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1111.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_12.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1220.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_14.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1457.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1461.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1462.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1464.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1468.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1475.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1476.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1478.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1479.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1480.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1485.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1486.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1487.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1489.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1493.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1494.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1497.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_15.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1501.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_151.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1510.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1515.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_1590.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_16.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_18.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_181.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_182.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_188.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_22.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_23.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_23381.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_23512.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_23517.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_24.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_28.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_29.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_3.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_300.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_307.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_31.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_312.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_32.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_334.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_37.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_375.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_377.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_38.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40496.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40498.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40499.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40536.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40668.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40670.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40685.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40701.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40900.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40923.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40927.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40966.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40975.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40978.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40979.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40981.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40982.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40983.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40984.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40994.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_40996.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41027.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41138.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41142.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41143.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41146.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41150.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41156.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41157.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41159.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41161.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41162.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41163.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41164.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41165.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41166.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41168.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41169.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41212.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41216.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_41278.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_4134.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_4154.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_42.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_44.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_4534.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_4538.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_4541.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_458.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_46.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_469.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_470.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_50.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_54.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_554.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_6.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_60.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_aknn_6332.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1040.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1049.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1050.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1053.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1056.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1063.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1067.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1068.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_11.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1111.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_12.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1220.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_14.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1457.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1461.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1462.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1464.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1468.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1475.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1476.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1478.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1479.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1480.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1485.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1486.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1487.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1489.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1493.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1494.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1497.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_15.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1501.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_151.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1510.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1515.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_1590.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_16.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_18.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_181.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_182.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_188.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_22.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_23.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_23381.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_23512.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_23517.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_24.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_28.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_29.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_3.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_300.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_307.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_31.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_312.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_32.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_334.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_37.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_375.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_377.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_38.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_40496.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_40498.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_40499.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_40536.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_40668.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_40670.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_40685.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_40701.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_40900.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_40966.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_40975.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_40978.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_40979.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_40981.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_40982.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_40983.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_40984.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_40994.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_41027.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_41138.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_41142.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_41143.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_41146.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_41150.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_41156.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_41157.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_41159.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_41161.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_41162.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_41163.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_41164.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_41166.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_41168.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_41169.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_41212.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_41216.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_41278.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_4134.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_4135.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_4154.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_42.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_44.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_4534.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_4538.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_4541.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_458.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_46.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_469.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_470.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_50.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_54.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_554.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_6.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_60.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_glmnet_6332.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1040.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1049.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1050.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1053.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1056.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1063.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1067.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1068.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_11.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1111.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_12.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1220.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_14.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1457.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1461.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1462.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1464.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1468.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1475.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1476.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1478.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1479.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1480.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1485.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1486.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1487.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1489.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1493.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1494.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1497.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_15.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1501.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_151.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1510.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1515.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_1590.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_16.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_18.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_181.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_182.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_188.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_22.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_23.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_23381.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_23512.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_23517.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_24.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_28.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_29.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_3.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_300.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_307.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_31.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_312.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_32.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_334.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_37.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_375.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_377.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_38.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40496.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40498.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40499.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40536.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40668.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40670.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40685.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40701.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40900.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40923.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40927.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40966.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40975.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40978.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40979.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40981.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40982.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40983.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40984.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40994.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_40996.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41027.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41138.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41142.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41143.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41146.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41150.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41156.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41157.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41159.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41161.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41162.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41163.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41164.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41165.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41166.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41168.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41169.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41212.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41216.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_41278.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_4134.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_4135.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_4154.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_42.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_44.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_4534.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_4538.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_4541.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_458.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_46.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_469.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_470.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_50.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_54.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_554.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_6.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_60.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_ranger_6332.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1040.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1049.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1050.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1053.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1056.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1063.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1067.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1068.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_11.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1111.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_12.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1220.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_14.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1457.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1461.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1462.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1464.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1468.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1475.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1476.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1478.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1479.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1480.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1485.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1486.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1487.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1489.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1493.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1494.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1497.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_15.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1501.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_151.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1510.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1515.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_1590.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_16.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_18.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_181.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_182.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_188.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_22.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_23.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_23381.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_23512.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_23517.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_24.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_28.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_29.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_3.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_300.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_307.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_31.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_312.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_32.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_334.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_37.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_375.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_377.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_38.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40496.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40498.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40499.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40536.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40668.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40670.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40685.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40701.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40900.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40923.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40927.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40966.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40975.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40978.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40979.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40981.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40982.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40983.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40984.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40994.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_40996.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_41027.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_41138.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_41142.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_41143.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_41146.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_41150.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_41156.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_41157.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_41159.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_41161.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_41162.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_41163.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_41164.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_41165.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_41166.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_41168.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_41169.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_41212.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_4134.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_4135.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_4154.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_42.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_44.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_4534.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_4538.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_4541.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_458.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_46.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_469.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_470.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_50.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_54.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_554.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_6.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_60.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_rpart_6332.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1040.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1049.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1050.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1053.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1056.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1063.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1067.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1068.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_11.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1111.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_12.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1220.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_14.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1457.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1461.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1462.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1464.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1468.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1475.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1476.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1478.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1479.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1480.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1485.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1486.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1487.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1489.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1493.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1494.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1497.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_15.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1501.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_151.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1510.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1515.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_1590.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_16.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_18.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_181.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_182.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_188.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_22.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_23.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_23381.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_24.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_28.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_29.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_3.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_300.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_307.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_31.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_312.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_32.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_334.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_37.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_375.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_377.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_38.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_40496.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_40498.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_40499.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_40536.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_40668.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_40670.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_40685.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_40701.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_40900.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_40966.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_40975.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_40978.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_40979.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_40981.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_40982.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_40983.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_40984.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_40994.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_41027.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_41138.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_41142.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_41143.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_41146.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_41156.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_41157.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_41162.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_41163.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_41164.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_41169.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_41212.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_4134.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_4154.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_42.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_44.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_4534.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_4538.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_458.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_46.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_469.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_470.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_50.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_54.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_6.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_60.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_super_6332.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1040.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1049.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1050.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1053.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1056.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1063.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1067.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1068.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_11.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1111.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_12.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1220.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_14.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1457.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1461.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1462.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1464.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1468.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1475.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1476.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1478.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1479.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1480.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1485.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1486.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1487.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1489.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1493.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1494.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1497.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_15.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1501.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_151.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1510.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1515.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_1590.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_16.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_18.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_181.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_182.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_188.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_22.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_23.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_23381.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_24.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_28.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_29.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_3.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_300.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_307.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_31.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_312.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_32.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_334.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_37.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_375.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_377.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_38.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_40496.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_40498.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_40499.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_40536.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_40668.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_40670.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_40685.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_40701.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_40900.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_40966.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_40975.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_40978.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_40979.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_40981.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_40982.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_40983.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_40984.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_40994.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_41027.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_41138.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_41142.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_41143.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_41146.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_41156.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_41157.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_41162.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_41163.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_41164.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_41169.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_41212.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_41216.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_41278.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_4134.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_4135.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_4154.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_42.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_44.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_4534.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_4538.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_458.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_46.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_469.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_470.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_50.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_54.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_6.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_60.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_svm_6332.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1040.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1049.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1050.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1053.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1056.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1063.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1067.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1068.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_11.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1111.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_12.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1220.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_14.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1457.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1461.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1462.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1464.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1468.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1475.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1476.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1478.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1479.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1480.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1485.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1486.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1487.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1489.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1493.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1494.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1497.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_15.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1501.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_151.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1510.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1515.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_1590.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_16.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_18.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_181.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_182.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_188.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_22.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_23.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_23381.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_23512.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_23517.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_24.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_28.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_29.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_3.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_300.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_307.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_31.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_312.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_32.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_334.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_37.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_375.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_377.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_38.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40496.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40498.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40499.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40536.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40668.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40670.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40685.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40701.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40900.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40923.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40927.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40966.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40975.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40978.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40979.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40981.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40982.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40983.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40984.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40994.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_40996.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41027.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41138.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41142.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41143.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41146.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41150.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41156.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41157.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41159.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41161.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41162.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41163.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41164.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41165.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41166.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41168.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41169.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41212.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41216.yaml | 33 + .../blackbox/cfg_rbv2_xgboost_41278.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_4134.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_4135.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_4154.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_42.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_44.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_4534.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_4538.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_4541.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_458.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_46.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_469.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_470.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_50.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_54.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_554.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_6.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_60.yaml | 33 + .../YAHPO/blackbox/cfg_rbv2_xgboost_6332.yaml | 33 + .../SO/cfg_lcbench_167168_epoch_mf.yaml | 34 + .../SO/cfg_lcbench_189873_epoch_mf.yaml | 34 + .../SO/cfg_lcbench_189906_epoch_mf.yaml | 34 + .../SO/cfg_nb301_CIFAR10_epoch_mf.yaml | 34 + .../SO/cfg_rbv2_glmnet_375_repl_mf.yaml | 34 + .../SO/cfg_rbv2_glmnet_375_trainsize_mf.yaml | 34 + .../SO/cfg_rbv2_glmnet_458_repl_mf.yaml | 34 + .../SO/cfg_rbv2_glmnet_458_trainsize_mf.yaml | 34 + .../SO/cfg_rbv2_ranger_16_repl_mf.yaml | 34 + .../SO/cfg_rbv2_ranger_16_trainsize_mf.yaml | 34 + .../SO/cfg_rbv2_ranger_42_repl_mf.yaml | 34 + .../SO/cfg_rbv2_ranger_42_trainsize_mf.yaml | 34 + .../SO/cfg_rbv2_rpart_14_repl_mf.yaml | 34 + .../SO/cfg_rbv2_rpart_14_trainsize_mf.yaml | 34 + .../SO/cfg_rbv2_rpart_40499_repl_mf.yaml | 34 + .../SO/cfg_rbv2_rpart_40499_trainsize_mf.yaml | 34 + .../SO/cfg_rbv2_super_1053_repl_mf.yaml | 34 + .../SO/cfg_rbv2_super_1053_trainsize_mf.yaml | 34 + .../SO/cfg_rbv2_super_1063_repl_mf.yaml | 34 + .../SO/cfg_rbv2_super_1063_trainsize_mf.yaml | 34 + .../SO/cfg_rbv2_super_1457_repl_mf.yaml | 34 + .../SO/cfg_rbv2_super_1457_trainsize_mf.yaml | 34 + .../SO/cfg_rbv2_super_1468_repl_mf.yaml | 34 + .../SO/cfg_rbv2_super_1468_trainsize_mf.yaml | 34 + .../SO/cfg_rbv2_super_1479_repl_mf.yaml | 34 + .../SO/cfg_rbv2_super_1479_trainsize_mf.yaml | 34 + .../SO/cfg_rbv2_super_15_repl_mf.yaml | 34 + .../SO/cfg_rbv2_super_15_trainsize_mf.yaml | 34 + .../SO/cfg_rbv2_xgboost_12_repl_mf.yaml | 34 + .../SO/cfg_rbv2_xgboost_12_trainsize_mf.yaml | 34 + .../SO/cfg_rbv2_xgboost_1501_repl_mf.yaml | 34 + .../cfg_rbv2_xgboost_1501_trainsize_mf.yaml | 34 + .../SO/cfg_rbv2_xgboost_16_repl_mf.yaml | 34 + .../SO/cfg_rbv2_xgboost_16_trainsize_mf.yaml | 34 + .../SO/cfg_rbv2_xgboost_40499_repl_mf.yaml | 34 + .../cfg_rbv2_xgboost_40499_trainsize_mf.yaml | 34 + ...fg_fcnet_fcnet_naval_propulsion_epoch.yaml | 33 + ...fcnet_parkinsons_telemonitoring_epoch.yaml | 33 + ...g_fcnet_fcnet_protein_structure_epoch.yaml | 33 + ..._fcnet_fcnet_slice_localization_epoch.yaml | 33 + .../all/cfg_iaml_glmnet_1067_trainsize.yaml | 33 + .../all/cfg_iaml_glmnet_1489_trainsize.yaml | 33 + .../all/cfg_iaml_glmnet_40981_trainsize.yaml | 33 + .../all/cfg_iaml_glmnet_41146_trainsize.yaml | 33 + .../all/cfg_iaml_ranger_1067_trainsize.yaml | 33 + .../all/cfg_iaml_ranger_1489_trainsize.yaml | 33 + .../all/cfg_iaml_ranger_40981_trainsize.yaml | 33 + .../all/cfg_iaml_ranger_41146_trainsize.yaml | 33 + .../all/cfg_iaml_rpart_1067_trainsize.yaml | 33 + .../all/cfg_iaml_rpart_1489_trainsize.yaml | 33 + .../all/cfg_iaml_rpart_40981_trainsize.yaml | 33 + .../all/cfg_iaml_rpart_41146_trainsize.yaml | 33 + .../all/cfg_iaml_super_1067_trainsize.yaml | 33 + .../all/cfg_iaml_super_1489_trainsize.yaml | 33 + .../all/cfg_iaml_super_40981_trainsize.yaml | 33 + .../all/cfg_iaml_super_41146_trainsize.yaml | 33 + .../all/cfg_iaml_xgboost_1067_trainsize.yaml | 33 + .../all/cfg_iaml_xgboost_1489_trainsize.yaml | 33 + .../all/cfg_iaml_xgboost_40981_trainsize.yaml | 33 + .../all/cfg_iaml_xgboost_41146_trainsize.yaml | 33 + .../all/cfg_lcbench_126025_epoch.yaml | 33 + .../all/cfg_lcbench_126026_epoch.yaml | 33 + .../all/cfg_lcbench_126029_epoch.yaml | 33 + .../all/cfg_lcbench_146212_epoch.yaml | 33 + .../all/cfg_lcbench_167104_epoch.yaml | 33 + .../all/cfg_lcbench_167149_epoch.yaml | 33 + .../all/cfg_lcbench_167152_epoch.yaml | 33 + .../all/cfg_lcbench_167161_epoch.yaml | 33 + .../all/cfg_lcbench_167168_epoch.yaml | 33 + .../all/cfg_lcbench_167181_epoch.yaml | 33 + .../all/cfg_lcbench_167184_epoch.yaml | 33 + .../all/cfg_lcbench_167185_epoch.yaml | 33 + .../all/cfg_lcbench_167190_epoch.yaml | 33 + .../all/cfg_lcbench_167200_epoch.yaml | 33 + .../all/cfg_lcbench_167201_epoch.yaml | 33 + .../all/cfg_lcbench_168329_epoch.yaml | 33 + .../all/cfg_lcbench_168330_epoch.yaml | 33 + .../all/cfg_lcbench_168331_epoch.yaml | 33 + .../all/cfg_lcbench_168335_epoch.yaml | 33 + .../all/cfg_lcbench_168868_epoch.yaml | 33 + .../all/cfg_lcbench_168908_epoch.yaml | 33 + .../all/cfg_lcbench_168910_epoch.yaml | 33 + .../all/cfg_lcbench_189354_epoch.yaml | 33 + .../all/cfg_lcbench_189862_epoch.yaml | 33 + .../all/cfg_lcbench_189865_epoch.yaml | 33 + .../all/cfg_lcbench_189866_epoch.yaml | 33 + .../all/cfg_lcbench_189873_epoch.yaml | 33 + .../all/cfg_lcbench_189905_epoch.yaml | 33 + .../all/cfg_lcbench_189906_epoch.yaml | 33 + .../all/cfg_lcbench_189908_epoch.yaml | 33 + .../all/cfg_lcbench_189909_epoch.yaml | 33 + .../all/cfg_lcbench_34539_epoch.yaml | 33 + .../all/cfg_lcbench_3945_epoch.yaml | 33 + .../all/cfg_lcbench_7593_epoch.yaml | 33 + .../all/cfg_nb301_CIFAR10_epoch.yaml | 33 + .../all/cfg_rbv2_aknn_1040_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1040_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1049_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1049_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1050_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1050_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1053_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1053_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1056_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1056_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1063_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1063_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1067_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1067_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1068_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1068_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1111_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1111_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_11_repl.yaml | 33 + .../all/cfg_rbv2_aknn_11_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1220_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1220_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_12_repl.yaml | 33 + .../all/cfg_rbv2_aknn_12_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1457_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1457_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1461_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1461_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1462_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1462_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1464_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1464_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1468_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1468_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1475_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1475_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1476_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1476_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1478_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1478_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1479_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1479_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1480_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1480_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1485_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1485_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1486_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1486_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1487_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1487_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1489_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1489_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1493_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1493_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1494_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1494_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1497_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1497_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_14_repl.yaml | 33 + .../all/cfg_rbv2_aknn_14_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1501_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1501_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1510_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1510_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1515_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1515_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_151_repl.yaml | 33 + .../all/cfg_rbv2_aknn_151_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_1590_repl.yaml | 33 + .../all/cfg_rbv2_aknn_1590_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_15_repl.yaml | 33 + .../all/cfg_rbv2_aknn_15_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_16_repl.yaml | 33 + .../all/cfg_rbv2_aknn_16_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_181_repl.yaml | 33 + .../all/cfg_rbv2_aknn_181_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_182_repl.yaml | 33 + .../all/cfg_rbv2_aknn_182_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_188_repl.yaml | 33 + .../all/cfg_rbv2_aknn_188_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_18_repl.yaml | 33 + .../all/cfg_rbv2_aknn_18_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_22_repl.yaml | 33 + .../all/cfg_rbv2_aknn_22_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_23381_repl.yaml | 33 + .../all/cfg_rbv2_aknn_23381_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_23512_repl.yaml | 33 + .../all/cfg_rbv2_aknn_23512_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_23517_repl.yaml | 33 + .../all/cfg_rbv2_aknn_23517_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_23_repl.yaml | 33 + .../all/cfg_rbv2_aknn_23_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_24_repl.yaml | 33 + .../all/cfg_rbv2_aknn_24_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_28_repl.yaml | 33 + .../all/cfg_rbv2_aknn_28_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_29_repl.yaml | 33 + .../all/cfg_rbv2_aknn_29_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_300_repl.yaml | 33 + .../all/cfg_rbv2_aknn_300_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_307_repl.yaml | 33 + .../all/cfg_rbv2_aknn_307_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_312_repl.yaml | 33 + .../all/cfg_rbv2_aknn_312_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_31_repl.yaml | 33 + .../all/cfg_rbv2_aknn_31_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_32_repl.yaml | 33 + .../all/cfg_rbv2_aknn_32_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_334_repl.yaml | 33 + .../all/cfg_rbv2_aknn_334_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_375_repl.yaml | 33 + .../all/cfg_rbv2_aknn_375_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_377_repl.yaml | 33 + .../all/cfg_rbv2_aknn_377_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_37_repl.yaml | 33 + .../all/cfg_rbv2_aknn_37_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_38_repl.yaml | 33 + .../all/cfg_rbv2_aknn_38_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_3_repl.yaml | 33 + .../all/cfg_rbv2_aknn_3_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40496_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40496_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40498_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40498_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40499_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40499_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40536_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40536_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40668_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40668_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40670_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40670_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40685_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40685_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40701_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40701_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40900_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40900_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40923_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40923_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40927_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40927_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40966_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40966_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40975_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40975_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40978_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40978_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40979_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40979_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40981_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40981_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40982_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40982_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40983_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40983_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40984_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40984_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40994_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40994_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_40996_repl.yaml | 33 + .../all/cfg_rbv2_aknn_40996_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41027_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41027_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41138_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41138_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41142_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41142_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41143_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41143_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41146_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41146_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41150_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41150_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41156_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41156_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41157_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41157_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41159_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41159_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41161_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41161_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41162_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41162_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41163_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41163_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41164_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41164_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41165_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41165_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41166_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41166_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41168_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41168_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41169_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41169_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41212_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41212_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41216_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41216_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_41278_repl.yaml | 33 + .../all/cfg_rbv2_aknn_41278_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_4134_repl.yaml | 33 + .../all/cfg_rbv2_aknn_4134_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_4154_repl.yaml | 33 + .../all/cfg_rbv2_aknn_4154_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_42_repl.yaml | 33 + .../all/cfg_rbv2_aknn_42_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_44_repl.yaml | 33 + .../all/cfg_rbv2_aknn_44_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_4534_repl.yaml | 33 + .../all/cfg_rbv2_aknn_4534_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_4538_repl.yaml | 33 + .../all/cfg_rbv2_aknn_4538_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_4541_repl.yaml | 33 + .../all/cfg_rbv2_aknn_4541_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_458_repl.yaml | 33 + .../all/cfg_rbv2_aknn_458_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_469_repl.yaml | 33 + .../all/cfg_rbv2_aknn_469_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_46_repl.yaml | 33 + .../all/cfg_rbv2_aknn_46_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_470_repl.yaml | 33 + .../all/cfg_rbv2_aknn_470_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_50_repl.yaml | 33 + .../all/cfg_rbv2_aknn_50_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_54_repl.yaml | 33 + .../all/cfg_rbv2_aknn_54_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_554_repl.yaml | 33 + .../all/cfg_rbv2_aknn_554_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_60_repl.yaml | 33 + .../all/cfg_rbv2_aknn_60_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_6332_repl.yaml | 33 + .../all/cfg_rbv2_aknn_6332_trainsize.yaml | 33 + .../all/cfg_rbv2_aknn_6_repl.yaml | 33 + .../all/cfg_rbv2_aknn_6_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1040_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1040_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1049_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1049_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1050_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1050_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1053_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1053_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1056_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1056_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1063_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1063_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1067_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1067_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1068_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1068_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1111_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1111_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_11_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_11_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1220_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1220_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_12_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_12_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1457_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1457_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1461_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1461_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1462_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1462_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1464_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1464_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1468_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1468_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1475_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1475_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1476_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1476_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1478_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1478_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1479_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1479_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1480_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1480_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1485_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1485_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1486_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1486_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1487_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1487_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1489_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1489_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1493_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1493_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1494_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1494_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1497_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1497_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_14_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_14_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1501_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1501_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1510_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1510_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1515_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1515_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_151_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_151_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_1590_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_1590_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_15_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_15_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_16_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_16_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_181_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_181_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_182_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_182_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_188_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_188_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_18_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_18_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_22_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_22_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_23381_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_23381_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_23512_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_23512_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_23517_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_23517_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_23_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_23_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_24_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_24_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_28_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_28_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_29_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_29_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_300_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_300_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_307_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_307_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_312_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_312_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_31_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_31_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_32_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_32_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_334_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_334_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_375_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_375_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_377_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_377_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_37_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_37_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_38_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_38_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_3_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_3_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_40496_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_40496_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_40498_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_40498_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_40499_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_40499_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_40536_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_40536_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_40668_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_40668_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_40670_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_40670_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_40685_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_40685_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_40701_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_40701_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_40900_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_40900_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_40966_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_40966_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_40975_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_40975_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_40978_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_40978_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_40979_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_40979_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_40981_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_40981_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_40982_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_40982_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_40983_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_40983_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_40984_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_40984_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_40994_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_40994_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_41027_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_41027_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_41138_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_41138_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_41142_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_41142_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_41143_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_41143_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_41146_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_41146_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_41150_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_41150_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_41156_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_41156_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_41157_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_41157_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_41159_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_41159_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_41161_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_41161_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_41162_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_41162_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_41163_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_41163_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_41164_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_41164_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_41166_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_41166_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_41168_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_41168_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_41169_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_41169_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_41212_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_41212_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_41216_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_41216_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_41278_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_41278_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_4134_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_4134_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_4135_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_4135_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_4154_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_4154_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_42_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_42_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_44_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_44_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_4534_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_4534_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_4538_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_4538_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_4541_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_4541_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_458_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_458_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_469_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_469_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_46_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_46_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_470_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_470_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_50_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_50_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_54_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_54_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_554_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_554_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_60_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_60_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_6332_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_6332_trainsize.yaml | 33 + .../all/cfg_rbv2_glmnet_6_repl.yaml | 33 + .../all/cfg_rbv2_glmnet_6_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1040_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1040_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1049_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1049_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1050_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1050_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1053_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1053_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1056_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1056_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1063_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1063_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1067_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1067_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1068_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1068_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1111_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1111_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_11_repl.yaml | 33 + .../all/cfg_rbv2_ranger_11_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1220_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1220_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_12_repl.yaml | 33 + .../all/cfg_rbv2_ranger_12_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1457_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1457_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1461_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1461_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1462_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1462_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1464_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1464_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1468_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1468_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1475_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1475_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1476_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1476_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1478_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1478_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1479_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1479_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1480_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1480_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1485_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1485_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1486_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1486_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1487_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1487_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1489_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1489_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1493_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1493_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1494_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1494_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1497_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1497_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_14_repl.yaml | 33 + .../all/cfg_rbv2_ranger_14_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1501_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1501_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1510_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1510_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1515_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1515_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_151_repl.yaml | 33 + .../all/cfg_rbv2_ranger_151_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_1590_repl.yaml | 33 + .../all/cfg_rbv2_ranger_1590_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_15_repl.yaml | 33 + .../all/cfg_rbv2_ranger_15_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_16_repl.yaml | 33 + .../all/cfg_rbv2_ranger_16_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_181_repl.yaml | 33 + .../all/cfg_rbv2_ranger_181_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_182_repl.yaml | 33 + .../all/cfg_rbv2_ranger_182_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_188_repl.yaml | 33 + .../all/cfg_rbv2_ranger_188_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_18_repl.yaml | 33 + .../all/cfg_rbv2_ranger_18_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_22_repl.yaml | 33 + .../all/cfg_rbv2_ranger_22_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_23381_repl.yaml | 33 + .../all/cfg_rbv2_ranger_23381_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_23512_repl.yaml | 33 + .../all/cfg_rbv2_ranger_23512_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_23517_repl.yaml | 33 + .../all/cfg_rbv2_ranger_23517_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_23_repl.yaml | 33 + .../all/cfg_rbv2_ranger_23_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_24_repl.yaml | 33 + .../all/cfg_rbv2_ranger_24_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_28_repl.yaml | 33 + .../all/cfg_rbv2_ranger_28_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_29_repl.yaml | 33 + .../all/cfg_rbv2_ranger_29_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_300_repl.yaml | 33 + .../all/cfg_rbv2_ranger_300_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_307_repl.yaml | 33 + .../all/cfg_rbv2_ranger_307_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_312_repl.yaml | 33 + .../all/cfg_rbv2_ranger_312_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_31_repl.yaml | 33 + .../all/cfg_rbv2_ranger_31_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_32_repl.yaml | 33 + .../all/cfg_rbv2_ranger_32_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_334_repl.yaml | 33 + .../all/cfg_rbv2_ranger_334_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_375_repl.yaml | 33 + .../all/cfg_rbv2_ranger_375_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_377_repl.yaml | 33 + .../all/cfg_rbv2_ranger_377_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_37_repl.yaml | 33 + .../all/cfg_rbv2_ranger_37_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_38_repl.yaml | 33 + .../all/cfg_rbv2_ranger_38_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_3_repl.yaml | 33 + .../all/cfg_rbv2_ranger_3_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40496_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40496_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40498_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40498_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40499_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40499_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40536_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40536_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40668_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40668_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40670_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40670_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40685_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40685_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40701_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40701_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40900_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40900_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40923_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40923_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40927_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40927_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40966_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40966_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40975_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40975_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40978_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40978_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40979_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40979_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40981_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40981_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40982_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40982_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40983_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40983_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40984_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40984_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40994_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40994_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_40996_repl.yaml | 33 + .../all/cfg_rbv2_ranger_40996_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41027_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41027_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41138_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41138_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41142_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41142_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41143_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41143_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41146_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41146_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41150_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41150_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41156_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41156_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41157_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41157_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41159_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41159_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41161_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41161_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41162_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41162_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41163_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41163_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41164_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41164_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41165_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41165_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41166_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41166_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41168_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41168_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41169_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41169_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41212_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41212_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41216_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41216_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_41278_repl.yaml | 33 + .../all/cfg_rbv2_ranger_41278_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_4134_repl.yaml | 33 + .../all/cfg_rbv2_ranger_4134_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_4135_repl.yaml | 33 + .../all/cfg_rbv2_ranger_4135_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_4154_repl.yaml | 33 + .../all/cfg_rbv2_ranger_4154_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_42_repl.yaml | 33 + .../all/cfg_rbv2_ranger_42_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_44_repl.yaml | 33 + .../all/cfg_rbv2_ranger_44_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_4534_repl.yaml | 33 + .../all/cfg_rbv2_ranger_4534_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_4538_repl.yaml | 33 + .../all/cfg_rbv2_ranger_4538_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_4541_repl.yaml | 33 + .../all/cfg_rbv2_ranger_4541_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_458_repl.yaml | 33 + .../all/cfg_rbv2_ranger_458_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_469_repl.yaml | 33 + .../all/cfg_rbv2_ranger_469_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_46_repl.yaml | 33 + .../all/cfg_rbv2_ranger_46_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_470_repl.yaml | 33 + .../all/cfg_rbv2_ranger_470_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_50_repl.yaml | 33 + .../all/cfg_rbv2_ranger_50_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_54_repl.yaml | 33 + .../all/cfg_rbv2_ranger_54_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_554_repl.yaml | 33 + .../all/cfg_rbv2_ranger_554_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_60_repl.yaml | 33 + .../all/cfg_rbv2_ranger_60_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_6332_repl.yaml | 33 + .../all/cfg_rbv2_ranger_6332_trainsize.yaml | 33 + .../all/cfg_rbv2_ranger_6_repl.yaml | 33 + .../all/cfg_rbv2_ranger_6_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1040_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1040_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1049_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1049_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1050_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1050_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1053_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1053_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1056_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1056_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1063_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1063_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1067_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1067_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1068_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1068_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1111_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1111_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_11_repl.yaml | 33 + .../all/cfg_rbv2_rpart_11_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1220_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1220_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_12_repl.yaml | 33 + .../all/cfg_rbv2_rpart_12_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1457_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1457_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1461_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1461_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1462_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1462_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1464_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1464_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1468_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1468_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1475_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1475_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1476_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1476_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1478_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1478_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1479_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1479_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1480_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1480_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1485_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1485_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1486_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1486_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1487_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1487_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1489_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1489_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1493_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1493_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1494_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1494_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1497_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1497_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_14_repl.yaml | 33 + .../all/cfg_rbv2_rpart_14_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1501_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1501_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1510_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1510_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1515_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1515_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_151_repl.yaml | 33 + .../all/cfg_rbv2_rpart_151_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_1590_repl.yaml | 33 + .../all/cfg_rbv2_rpart_1590_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_15_repl.yaml | 33 + .../all/cfg_rbv2_rpart_15_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_16_repl.yaml | 33 + .../all/cfg_rbv2_rpart_16_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_181_repl.yaml | 33 + .../all/cfg_rbv2_rpart_181_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_182_repl.yaml | 33 + .../all/cfg_rbv2_rpart_182_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_188_repl.yaml | 33 + .../all/cfg_rbv2_rpart_188_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_18_repl.yaml | 33 + .../all/cfg_rbv2_rpart_18_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_22_repl.yaml | 33 + .../all/cfg_rbv2_rpart_22_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_23381_repl.yaml | 33 + .../all/cfg_rbv2_rpart_23381_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_23512_repl.yaml | 33 + .../all/cfg_rbv2_rpart_23512_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_23517_repl.yaml | 33 + .../all/cfg_rbv2_rpart_23517_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_23_repl.yaml | 33 + .../all/cfg_rbv2_rpart_23_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_24_repl.yaml | 33 + .../all/cfg_rbv2_rpart_24_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_28_repl.yaml | 33 + .../all/cfg_rbv2_rpart_28_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_29_repl.yaml | 33 + .../all/cfg_rbv2_rpart_29_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_300_repl.yaml | 33 + .../all/cfg_rbv2_rpart_300_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_307_repl.yaml | 33 + .../all/cfg_rbv2_rpart_307_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_312_repl.yaml | 33 + .../all/cfg_rbv2_rpart_312_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_31_repl.yaml | 33 + .../all/cfg_rbv2_rpart_31_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_32_repl.yaml | 33 + .../all/cfg_rbv2_rpart_32_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_334_repl.yaml | 33 + .../all/cfg_rbv2_rpart_334_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_375_repl.yaml | 33 + .../all/cfg_rbv2_rpart_375_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_377_repl.yaml | 33 + .../all/cfg_rbv2_rpart_377_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_37_repl.yaml | 33 + .../all/cfg_rbv2_rpart_37_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_38_repl.yaml | 33 + .../all/cfg_rbv2_rpart_38_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_3_repl.yaml | 33 + .../all/cfg_rbv2_rpart_3_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40496_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40496_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40498_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40498_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40499_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40499_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40536_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40536_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40668_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40668_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40670_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40670_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40685_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40685_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40701_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40701_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40900_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40900_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40923_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40923_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40927_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40927_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40966_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40966_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40975_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40975_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40978_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40978_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40979_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40979_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40981_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40981_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40982_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40982_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40983_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40983_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40984_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40984_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40994_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40994_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_40996_repl.yaml | 33 + .../all/cfg_rbv2_rpart_40996_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_41027_repl.yaml | 33 + .../all/cfg_rbv2_rpart_41027_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_41138_repl.yaml | 33 + .../all/cfg_rbv2_rpart_41138_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_41142_repl.yaml | 33 + .../all/cfg_rbv2_rpart_41142_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_41143_repl.yaml | 33 + .../all/cfg_rbv2_rpart_41143_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_41146_repl.yaml | 33 + .../all/cfg_rbv2_rpart_41146_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_41150_repl.yaml | 33 + .../all/cfg_rbv2_rpart_41150_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_41156_repl.yaml | 33 + .../all/cfg_rbv2_rpart_41156_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_41157_repl.yaml | 33 + .../all/cfg_rbv2_rpart_41157_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_41159_repl.yaml | 33 + .../all/cfg_rbv2_rpart_41159_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_41161_repl.yaml | 33 + .../all/cfg_rbv2_rpart_41161_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_41162_repl.yaml | 33 + .../all/cfg_rbv2_rpart_41162_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_41163_repl.yaml | 33 + .../all/cfg_rbv2_rpart_41163_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_41164_repl.yaml | 33 + .../all/cfg_rbv2_rpart_41164_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_41165_repl.yaml | 33 + .../all/cfg_rbv2_rpart_41165_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_41166_repl.yaml | 33 + .../all/cfg_rbv2_rpart_41166_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_41168_repl.yaml | 33 + .../all/cfg_rbv2_rpart_41168_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_41169_repl.yaml | 33 + .../all/cfg_rbv2_rpart_41169_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_41212_repl.yaml | 33 + .../all/cfg_rbv2_rpart_41212_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_4134_repl.yaml | 33 + .../all/cfg_rbv2_rpart_4134_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_4135_repl.yaml | 33 + .../all/cfg_rbv2_rpart_4135_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_4154_repl.yaml | 33 + .../all/cfg_rbv2_rpart_4154_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_42_repl.yaml | 33 + .../all/cfg_rbv2_rpart_42_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_44_repl.yaml | 33 + .../all/cfg_rbv2_rpart_44_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_4534_repl.yaml | 33 + .../all/cfg_rbv2_rpart_4534_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_4538_repl.yaml | 33 + .../all/cfg_rbv2_rpart_4538_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_4541_repl.yaml | 33 + .../all/cfg_rbv2_rpart_4541_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_458_repl.yaml | 33 + .../all/cfg_rbv2_rpart_458_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_469_repl.yaml | 33 + .../all/cfg_rbv2_rpart_469_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_46_repl.yaml | 33 + .../all/cfg_rbv2_rpart_46_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_470_repl.yaml | 33 + .../all/cfg_rbv2_rpart_470_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_50_repl.yaml | 33 + .../all/cfg_rbv2_rpart_50_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_54_repl.yaml | 33 + .../all/cfg_rbv2_rpart_54_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_554_repl.yaml | 33 + .../all/cfg_rbv2_rpart_554_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_60_repl.yaml | 33 + .../all/cfg_rbv2_rpart_60_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_6332_repl.yaml | 33 + .../all/cfg_rbv2_rpart_6332_trainsize.yaml | 33 + .../all/cfg_rbv2_rpart_6_repl.yaml | 33 + .../all/cfg_rbv2_rpart_6_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1040_repl.yaml | 33 + .../all/cfg_rbv2_super_1040_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1049_repl.yaml | 33 + .../all/cfg_rbv2_super_1049_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1050_repl.yaml | 33 + .../all/cfg_rbv2_super_1050_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1053_repl.yaml | 33 + .../all/cfg_rbv2_super_1053_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1056_repl.yaml | 33 + .../all/cfg_rbv2_super_1056_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1063_repl.yaml | 33 + .../all/cfg_rbv2_super_1063_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1067_repl.yaml | 33 + .../all/cfg_rbv2_super_1067_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1068_repl.yaml | 33 + .../all/cfg_rbv2_super_1068_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1111_repl.yaml | 33 + .../all/cfg_rbv2_super_1111_trainsize.yaml | 33 + .../all/cfg_rbv2_super_11_repl.yaml | 33 + .../all/cfg_rbv2_super_11_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1220_repl.yaml | 33 + .../all/cfg_rbv2_super_1220_trainsize.yaml | 33 + .../all/cfg_rbv2_super_12_repl.yaml | 33 + .../all/cfg_rbv2_super_12_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1457_repl.yaml | 33 + .../all/cfg_rbv2_super_1457_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1461_repl.yaml | 33 + .../all/cfg_rbv2_super_1461_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1462_repl.yaml | 33 + .../all/cfg_rbv2_super_1462_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1464_repl.yaml | 33 + .../all/cfg_rbv2_super_1464_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1468_repl.yaml | 33 + .../all/cfg_rbv2_super_1468_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1475_repl.yaml | 33 + .../all/cfg_rbv2_super_1475_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1476_repl.yaml | 33 + .../all/cfg_rbv2_super_1476_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1478_repl.yaml | 33 + .../all/cfg_rbv2_super_1478_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1479_repl.yaml | 33 + .../all/cfg_rbv2_super_1479_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1480_repl.yaml | 33 + .../all/cfg_rbv2_super_1480_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1485_repl.yaml | 33 + .../all/cfg_rbv2_super_1485_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1486_repl.yaml | 33 + .../all/cfg_rbv2_super_1486_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1487_repl.yaml | 33 + .../all/cfg_rbv2_super_1487_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1489_repl.yaml | 33 + .../all/cfg_rbv2_super_1489_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1493_repl.yaml | 33 + .../all/cfg_rbv2_super_1493_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1494_repl.yaml | 33 + .../all/cfg_rbv2_super_1494_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1497_repl.yaml | 33 + .../all/cfg_rbv2_super_1497_trainsize.yaml | 33 + .../all/cfg_rbv2_super_14_repl.yaml | 33 + .../all/cfg_rbv2_super_14_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1501_repl.yaml | 33 + .../all/cfg_rbv2_super_1501_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1510_repl.yaml | 33 + .../all/cfg_rbv2_super_1510_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1515_repl.yaml | 33 + .../all/cfg_rbv2_super_1515_trainsize.yaml | 33 + .../all/cfg_rbv2_super_151_repl.yaml | 33 + .../all/cfg_rbv2_super_151_trainsize.yaml | 33 + .../all/cfg_rbv2_super_1590_repl.yaml | 33 + .../all/cfg_rbv2_super_1590_trainsize.yaml | 33 + .../all/cfg_rbv2_super_15_repl.yaml | 33 + .../all/cfg_rbv2_super_15_trainsize.yaml | 33 + .../all/cfg_rbv2_super_16_repl.yaml | 33 + .../all/cfg_rbv2_super_16_trainsize.yaml | 33 + .../all/cfg_rbv2_super_181_repl.yaml | 33 + .../all/cfg_rbv2_super_181_trainsize.yaml | 33 + .../all/cfg_rbv2_super_182_repl.yaml | 33 + .../all/cfg_rbv2_super_182_trainsize.yaml | 33 + .../all/cfg_rbv2_super_188_repl.yaml | 33 + .../all/cfg_rbv2_super_188_trainsize.yaml | 33 + .../all/cfg_rbv2_super_18_repl.yaml | 33 + .../all/cfg_rbv2_super_18_trainsize.yaml | 33 + .../all/cfg_rbv2_super_22_repl.yaml | 33 + .../all/cfg_rbv2_super_22_trainsize.yaml | 33 + .../all/cfg_rbv2_super_23381_repl.yaml | 33 + .../all/cfg_rbv2_super_23381_trainsize.yaml | 33 + .../all/cfg_rbv2_super_23_repl.yaml | 33 + .../all/cfg_rbv2_super_23_trainsize.yaml | 33 + .../all/cfg_rbv2_super_24_repl.yaml | 33 + .../all/cfg_rbv2_super_24_trainsize.yaml | 33 + .../all/cfg_rbv2_super_28_repl.yaml | 33 + .../all/cfg_rbv2_super_28_trainsize.yaml | 33 + .../all/cfg_rbv2_super_29_repl.yaml | 33 + .../all/cfg_rbv2_super_29_trainsize.yaml | 33 + .../all/cfg_rbv2_super_300_repl.yaml | 33 + .../all/cfg_rbv2_super_300_trainsize.yaml | 33 + .../all/cfg_rbv2_super_307_repl.yaml | 33 + .../all/cfg_rbv2_super_307_trainsize.yaml | 33 + .../all/cfg_rbv2_super_312_repl.yaml | 33 + .../all/cfg_rbv2_super_312_trainsize.yaml | 33 + .../all/cfg_rbv2_super_31_repl.yaml | 33 + .../all/cfg_rbv2_super_31_trainsize.yaml | 33 + .../all/cfg_rbv2_super_32_repl.yaml | 33 + .../all/cfg_rbv2_super_32_trainsize.yaml | 33 + .../all/cfg_rbv2_super_334_repl.yaml | 33 + .../all/cfg_rbv2_super_334_trainsize.yaml | 33 + .../all/cfg_rbv2_super_375_repl.yaml | 33 + .../all/cfg_rbv2_super_375_trainsize.yaml | 33 + .../all/cfg_rbv2_super_377_repl.yaml | 33 + .../all/cfg_rbv2_super_377_trainsize.yaml | 33 + .../all/cfg_rbv2_super_37_repl.yaml | 33 + .../all/cfg_rbv2_super_37_trainsize.yaml | 33 + .../all/cfg_rbv2_super_38_repl.yaml | 33 + .../all/cfg_rbv2_super_38_trainsize.yaml | 33 + .../all/cfg_rbv2_super_3_repl.yaml | 33 + .../all/cfg_rbv2_super_3_trainsize.yaml | 33 + .../all/cfg_rbv2_super_40496_repl.yaml | 33 + .../all/cfg_rbv2_super_40496_trainsize.yaml | 33 + .../all/cfg_rbv2_super_40498_repl.yaml | 33 + .../all/cfg_rbv2_super_40498_trainsize.yaml | 33 + .../all/cfg_rbv2_super_40499_repl.yaml | 33 + .../all/cfg_rbv2_super_40499_trainsize.yaml | 33 + .../all/cfg_rbv2_super_40536_repl.yaml | 33 + .../all/cfg_rbv2_super_40536_trainsize.yaml | 33 + .../all/cfg_rbv2_super_40668_repl.yaml | 33 + .../all/cfg_rbv2_super_40668_trainsize.yaml | 33 + .../all/cfg_rbv2_super_40670_repl.yaml | 33 + .../all/cfg_rbv2_super_40670_trainsize.yaml | 33 + .../all/cfg_rbv2_super_40685_repl.yaml | 33 + .../all/cfg_rbv2_super_40685_trainsize.yaml | 33 + .../all/cfg_rbv2_super_40701_repl.yaml | 33 + .../all/cfg_rbv2_super_40701_trainsize.yaml | 33 + .../all/cfg_rbv2_super_40900_repl.yaml | 33 + .../all/cfg_rbv2_super_40900_trainsize.yaml | 33 + .../all/cfg_rbv2_super_40966_repl.yaml | 33 + .../all/cfg_rbv2_super_40966_trainsize.yaml | 33 + .../all/cfg_rbv2_super_40975_repl.yaml | 33 + .../all/cfg_rbv2_super_40975_trainsize.yaml | 33 + .../all/cfg_rbv2_super_40978_repl.yaml | 33 + .../all/cfg_rbv2_super_40978_trainsize.yaml | 33 + .../all/cfg_rbv2_super_40979_repl.yaml | 33 + .../all/cfg_rbv2_super_40979_trainsize.yaml | 33 + .../all/cfg_rbv2_super_40981_repl.yaml | 33 + .../all/cfg_rbv2_super_40981_trainsize.yaml | 33 + .../all/cfg_rbv2_super_40982_repl.yaml | 33 + .../all/cfg_rbv2_super_40982_trainsize.yaml | 33 + .../all/cfg_rbv2_super_40983_repl.yaml | 33 + .../all/cfg_rbv2_super_40983_trainsize.yaml | 33 + .../all/cfg_rbv2_super_40984_repl.yaml | 33 + .../all/cfg_rbv2_super_40984_trainsize.yaml | 33 + .../all/cfg_rbv2_super_40994_repl.yaml | 33 + .../all/cfg_rbv2_super_40994_trainsize.yaml | 33 + .../all/cfg_rbv2_super_41027_repl.yaml | 33 + .../all/cfg_rbv2_super_41027_trainsize.yaml | 33 + .../all/cfg_rbv2_super_41138_repl.yaml | 33 + .../all/cfg_rbv2_super_41138_trainsize.yaml | 33 + .../all/cfg_rbv2_super_41142_repl.yaml | 33 + .../all/cfg_rbv2_super_41142_trainsize.yaml | 33 + .../all/cfg_rbv2_super_41143_repl.yaml | 33 + .../all/cfg_rbv2_super_41143_trainsize.yaml | 33 + .../all/cfg_rbv2_super_41146_repl.yaml | 33 + .../all/cfg_rbv2_super_41146_trainsize.yaml | 33 + .../all/cfg_rbv2_super_41156_repl.yaml | 33 + .../all/cfg_rbv2_super_41156_trainsize.yaml | 33 + .../all/cfg_rbv2_super_41157_repl.yaml | 33 + .../all/cfg_rbv2_super_41157_trainsize.yaml | 33 + .../all/cfg_rbv2_super_41162_repl.yaml | 33 + .../all/cfg_rbv2_super_41162_trainsize.yaml | 33 + .../all/cfg_rbv2_super_41163_repl.yaml | 33 + .../all/cfg_rbv2_super_41163_trainsize.yaml | 33 + .../all/cfg_rbv2_super_41164_repl.yaml | 33 + .../all/cfg_rbv2_super_41164_trainsize.yaml | 33 + .../all/cfg_rbv2_super_41169_repl.yaml | 33 + .../all/cfg_rbv2_super_41169_trainsize.yaml | 33 + .../all/cfg_rbv2_super_41212_repl.yaml | 33 + .../all/cfg_rbv2_super_41212_trainsize.yaml | 33 + .../all/cfg_rbv2_super_4134_repl.yaml | 33 + .../all/cfg_rbv2_super_4134_trainsize.yaml | 33 + .../all/cfg_rbv2_super_4154_repl.yaml | 33 + .../all/cfg_rbv2_super_4154_trainsize.yaml | 33 + .../all/cfg_rbv2_super_42_repl.yaml | 33 + .../all/cfg_rbv2_super_42_trainsize.yaml | 33 + .../all/cfg_rbv2_super_44_repl.yaml | 33 + .../all/cfg_rbv2_super_44_trainsize.yaml | 33 + .../all/cfg_rbv2_super_4534_repl.yaml | 33 + .../all/cfg_rbv2_super_4534_trainsize.yaml | 33 + .../all/cfg_rbv2_super_4538_repl.yaml | 33 + .../all/cfg_rbv2_super_4538_trainsize.yaml | 33 + .../all/cfg_rbv2_super_458_repl.yaml | 33 + .../all/cfg_rbv2_super_458_trainsize.yaml | 33 + .../all/cfg_rbv2_super_469_repl.yaml | 33 + .../all/cfg_rbv2_super_469_trainsize.yaml | 33 + .../all/cfg_rbv2_super_46_repl.yaml | 33 + .../all/cfg_rbv2_super_46_trainsize.yaml | 33 + .../all/cfg_rbv2_super_470_repl.yaml | 33 + .../all/cfg_rbv2_super_470_trainsize.yaml | 33 + .../all/cfg_rbv2_super_50_repl.yaml | 33 + .../all/cfg_rbv2_super_50_trainsize.yaml | 33 + .../all/cfg_rbv2_super_54_repl.yaml | 33 + .../all/cfg_rbv2_super_54_trainsize.yaml | 33 + .../all/cfg_rbv2_super_60_repl.yaml | 33 + .../all/cfg_rbv2_super_60_trainsize.yaml | 33 + .../all/cfg_rbv2_super_6332_repl.yaml | 33 + .../all/cfg_rbv2_super_6332_trainsize.yaml | 33 + .../all/cfg_rbv2_super_6_repl.yaml | 33 + .../all/cfg_rbv2_super_6_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1040_repl.yaml | 33 + .../all/cfg_rbv2_svm_1040_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1049_repl.yaml | 33 + .../all/cfg_rbv2_svm_1049_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1050_repl.yaml | 33 + .../all/cfg_rbv2_svm_1050_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1053_repl.yaml | 33 + .../all/cfg_rbv2_svm_1053_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1056_repl.yaml | 33 + .../all/cfg_rbv2_svm_1056_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1063_repl.yaml | 33 + .../all/cfg_rbv2_svm_1063_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1067_repl.yaml | 33 + .../all/cfg_rbv2_svm_1067_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1068_repl.yaml | 33 + .../all/cfg_rbv2_svm_1068_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1111_repl.yaml | 33 + .../all/cfg_rbv2_svm_1111_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_11_repl.yaml | 33 + .../all/cfg_rbv2_svm_11_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1220_repl.yaml | 33 + .../all/cfg_rbv2_svm_1220_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_12_repl.yaml | 33 + .../all/cfg_rbv2_svm_12_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1457_repl.yaml | 33 + .../all/cfg_rbv2_svm_1457_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1461_repl.yaml | 33 + .../all/cfg_rbv2_svm_1461_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1462_repl.yaml | 33 + .../all/cfg_rbv2_svm_1462_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1464_repl.yaml | 33 + .../all/cfg_rbv2_svm_1464_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1468_repl.yaml | 33 + .../all/cfg_rbv2_svm_1468_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1475_repl.yaml | 33 + .../all/cfg_rbv2_svm_1475_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1476_repl.yaml | 33 + .../all/cfg_rbv2_svm_1476_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1478_repl.yaml | 33 + .../all/cfg_rbv2_svm_1478_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1479_repl.yaml | 33 + .../all/cfg_rbv2_svm_1479_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1480_repl.yaml | 33 + .../all/cfg_rbv2_svm_1480_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1485_repl.yaml | 33 + .../all/cfg_rbv2_svm_1485_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1486_repl.yaml | 33 + .../all/cfg_rbv2_svm_1486_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1487_repl.yaml | 33 + .../all/cfg_rbv2_svm_1487_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1489_repl.yaml | 33 + .../all/cfg_rbv2_svm_1489_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1493_repl.yaml | 33 + .../all/cfg_rbv2_svm_1493_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1494_repl.yaml | 33 + .../all/cfg_rbv2_svm_1494_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1497_repl.yaml | 33 + .../all/cfg_rbv2_svm_1497_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_14_repl.yaml | 33 + .../all/cfg_rbv2_svm_14_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1501_repl.yaml | 33 + .../all/cfg_rbv2_svm_1501_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1510_repl.yaml | 33 + .../all/cfg_rbv2_svm_1510_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1515_repl.yaml | 33 + .../all/cfg_rbv2_svm_1515_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_151_repl.yaml | 33 + .../all/cfg_rbv2_svm_151_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_1590_repl.yaml | 33 + .../all/cfg_rbv2_svm_1590_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_15_repl.yaml | 33 + .../all/cfg_rbv2_svm_15_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_16_repl.yaml | 33 + .../all/cfg_rbv2_svm_16_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_181_repl.yaml | 33 + .../all/cfg_rbv2_svm_181_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_182_repl.yaml | 33 + .../all/cfg_rbv2_svm_182_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_188_repl.yaml | 33 + .../all/cfg_rbv2_svm_188_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_18_repl.yaml | 33 + .../all/cfg_rbv2_svm_18_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_22_repl.yaml | 33 + .../all/cfg_rbv2_svm_22_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_23381_repl.yaml | 33 + .../all/cfg_rbv2_svm_23381_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_23_repl.yaml | 33 + .../all/cfg_rbv2_svm_23_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_24_repl.yaml | 33 + .../all/cfg_rbv2_svm_24_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_28_repl.yaml | 33 + .../all/cfg_rbv2_svm_28_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_29_repl.yaml | 33 + .../all/cfg_rbv2_svm_29_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_300_repl.yaml | 33 + .../all/cfg_rbv2_svm_300_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_307_repl.yaml | 33 + .../all/cfg_rbv2_svm_307_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_312_repl.yaml | 33 + .../all/cfg_rbv2_svm_312_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_31_repl.yaml | 33 + .../all/cfg_rbv2_svm_31_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_32_repl.yaml | 33 + .../all/cfg_rbv2_svm_32_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_334_repl.yaml | 33 + .../all/cfg_rbv2_svm_334_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_375_repl.yaml | 33 + .../all/cfg_rbv2_svm_375_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_377_repl.yaml | 33 + .../all/cfg_rbv2_svm_377_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_37_repl.yaml | 33 + .../all/cfg_rbv2_svm_37_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_38_repl.yaml | 33 + .../all/cfg_rbv2_svm_38_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_3_repl.yaml | 33 + .../all/cfg_rbv2_svm_3_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_40496_repl.yaml | 33 + .../all/cfg_rbv2_svm_40496_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_40498_repl.yaml | 33 + .../all/cfg_rbv2_svm_40498_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_40499_repl.yaml | 33 + .../all/cfg_rbv2_svm_40499_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_40536_repl.yaml | 33 + .../all/cfg_rbv2_svm_40536_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_40668_repl.yaml | 33 + .../all/cfg_rbv2_svm_40668_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_40670_repl.yaml | 33 + .../all/cfg_rbv2_svm_40670_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_40685_repl.yaml | 33 + .../all/cfg_rbv2_svm_40685_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_40701_repl.yaml | 33 + .../all/cfg_rbv2_svm_40701_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_40900_repl.yaml | 33 + .../all/cfg_rbv2_svm_40900_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_40966_repl.yaml | 33 + .../all/cfg_rbv2_svm_40966_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_40975_repl.yaml | 33 + .../all/cfg_rbv2_svm_40975_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_40978_repl.yaml | 33 + .../all/cfg_rbv2_svm_40978_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_40979_repl.yaml | 33 + .../all/cfg_rbv2_svm_40979_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_40981_repl.yaml | 33 + .../all/cfg_rbv2_svm_40981_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_40982_repl.yaml | 33 + .../all/cfg_rbv2_svm_40982_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_40983_repl.yaml | 33 + .../all/cfg_rbv2_svm_40983_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_40984_repl.yaml | 33 + .../all/cfg_rbv2_svm_40984_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_40994_repl.yaml | 33 + .../all/cfg_rbv2_svm_40994_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_41027_repl.yaml | 33 + .../all/cfg_rbv2_svm_41027_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_41138_repl.yaml | 33 + .../all/cfg_rbv2_svm_41138_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_41142_repl.yaml | 33 + .../all/cfg_rbv2_svm_41142_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_41143_repl.yaml | 33 + .../all/cfg_rbv2_svm_41143_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_41146_repl.yaml | 33 + .../all/cfg_rbv2_svm_41146_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_41156_repl.yaml | 33 + .../all/cfg_rbv2_svm_41156_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_41157_repl.yaml | 33 + .../all/cfg_rbv2_svm_41157_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_41162_repl.yaml | 33 + .../all/cfg_rbv2_svm_41162_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_41163_repl.yaml | 33 + .../all/cfg_rbv2_svm_41163_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_41164_repl.yaml | 33 + .../all/cfg_rbv2_svm_41164_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_41169_repl.yaml | 33 + .../all/cfg_rbv2_svm_41169_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_41212_repl.yaml | 33 + .../all/cfg_rbv2_svm_41212_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_41216_repl.yaml | 33 + .../all/cfg_rbv2_svm_41216_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_41278_repl.yaml | 33 + .../all/cfg_rbv2_svm_41278_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_4134_repl.yaml | 33 + .../all/cfg_rbv2_svm_4134_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_4135_repl.yaml | 33 + .../all/cfg_rbv2_svm_4135_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_4154_repl.yaml | 33 + .../all/cfg_rbv2_svm_4154_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_42_repl.yaml | 33 + .../all/cfg_rbv2_svm_42_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_44_repl.yaml | 33 + .../all/cfg_rbv2_svm_44_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_4534_repl.yaml | 33 + .../all/cfg_rbv2_svm_4534_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_4538_repl.yaml | 33 + .../all/cfg_rbv2_svm_4538_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_458_repl.yaml | 33 + .../all/cfg_rbv2_svm_458_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_469_repl.yaml | 33 + .../all/cfg_rbv2_svm_469_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_46_repl.yaml | 33 + .../all/cfg_rbv2_svm_46_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_470_repl.yaml | 33 + .../all/cfg_rbv2_svm_470_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_50_repl.yaml | 33 + .../all/cfg_rbv2_svm_50_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_54_repl.yaml | 33 + .../all/cfg_rbv2_svm_54_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_60_repl.yaml | 33 + .../all/cfg_rbv2_svm_60_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_6332_repl.yaml | 33 + .../all/cfg_rbv2_svm_6332_trainsize.yaml | 33 + .../all/cfg_rbv2_svm_6_repl.yaml | 33 + .../all/cfg_rbv2_svm_6_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1040_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1040_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1049_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1049_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1050_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1050_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1053_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1053_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1056_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1056_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1063_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1063_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1067_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1067_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1068_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1068_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1111_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1111_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_11_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_11_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1220_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1220_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_12_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_12_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1457_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1457_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1461_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1461_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1462_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1462_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1464_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1464_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1468_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1468_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1475_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1475_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1476_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1476_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1478_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1478_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1479_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1479_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1480_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1480_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1485_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1485_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1486_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1486_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1487_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1487_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1489_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1489_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1493_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1493_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1494_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1494_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1497_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1497_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_14_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_14_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1501_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1501_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1510_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1510_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1515_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1515_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_151_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_151_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_1590_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_1590_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_15_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_15_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_16_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_16_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_181_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_181_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_182_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_182_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_188_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_188_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_18_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_18_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_22_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_22_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_23381_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_23381_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_23512_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_23512_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_23517_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_23517_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_23_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_23_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_24_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_24_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_28_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_28_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_29_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_29_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_300_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_300_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_307_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_307_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_312_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_312_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_31_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_31_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_32_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_32_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_334_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_334_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_375_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_375_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_377_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_377_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_37_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_37_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_38_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_38_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_3_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_3_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40496_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40496_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40498_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40498_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40499_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40499_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40536_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40536_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40668_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40668_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40670_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40670_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40685_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40685_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40701_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40701_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40900_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40900_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40923_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40923_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40927_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40927_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40966_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40966_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40975_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40975_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40978_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40978_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40979_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40979_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40981_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40981_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40982_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40982_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40983_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40983_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40984_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40984_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40994_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40994_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_40996_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_40996_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41027_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41027_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41138_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41138_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41142_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41142_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41143_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41143_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41146_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41146_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41150_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41150_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41156_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41156_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41157_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41157_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41159_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41159_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41161_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41161_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41162_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41162_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41163_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41163_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41164_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41164_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41165_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41165_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41166_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41166_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41168_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41168_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41169_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41169_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41212_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41212_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41216_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41216_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_41278_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_41278_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_4134_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_4134_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_4135_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_4135_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_4154_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_4154_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_42_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_42_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_44_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_44_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_4534_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_4534_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_4538_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_4538_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_4541_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_4541_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_458_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_458_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_469_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_469_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_46_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_46_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_470_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_470_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_50_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_50_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_54_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_54_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_554_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_554_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_60_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_60_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_6332_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_6332_trainsize.yaml | 33 + .../all/cfg_rbv2_xgboost_6_repl.yaml | 33 + .../all/cfg_rbv2_xgboost_6_trainsize.yaml | 33 + carps/configs/problem/generate_problems.ipynb | 4350 +++++++++++++++++ .../dev/subset_bbob_noiseless_16_21_0.yaml | 33 + .../dev/subset_bbob_noiseless_16_22_0.yaml | 33 + .../dev/subset_bbob_noiseless_2_2_2.yaml | 33 + .../dev/subset_bbob_noiseless_32_21_0.yaml | 33 + .../dev/subset_hpob_all_2010_125966.yaml | 32 + .../dev/subset_hpob_all_2073_125968.yaml | 32 + .../dev/subset_hpob_all_2073_125969.yaml | 32 + .../dev/subset_hpob_all_2566_3647.yaml | 32 + .../dev/subset_hpob_all_2629_14951.yaml | 32 + .../dev/subset_hpob_all_5891_125923.yaml | 32 + .../dev/subset_hpob_all_5891_145677.yaml | 32 + .../dev/subset_hpob_all_5891_3493.yaml | 32 + .../dev/subset_hpob_all_5891_3889.yaml | 32 + .../dev/subset_hpob_all_5891_3891.yaml | 32 + .../dev/subset_hpob_all_5891_3913.yaml | 32 + .../dev/subset_hpob_all_5891_3917.yaml | 32 + .../dev/subset_hpob_all_5891_9976.yaml | 32 + .../dev/subset_hpob_all_5970_9978.yaml | 32 + .../dev/subset_hpob_all_6766_145847.yaml | 32 + .../dev/subset_hpob_all_6766_145972.yaml | 32 + .../dev/subset_hpob_all_6766_9914.yaml | 32 + .../dev/subset_hpob_all_6766_9967.yaml | 32 + .../dev/subset_hpob_all_6766_9983.yaml | 32 + .../dev/subset_hpob_all_6767_145972.yaml | 32 + .../dev/subset_hpob_all_6767_272.yaml | 32 + .../dev/subset_hpob_all_6767_3913.yaml | 32 + .../dev/subset_hpob_all_6767_9957.yaml | 32 + .../dev/subset_hpob_all_6767_9978.yaml | 32 + .../subset_hpobench_bb_tab_ml_svm_167120.yaml | 33 + .../subset_yahpo_rbv2_ranger_41142_None.yaml | 33 + .../test/subset_bbob_noiseless_16_22_1.yaml | 33 + .../test/subset_bbob_noiseless_16_22_2.yaml | 33 + .../test/subset_bbob_noiseless_2_14_0.yaml | 33 + .../test/subset_bbob_noiseless_32_22_0.yaml | 33 + .../test/subset_hpob_all_2010_125966.yaml | 32 + .../test/subset_hpob_all_2073_125968.yaml | 32 + .../test/subset_hpob_all_2073_125969.yaml | 32 + .../test/subset_hpob_all_2566_3647.yaml | 32 + .../test/subset_hpob_all_5860_282.yaml | 32 + .../test/subset_hpob_all_5891_31.yaml | 32 + .../blackbox/test/subset_hpob_all_5918_6.yaml | 32 + .../test/subset_hpob_all_5970_145855.yaml | 32 + .../test/subset_hpob_all_5970_146012.yaml | 32 + .../test/subset_hpob_all_5970_9957.yaml | 32 + .../test/subset_hpob_all_6766_145836.yaml | 32 + .../test/subset_hpob_all_6766_145857.yaml | 32 + .../test/subset_hpob_all_6766_145976.yaml | 32 + .../test/subset_hpob_all_6766_146066.yaml | 32 + .../test/subset_hpob_all_6766_3896.yaml | 32 + .../test/subset_hpob_all_6766_3950.yaml | 32 + .../test/subset_hpob_all_6766_9889.yaml | 32 + .../test/subset_hpob_all_6766_9971.yaml | 32 + .../test/subset_hpob_all_6767_146064.yaml | 32 + .../test/subset_hpob_all_6767_146065.yaml | 32 + .../test/subset_hpob_all_6767_3494.yaml | 32 + .../test/subset_hpob_all_6767_3917.yaml | 32 + .../test/subset_hpob_all_6767_9889.yaml | 32 + .../test/subset_hpobench_bb_tab_ml_lr_3.yaml | 33 + .../subset_yahpo_rbv2_ranger_1475_None.yaml | 33 + .../subset_yahpo_rbv2_ranger_469_None.yaml | 33 + ...yahpo_MOMF_epoch_lcbench_167185_epoch.yaml | 36 + ..._yahpo_MOMF_repl_rbv2_xgboost_12_repl.yaml | 36 + ..._trainsize_iaml_glmnet_1489_trainsize.yaml | 36 + ..._trainsize_iaml_ranger_1489_trainsize.yaml | 38 + ...F_trainsize_rbv2_ranger_375_trainsize.yaml | 36 + ...OMF_trainsize_rbv2_ranger_6_trainsize.yaml | 36 + ...F_trainsize_rbv2_rpart_1476_trainsize.yaml | 36 + ...F_trainsize_rbv2_xgboost_12_trainsize.yaml | 36 + ...F_trainsize_rbv2_xgboost_28_trainsize.yaml | 36 + ...yahpo_MOMF_epoch_lcbench_167152_epoch.yaml | 36 + ...yahpo_MOMF_epoch_lcbench_189873_epoch.yaml | 36 + ...et_yahpo_MOMF_repl_rbv2_ranger_6_repl.yaml | 36 + ...yahpo_MOMF_repl_rbv2_rpart_40499_repl.yaml | 36 + ...yahpo_MOMF_repl_rbv2_xgboost_182_repl.yaml | 36 + ..._trainsize_iaml_glmnet_1067_trainsize.yaml | 36 + ...trainsize_iaml_xgboost_1489_trainsize.yaml | 40 + ...trainsize_rbv2_ranger_40979_trainsize.yaml | 36 + ..._trainsize_rbv2_xgboost_182_trainsize.yaml | 36 + ...et_hpobench_mf_real_ml_nn_146821_iter.yaml | 33 + ...t_hpobench_mf_real_ml_rf_31_subsample.yaml | 33 + .../subset_mfpbench_SO_mfh_mfh6_moderate.yaml | 39 + ...set_yahpo_iaml_glmnet_41146_trainsize.yaml | 33 + ...subset_yahpo_rbv2_aknn_1497_trainsize.yaml | 33 + .../dev/subset_yahpo_rbv2_glmnet_24_repl.yaml | 33 + .../subset_yahpo_rbv2_glmnet_334_repl.yaml | 33 + ...set_yahpo_rbv2_ranger_40983_trainsize.yaml | 33 + .../subset_yahpo_rbv2_ranger_41159_repl.yaml | 33 + .../subset_yahpo_rbv2_ranger_41161_repl.yaml | 33 + ...set_yahpo_rbv2_ranger_41161_trainsize.yaml | 33 + .../subset_yahpo_rbv2_rpart_1220_repl.yaml | 33 + .../subset_yahpo_rbv2_rpart_41165_repl.yaml | 33 + .../subset_yahpo_rbv2_super_40984_repl.yaml | 33 + .../dev/subset_yahpo_rbv2_svm_24_repl.yaml | 33 + .../subset_yahpo_rbv2_svm_24_trainsize.yaml | 33 + .../dev/subset_yahpo_rbv2_svm_40975_repl.yaml | 33 + .../subset_yahpo_rbv2_xgboost_1476_repl.yaml | 33 + ...bset_yahpo_rbv2_xgboost_375_trainsize.yaml | 33 + ...et_yahpo_rbv2_xgboost_40499_trainsize.yaml | 33 + ...et_hpobench_mf_real_ml_nn_146821_iter.yaml | 33 + ...obench_mf_real_ml_xgboost_3_subsample.yaml | 33 + .../subset_yahpo_rbv2_aknn_1461_repl.yaml | 33 + ...subset_yahpo_rbv2_aknn_1476_trainsize.yaml | 33 + ...ubset_yahpo_rbv2_aknn_40670_trainsize.yaml | 33 + .../subset_yahpo_rbv2_aknn_50_trainsize.yaml | 33 + ...set_yahpo_rbv2_glmnet_41162_trainsize.yaml | 33 + .../subset_yahpo_rbv2_ranger_40923_repl.yaml | 33 + ...set_yahpo_rbv2_ranger_40923_trainsize.yaml | 33 + .../test/subset_yahpo_rbv2_rpart_38_repl.yaml | 33 + .../subset_yahpo_rbv2_super_40900_repl.yaml | 33 + ...bset_yahpo_rbv2_super_41156_trainsize.yaml | 33 + .../subset_yahpo_rbv2_super_4154_repl.yaml | 33 + .../subset_yahpo_rbv2_super_458_repl.yaml | 33 + ...subset_yahpo_rbv2_super_458_trainsize.yaml | 33 + ...subset_yahpo_rbv2_svm_40981_trainsize.yaml | 33 + ...set_yahpo_rbv2_xgboost_1476_trainsize.yaml | 33 + .../subset_yahpo_rbv2_xgboost_1480_repl.yaml | 33 + ...et_yahpo_rbv2_xgboost_40685_trainsize.yaml | 33 + .../subset_yahpo_rbv2_xgboost_41163_repl.yaml | 33 + .../dev/subset_Pymoo_MO_omnitest.yaml | 35 + .../subset_hpobench_MO_tab_ml_rf_167119.yaml | 37 + .../dev/subset_hpobench_MO_tab_ml_rf_31.yaml | 37 + .../subset_hpobench_MO_tab_ml_svm_146212.yaml | 37 + .../subset_hpobench_MO_tab_ml_svm_146818.yaml | 37 + .../dev/subset_hpobench_MO_tab_ml_svm_31.yaml | 37 + ...set_hpobench_MO_tab_ml_xgboost_146822.yaml | 37 + ...bset_hpobench_MO_tab_ml_xgboost_14965.yaml | 37 + ...set_hpobench_MO_tab_ml_xgboost_167120.yaml | 37 + ...subset_yahpo_mo_rbv2_rpart_40499_None.yaml | 36 + .../test/subset_Pymoo_MO_zdt3.yaml | 35 + .../subset_hpobench_MO_tab_ml_lr_146606.yaml | 37 + .../subset_hpobench_MO_tab_ml_lr_167119.yaml | 37 + .../subset_hpobench_MO_tab_ml_lr_168912.yaml | 37 + .../subset_hpobench_MO_tab_ml_nn_146821.yaml | 37 + .../subset_hpobench_MO_tab_ml_rf_146212.yaml | 37 + .../subset_hpobench_MO_tab_ml_svm_10101.yaml | 37 + .../subset_hpobench_MO_tab_ml_svm_146821.yaml | 37 + .../subset_hpobench_MO_tab_ml_svm_7592.yaml | 37 + ...set_hpobench_MO_tab_ml_xgboost_168911.yaml | 37 + carps/container/__init__.py | 0 carps/container/container_script_optimizer.py | 48 + carps/container/container_script_problem.py | 35 + carps/container/container_script_runner.py | 60 + .../container/containerized_problem_client.py | 0 carps/container/create_cluster_configs.py | 100 + carps/container/py_experimenter.yaml | 73 + carps/container/wrapper.py | 38 + carps/loggers/__init__.py | 0 carps/loggers/abstract_logger.py | 65 + carps/loggers/database_logger.py | 90 + carps/loggers/file_logger.py | 174 + carps/optimizers/__init__.py | 0 carps/optimizers/dehb.py | 165 + carps/optimizers/dummy_optimizer.py | 55 + carps/optimizers/hebo.py | 360 ++ carps/optimizers/nevergrad.py | 258 + carps/optimizers/optimizer.py | 192 + carps/optimizers/optuna.py | 262 + carps/optimizers/random_search.py | 74 + carps/optimizers/scikit_optimize.py | 175 + carps/optimizers/smac14.py | 205 + carps/optimizers/smac20.py | 293 ++ carps/optimizers/synetune.py | 390 ++ carps/py.typed | 0 carps/run.py | 39 + carps/run_from_db.py | 77 + carps/runenv.py | 43 + carps/tasks/__init__.py | 2 + carps/utils/__init__.py | 0 carps/utils/check_missing.py | 95 + carps/utils/database/__init__.py | 0 carps/utils/database/reset_experiments.py | 35 + carps/utils/exceptions.py | 9 + carps/utils/index_configs.py | 39 + carps/utils/loggingutils.py | 15 + carps/utils/overridefinder.py | 65 + carps/utils/pareto_front.py | 12 + carps/utils/requirements.py | 71 + carps/utils/running.py | 113 + carps/utils/task.py | 193 + carps/utils/trials.py | 73 + carps/utils/types.py | 11 + container_recipes/benchmarks/BBOB/BBOB.recipe | 39 + .../benchmarks/BBOB/BBOB_requirements.txt | 1 + .../DUMMY_Problem/DUMMY_Problem.recipe | 42 + .../DUMMY_Problem_requirements.txt | 2 + container_recipes/benchmarks/HPOB/HPOB.recipe | 39 + .../benchmarks/HPOB/HPOB_requirements.txt | 1 + .../benchmarks/HPOB/download_data.sh | 4 + .../HPOBench/HPOBench_container.recipe | 53 + .../HPOBench/HPOBench_requirements.txt | 8 + .../HPOBench/install_HPOBench_requirements.sh | 8 + .../MFPBench/MFPBench_pip_freeze.txt | 268 + .../MFPBench/MFPBench_requirements.txt | 5 + .../benchmarks/MFPBench/download_data.sh | 2 + .../benchmarks/Pymoo/Pymoo_pip_freeze.txt | 273 ++ .../benchmarks/Pymoo/Pymoo_requirements.txt | 1 + .../benchmarks/YAHPO/YAHPO.recipe | 46 + .../benchmarks/YAHPO/YAHPO_requirements.txt | 3 + .../benchmarks/YAHPO/prepare_yahpo.sh | 10 + ...neral_requirements_container_optimizer.txt | 4 + ...general_requirements_container_problem.txt | 2 + .../general_requirements_container_runner.txt | 5 + container_recipes/general/runner.recipe | 30 + .../optimizers/DEHB/DEHB_pip_freeze.txt | 268 + .../optimizers/DEHB/DEHB_requirements.txt | 1 + .../DUMMY_Optimizer/DUMMY_Optimizer.recipe | 35 + .../DUMMY_Optimizer_requirements.txt | 2 + container_recipes/optimizers/HEBO/HEBO.recipe | 30 + .../optimizers/HEBO/HEBO_install.sh | 2 + .../optimizers/HEBO/HEBO_requirements.txt | 1 + .../Nevergrad/Nevergrad_pip_freeze.txt | 273 ++ .../Nevergrad/Nevergrad_requirements.txt | 5 + .../optimizers/Optuna/Optuna_requirements.txt | 1 + .../RandomSearch/RandomSearch.recipe | 31 + .../optimizers/SMAC3-1.4/SMAC3-1.4.recipe | 35 + .../SMAC3-1.4/SMAC3-1.4_requirements.txt | 2 + .../optimizers/SMAC3/SMAC3.recipe | 34 + .../optimizers/SMAC3/SMAC3_requirements.txt | 2 + .../Scikit_Optimize_requirements.txt | 1 + .../Scikit_optimize_pip_freeze.txt | 261 + .../optimizers/SyneTune/SyneTune.recipe | 39 + .../SyneTune/SyneTune_requirements.txt | 4 + ...and rounded shapes to enhance its ad.webp" | Bin 0 -> 103548 bytes ...and rounded shapes to enhance its ad.webp" | Bin 0 -> 113464 bytes ...each other, creating a heart shape w.webp" | Bin 0 -> 247764 bytes ...ith smiling faces, conveying a sense.webp" | Bin 0 -> 357032 bytes ...ith smiling faces, conveying a sense.webp" | Bin 0 -> 200824 bytes docs/assets/logo.webp | Bin 0 -> 103548 bytes docs/changelog.md | 1 + docs/commands.md | 36 + docs/contributing/contributing-a-benchmark.md | 56 + .../contributing/contributing-an-optimizer.md | 77 + docs/contributing/index.md | 1 + docs/guides/containers.md | 131 + docs/guides/database.md | 46 + docs/guides/first-steps.md | 21 + docs/guides/hydra.md | 11 + docs/guides/large-scale-benchmarking.md | 13 + .../debug_which_page_is_being_rendered.py | 34 + .../smac_benchmarking_containers.drawio | 132 + .../smac_benchmarking_containers.drawio.pdf | Bin 0 -> 43414 bytes .../smac_benchmarking_containers.drawio.png | Bin 0 -> 87576 bytes docs/index.md | 42 + docs/installation.md | 46 + examples/README.rst | 4 + examples/myexample.py | 14 + fix_optimizer_name.ipynb | 76 + mkdocs.yaml | 197 + notebooks/benchmark_footprint.ipynb | 629 +++ notebooks/calc_runtime.py | 62 + notebooks/define_runtimes.py | 37 + notebooks/inspect_problems.ipynb | 347 ++ notebooks/plot.ipynb | 3429 +++++++++++++ notebooks/sketch_plots.ipynb | 560 +++ notebooks/subselect.ipynb | 366 ++ pyproject.toml | 337 ++ requirements.txt | 13 + scripts/build_containers.sh | 50 + scripts/build_env.sh | 95 + scripts/build_envs.sh | 62 + scripts/build_superenv.sh | 136 + scripts/compile_noctua2.sh | 17 + scripts/convert_logs_csv_to_parquet.py | 68 + scripts/launch_missing.py | 53 + scripts/patch_yahpo_configspace.py | 23 + scripts/prepare_subselection_data.py | 95 + scripts/prepare_yahpo.sh | 10 + scripts/run_BB.sh | 6 + scripts/run_BB_BBOB.sh | 15 + scripts/run_BB_HPOB.sh | 57 + scripts/run_BB_HPOBench.sh | 9 + scripts/run_BB_YAHPO.sh | 24 + scripts/run_BB_subselection.sh | 23 + scripts/run_MF.sh | 6 + scripts/run_MF_HPOBench.sh | 7 + scripts/run_MF_MFPBench.sh | 7 + scripts/run_MF_YAHPO.sh | 48 + scripts/run_MF_subselection.sh | 10 + scripts/run_MO.sh | 15 + scripts/run_MOMF.sh | 6 + scripts/run_MO_subselection.sh | 8 + scripts/run_small.sh | 44 + scripts/start_container_noctua2.sh | 74 + subselection/README.md | 19 + subselection/SDSSP_Heuristics/README.md | 48 + subselection/SDSSP_Heuristics/a.out | Bin 0 -> 34064 bytes subselection/SDSSP_Heuristics/again.sh | 82 + subselection/SDSSP_Heuristics/commands.sh | 22 + subselection/SDSSP_Heuristics/extract.sh | 20 + subselection/SDSSP_Heuristics/extract_csv.py | 26 + subselection/SDSSP_Heuristics/format.sh | 66 + subselection/SDSSP_Heuristics/match_index.py | 99 + subselection/SDSSP_Heuristics/run.sh | 78 + .../SDSSP_Heuristics/shift_v2nobrute.c | 978 ++++ subselection/SDSSP_Heuristics/split.sh | 86 + subselection/SDSSP_Heuristics/subselect.py | 37 + subselection/create_subset_configs.py | 47 + subselection/get_fullset.py | 55 + subselection/inspect.ipynb | 399 ++ test_container_benchmark.sh | 28 + tests/__init__.py | 0 tests/test_configs.py | 28 + tests/test_hpobench_instantiation.py | 29 + tmp.ipynb | 261 + 5693 files changed, 203433 insertions(+) create mode 100644 .github/workflows/citation_cff.yml create mode 100644 .github/workflows/doc-deploy.yml create mode 100644 .github/workflows/docs.yml create mode 100644 .github/workflows/pre-commit.yml create mode 100644 .github/workflows/pytest.yml create mode 100644 .gitignore create mode 100644 .pre-commit-config.yaml create mode 100644 AUTHORS.md create mode 100644 CHANGELOG.md create mode 100644 CITATION.cff create mode 100644 CONTRIBUTING.md create mode 100644 LICENSE create mode 100644 LOCAL_DEVELOPMENT.md create mode 100644 MANIFEST.in create mode 100644 Makefile create mode 100644 README.md create mode 100644 carps/__init__.py create mode 100644 carps/analysis/__init__.py create mode 100644 carps/analysis/calc_hypervolume.py create mode 100644 carps/analysis/configs/gather_data_slurm.yaml create mode 100644 carps/analysis/final_performance.py create mode 100644 carps/analysis/gather_data.py create mode 100644 carps/analysis/gather_data_slurm.py create mode 100644 carps/analysis/interval_estimates.py create mode 100644 carps/analysis/performance_over_time.py create mode 100644 carps/analysis/plot_ranking.py create mode 100644 carps/analysis/plot_relative_perf.py create mode 100644 carps/analysis/process_data.py create mode 100644 carps/analysis/run_autorank.py create mode 100644 carps/analysis/superplotting.py create mode 100644 carps/analysis/utils.py create mode 100644 carps/benchmarks/COLLECTIONS.md create mode 100644 carps/benchmarks/__init__.py create mode 100644 carps/benchmarks/bbob.py create mode 100644 carps/benchmarks/dummy_problem.py create mode 100644 carps/benchmarks/hpo_b.py create mode 100644 carps/benchmarks/hpo_bench.py create mode 100644 carps/benchmarks/manyaffinebbob.py create mode 100644 carps/benchmarks/mfpbench.py create mode 100644 carps/benchmarks/problem.py create mode 100644 carps/benchmarks/pymoo.py create mode 100644 carps/benchmarks/yahpo.py create mode 100644 carps/configs/__init__.py create mode 100644 carps/configs/base.yaml create mode 100644 carps/configs/cluster/local.yaml create mode 100644 carps/configs/cluster/noctua.yaml create mode 100644 carps/configs/cluster/slurm.yaml create mode 100644 carps/configs/logger.yaml create mode 100644 carps/configs/optimizer/DUMMY/config.yaml create mode 100644 carps/configs/optimizer/DUMMY/multifidelity.yaml create mode 100644 carps/configs/optimizer/dehb/multifidelity.yaml create mode 100644 carps/configs/optimizer/hebo/config.yaml create mode 100644 carps/configs/optimizer/nevergrad/DE.yaml create mode 100644 carps/configs/optimizer/nevergrad/ES.yaml create mode 100644 carps/configs/optimizer/nevergrad/Hyperopt.yaml create mode 100644 carps/configs/optimizer/nevergrad/NoisyBandit.yaml create mode 100644 carps/configs/optimizer/nevergrad/bayesopt.yaml create mode 100644 carps/configs/optimizer/nevergrad/cmaes.yaml create mode 100644 carps/configs/optimizer/nevergrad/default.yaml create mode 100644 carps/configs/optimizer/optuna/config.yaml create mode 100644 carps/configs/optimizer/optuna/multiobjective.yaml create mode 100644 carps/configs/optimizer/randomsearch/config.yaml create mode 100644 carps/configs/optimizer/scikit_optimize/BO.yaml create mode 100644 carps/configs/optimizer/smac14/blackbox.yaml create mode 100644 carps/configs/optimizer/smac14/multifidelity.yaml create mode 100644 carps/configs/optimizer/smac14/multiobjective.yaml create mode 100644 carps/configs/optimizer/smac20/blackbox.yaml create mode 100644 carps/configs/optimizer/smac20/hpo.yaml create mode 100644 carps/configs/optimizer/smac20/hyperband.yaml create mode 100644 carps/configs/optimizer/smac20/momf_gp.yaml create mode 100644 carps/configs/optimizer/smac20/momf_rf.yaml create mode 100644 carps/configs/optimizer/smac20/multifidelity.yaml create mode 100644 carps/configs/optimizer/smac20/multiobjective.yaml create mode 100644 carps/configs/optimizer/smac20/multiobjective_gp.yaml create mode 100644 carps/configs/optimizer/synetune/BO.yaml create mode 100644 carps/configs/optimizer/synetune/BORE.yaml create mode 100644 carps/configs/optimizer/synetune/BO_MO_LS.yaml create mode 100644 carps/configs/optimizer/synetune/BO_MO_RS.yaml create mode 100644 carps/configs/optimizer/synetune/DEHB.yaml create mode 100644 carps/configs/optimizer/synetune/KDE.yaml create mode 100644 carps/configs/optimizer/synetune/MOREA.yaml create mode 100644 carps/configs/optimizer/synetune/SyncMOBSTER.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_10_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_10_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_10_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_11_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_11_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_11_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_12_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_12_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_12_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_13_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_13_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_13_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_14_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_14_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_14_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_15_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_15_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_15_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_16_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_16_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_16_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_17_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_17_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_17_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_18_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_18_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_18_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_19_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_19_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_19_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_1_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_1_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_1_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_20_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_20_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_20_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_21_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_21_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_21_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_22_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_22_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_22_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_23_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_23_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_23_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_24_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_24_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_24_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_2_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_2_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_2_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_3_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_3_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_3_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_4_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_4_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_4_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_5_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_5_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_5_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_6_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_6_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_6_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_7_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_7_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_7_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_8_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_8_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_8_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_9_16_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_9_16_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_16_9_16_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_10_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_10_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_10_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_11_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_11_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_11_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_12_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_12_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_12_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_13_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_13_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_13_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_14_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_14_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_14_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_15_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_15_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_15_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_16_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_16_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_16_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_17_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_17_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_17_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_18_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_18_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_18_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_19_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_19_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_19_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_1_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_1_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_1_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_20_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_20_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_20_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_21_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_21_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_21_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_22_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_22_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_22_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_23_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_23_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_23_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_24_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_24_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_24_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_2_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_2_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_2_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_3_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_3_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_3_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_4_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_4_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_4_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_5_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_5_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_5_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_6_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_6_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_6_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_7_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_7_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_7_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_8_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_8_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_8_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_9_2_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_9_2_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_2_9_2_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_10_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_10_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_10_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_11_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_11_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_11_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_12_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_12_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_12_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_13_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_13_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_13_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_14_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_14_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_14_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_15_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_15_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_15_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_16_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_16_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_16_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_17_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_17_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_17_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_18_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_18_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_18_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_19_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_19_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_19_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_1_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_1_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_1_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_20_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_20_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_20_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_21_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_21_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_21_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_22_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_22_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_22_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_23_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_23_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_23_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_24_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_24_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_24_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_2_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_2_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_2_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_3_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_3_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_3_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_4_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_4_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_4_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_5_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_5_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_5_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_6_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_6_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_6_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_7_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_7_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_7_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_8_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_8_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_8_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_9_32_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_9_32_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_32_9_32_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_10_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_10_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_10_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_11_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_11_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_11_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_12_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_12_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_12_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_13_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_13_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_13_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_14_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_14_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_14_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_15_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_15_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_15_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_16_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_16_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_16_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_17_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_17_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_17_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_18_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_18_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_18_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_19_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_19_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_19_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_1_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_1_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_1_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_20_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_20_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_20_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_21_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_21_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_21_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_22_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_22_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_22_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_23_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_23_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_23_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_24_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_24_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_24_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_2_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_2_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_2_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_3_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_3_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_3_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_4_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_4_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_4_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_5_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_5_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_5_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_6_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_6_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_6_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_7_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_7_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_7_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_8_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_8_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_8_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_9_4_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_9_4_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_4_9_4_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_10_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_10_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_10_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_11_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_11_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_11_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_12_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_12_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_12_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_13_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_13_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_13_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_14_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_14_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_14_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_15_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_15_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_15_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_16_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_16_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_16_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_17_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_17_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_17_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_18_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_18_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_18_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_19_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_19_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_19_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_1_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_1_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_1_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_20_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_20_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_20_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_21_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_21_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_21_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_22_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_22_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_22_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_23_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_23_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_23_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_24_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_24_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_24_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_2_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_2_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_2_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_3_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_3_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_3_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_4_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_4_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_4_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_5_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_5_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_5_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_6_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_6_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_6_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_7_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_7_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_7_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_8_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_8_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_8_8_2.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_9_8_0.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_9_8_1.yaml create mode 100644 carps/configs/problem/BBOB/cfg_8_9_8_2.yaml create mode 100644 carps/configs/problem/DUMMY/config.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_124_41.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_124_59.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_151_12.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_151_20.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_151_28.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_151_59.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_151_6.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_153_59.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_158_2079.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_189_22.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_189_42.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_2010_125966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_2039_125966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_2039_125968.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_2073_125966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_2073_125968.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_2073_125969.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_214_58.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_2277_125966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_2277_125968.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_2277_125969.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_243_59.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_245_59.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_246_59.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_247_59.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_248_59.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_2553_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_2566_3647.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_2614_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_2629_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_2793_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_2799_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_2823_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3414_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3425_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3434_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3439_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3442_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3489_125966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3489_125968.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3489_125969.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3490_125966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3490_125968.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3490_125969.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3502_125966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3502_125969.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3737_3736.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3894_3577.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3894_3647.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3894_3729.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3894_3731.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3960_125966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3994_10093.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3994_10101.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3994_9903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3994_9905.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_3994_9971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4006_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4006_57.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_423_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_423_59.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4289_125966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_10093.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_10101.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_11.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_14964.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_14968.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_15.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_18.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_2.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_2079.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_21.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_23.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_3022.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_3492.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_3512.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_3543.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_3549.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_3560.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_3561.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_3567.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_36.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_3903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_3913.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_3918.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_41.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_53.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_9903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_9905.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_9906.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_9914.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_9946.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_9957.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_9967.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_9971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_9979.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4796_9980.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_4828_57.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_506_1.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_506_15.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_506_1793.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_506_257.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_506_269.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_506_34.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_506_3658.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_506_3949.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_506_59.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5218_125966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5237_125966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5253_125966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5295_125966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5301_125966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5315_125966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_10.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_11.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_12.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_15.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_16.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_1793.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_18.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_20.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_2073.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_2075.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_23.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_269.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_272.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3011.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3021.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_34.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3481.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3497.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3510.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3542.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3549.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3550.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3555.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3560.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3561.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3570.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3577.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3578.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3580.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3585.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3591.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3599.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_36.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3613.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3614.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3620.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3709.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3713.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3724.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3731.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3736.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3758.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3763.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3765.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3784.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3799.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3818.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3820.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3837.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3846.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3849.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3854.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3859.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3896.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_3919.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_41.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_50.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_53.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_534_59.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5435_125920.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5435_125921.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5435_125922.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5435_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5458_3011.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5458_3021.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5458_34.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5458_3820.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5489_3011.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5489_34.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5489_3849.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5489_3866.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5489_50.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5499_11.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5499_145677.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5502_145677.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5503_145677.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5503_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5521_145677.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5526_145833.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5526_145834.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5526_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5526_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5526_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5526_3899.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5526_7295.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_10101.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_145804.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_145833.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_145834.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_145836.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_145847.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_145853.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_145854.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_145855.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_145857.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_145862.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_145872.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_145878.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_145953.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_145972.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_145976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_145979.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_146012.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_146064.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_146065.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_146066.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_146082.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_146085.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_14965.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_14971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_34536.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_3485.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_3492.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_3889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_3891.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_3896.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_3899.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_3903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_3913.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_3918.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_3950.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_6566.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_7295.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_9889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_9914.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_9946.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_9957.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_9967.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_9970.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_9971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_9976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_9977.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_9978.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5527_9980.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5584_18.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5584_47.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5604_145677.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5623_146085.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5623_272.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5623_282.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5624_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5624_272.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5624_282.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5624_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5624_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5626_145677.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5626_23.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5626_36.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_10093.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_10101.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_145804.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_145833.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_145834.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_145836.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_145839.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_145847.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_145848.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_145853.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_145854.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_145855.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_145857.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_145862.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_145872.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_145878.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_145953.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_145972.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_145976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_145979.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_146012.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_146064.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_146065.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_146066.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_146082.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_146085.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_14965.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_14971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_272.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_282.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_34536.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_3485.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_3492.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_3889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_3891.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_3896.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_3899.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_3903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_3913.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_3918.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_3950.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_6566.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_7295.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_9889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_9914.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_9946.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_9957.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_9967.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_9970.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_9971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_9976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_9977.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_9980.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5636_9983.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5704_145677.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5788_145677.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5813_145677.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_10093.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_10101.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_145677.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_145833.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_145834.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_145836.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_145839.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_145848.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_145853.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_145854.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_145855.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_145862.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_145872.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_145878.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_145972.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_145979.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_146064.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_146065.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_146066.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_146082.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_14952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_14965.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_14966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_14971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_272.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_282.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_34536.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_34537.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_34539.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_3485.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_3492.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_3889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_3891.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_3896.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_3899.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_3903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_3913.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_3918.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_3950.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_6566.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_7295.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_9889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_9910.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_9911.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_9914.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_9946.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_9957.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_9967.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_9970.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_9971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_9976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_9977.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_9978.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_9980.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5859_9983.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_10101.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_14965.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_14971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_272.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_282.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_3485.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_3492.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_3889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_3891.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_3896.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_3899.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_3903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_3950.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_6566.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_7295.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_9889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_9957.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_9967.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_9970.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_9976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_9977.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_9978.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5860_9980.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_11.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_12.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_14.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_145685.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_18.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_2068.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_2071.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_2073.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_2074.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_2075.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_2076.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_2077.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_2079.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_22.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_23.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_24.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_26.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_28.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_30.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_32.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_33.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_36.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_3951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_41.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_45.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_53.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_58.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5886_6.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_10101.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_14971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_3889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_3891.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_3913.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_3918.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_3950.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_6566.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_7295.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_9946.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_9957.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_9970.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_9971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_9977.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_9978.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_9980.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5889_9983.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_145677.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_145804.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_145833.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_145834.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_145836.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_145839.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_145847.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_145853.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_145854.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_145855.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_145857.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_145862.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_145872.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_145878.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_145953.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_145972.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_145976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_145979.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_146012.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_146064.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_146065.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_146066.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_146082.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_146085.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_14965.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_14966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_14971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_34536.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_34537.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_3485.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_3492.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_3889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_3891.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_3896.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_3899.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_3903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_3913.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_3918.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_3950.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_6566.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_7295.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_9889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_9910.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_9971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5890_9976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_10093.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_10101.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_145677.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_145834.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_145839.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_145848.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_145855.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_145857.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_145862.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_145872.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_145878.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_145953.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_145972.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_145979.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_146012.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_146064.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_146066.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_146082.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_14952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_14965.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_14966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_14971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_34536.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_34537.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_3485.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_3492.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_3889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_3891.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_3896.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_3899.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_3903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_3913.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_3918.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_3950.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_6566.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_7295.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_9889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_9910.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_9914.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_9946.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_9957.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_9967.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_9970.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_9971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_9976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_9977.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_9978.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_9980.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5891_9983.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_14965.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_3492.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_3889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_3891.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_3896.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_3918.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_6566.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_7295.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_9889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_9914.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_9957.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_9967.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_9970.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_9971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_9977.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_9978.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5906_9983.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_11.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_12.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_14.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_15.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_18.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_20.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_2068.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_2071.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_2074.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_2075.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_2076.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_2077.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_2079.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_21.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_22.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_23.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_24.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_30.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_33.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_36.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_41.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_45.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_53.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_58.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5918_6.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5919_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_11.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_12.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_15.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_16.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_2068.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_2073.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_2074.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_2075.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_2076.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_2077.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_2079.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_21.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_23.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_24.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_26.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_28.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_30.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_32.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_36.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_3951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_41.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_53.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5920_58.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5921_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5922_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_11.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_12.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_14.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_15.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_16.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_18.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_2.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_20.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_2068.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_2071.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_2074.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_2075.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_2076.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_2077.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_2079.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_21.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_22.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_23.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_24.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_26.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_32.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_33.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_45.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_53.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_58.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5923_6.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_14.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_15.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_16.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_2.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_20.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_2068.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_2073.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_2074.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_2075.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_2076.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_2077.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_2079.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_21.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_23.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_24.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_26.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_28.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_30.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_32.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_33.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_36.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_41.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_45.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_53.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_58.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5926_6.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5960_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5963_34536.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5963_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5964_9889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5964_9946.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_10093.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_10101.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_145677.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_145804.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_145833.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_145834.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_145836.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_145839.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_145847.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_145848.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_145853.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_145854.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_145855.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_145857.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_145862.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_145872.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_145878.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_145953.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_145972.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_145976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_145979.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_146012.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_146064.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_146065.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_146066.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_146085.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_146803.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_14952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_14965.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_14966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_14971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_34536.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_34537.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_34539.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_3485.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_3492.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_3889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_3891.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_3896.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_3899.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_3903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_3913.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_3918.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_3950.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_6566.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_7295.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_9889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_9910.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_9911.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_9914.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_9946.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_9957.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_9967.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_9970.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_9971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_9976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_9977.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_9978.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_9980.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5965_9983.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5968_10101.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5968_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5968_3896.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5968_9889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5968_9914.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5968_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5968_9957.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5968_9983.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5969_34536.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5969_3485.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5969_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5969_9914.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_10093.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_10101.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_145677.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_145833.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_145834.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_145836.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_145839.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_145847.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_145848.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_145853.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_145854.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_145855.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_145857.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_145862.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_145872.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_145878.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_145953.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_145972.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_145976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_145979.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_146012.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_146064.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_146065.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_146085.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_14952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_14965.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_14966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_14971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_34536.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_34537.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_3485.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_3492.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_3889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_3891.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_3896.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_3899.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_3903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_3913.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_3918.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_3950.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_6566.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_7295.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_9889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_9910.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_9914.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_9946.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_9957.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_9967.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_9970.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_9976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_9977.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_9978.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_9980.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5970_9983.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_10093.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_10101.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_145677.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_145804.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_145833.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_145834.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_145836.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_145847.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_145848.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_145853.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_145855.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_145857.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_145862.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_145872.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_145878.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_145972.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_145976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_145979.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_146012.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_146065.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_146085.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_14965.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_14966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_14971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_34536.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_34537.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_3485.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_3492.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_3889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_3891.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_3896.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_3899.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_3903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_3913.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_3918.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_6566.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_7295.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_9889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_9910.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_9914.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_9946.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_9957.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_9967.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_9970.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_9971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_9976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_9977.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_9978.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_9980.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5971_9983.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5972_14965.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5972_3485.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5972_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5972_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_11.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_12.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_14.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_18.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_20.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_2068.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_2071.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_2074.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_2075.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_2076.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_2077.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_2079.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_21.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_22.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_24.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_26.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_28.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_30.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_32.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_33.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_36.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_41.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_45.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_53.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_58.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5978_6.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5988_14.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5988_20.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5988_21.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5988_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5988_33.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5988_45.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5988_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_5988_53.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6000_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6003_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6003_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_11.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_12.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_14.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_16.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_18.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_20.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_2068.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_2071.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_2073.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_2074.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_2075.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_2076.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_2079.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_21.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_22.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_23.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_24.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_26.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_28.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_32.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_33.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_41.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_45.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_53.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_58.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6007_6.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6024_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_11.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_12.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_15.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_18.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_20.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_2068.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_2071.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_2073.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_2074.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_2076.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_2077.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_2079.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_21.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_22.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_23.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_24.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_26.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_28.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_30.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_33.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_36.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_41.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_45.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_53.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_58.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6073_6.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6075_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_14.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_18.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_2.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_2068.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_2073.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_2074.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_2075.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_2076.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_2077.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_2079.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_21.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_22.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_23.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_24.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_26.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_28.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_30.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_32.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_33.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_36.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_41.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_45.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_53.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_58.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6105_6.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6124_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6131_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6134_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_11.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_12.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_14.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_16.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_18.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_2068.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_2074.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_2075.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_2076.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_2079.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_21.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_22.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_23.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_24.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_26.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_28.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_30.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_32.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_33.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_36.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_41.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_45.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_58.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6136_6.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6137_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6139_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_11.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_12.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_14.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_18.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_20.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_2068.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_2074.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_2075.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_2076.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_2077.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_2079.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_21.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_22.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_23.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_24.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_26.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_28.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_30.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_32.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_33.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_36.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_41.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_45.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_53.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_58.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6140_6.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_11.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_12.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_14.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_18.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_20.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_2068.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_2074.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_2075.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_2076.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_2077.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_2079.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_21.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_22.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_23.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_24.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_26.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_28.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_30.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_32.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_33.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_36.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_41.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_45.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_53.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_58.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6154_6.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6155_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6156_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6182_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_14.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_18.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_2.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_2068.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_2073.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_2074.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_2075.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_2076.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_2077.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_2079.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_21.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_22.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_23.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_24.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_26.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_28.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_30.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_32.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_33.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_36.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_41.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_45.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_53.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_58.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6183_6.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6189_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6190_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6211_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6212_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6213_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6215_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6216_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6271_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6285_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6308_34536.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6308_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6308_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6309_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6322_145677.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6322_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6323_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_633_59.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6345_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6347_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6364_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6365_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6376_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6433_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_11.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_12.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_14.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_16.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_18.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_2068.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_2074.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_2075.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_2076.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_2079.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_21.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_22.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_23.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_24.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_26.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_28.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_30.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_32.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_33.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_36.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_41.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_45.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_58.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6447_6.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_11.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_12.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_14.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_16.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_18.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_2068.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_2074.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_2075.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_2076.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_2079.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_21.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_22.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_23.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_24.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_26.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_28.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_30.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_32.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_33.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_36.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_41.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_45.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_58.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6458_6.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6461_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6493_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6507_145682.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_673_1898.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_673_1902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_673_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_673_1919.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_673_1939.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6741_58.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_674_1898.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_674_1902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_674_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_674_1919.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_674_1939.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6762_282.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6762_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6762_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6762_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6762_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6762_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6762_9946.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6765_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6765_272.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6765_3913.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_10101.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_145804.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_145833.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_145834.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_145836.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_145839.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_145847.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_145848.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_145853.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_145854.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_145855.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_145857.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_145862.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_145872.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_145878.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_145953.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_145972.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_145976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_145979.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_146012.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_146064.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_146065.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_146066.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_146082.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_146085.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_14965.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_34536.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_3485.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_3492.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_3889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_3891.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_3896.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_3899.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_3903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_3913.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_3918.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_3950.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_6566.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_7295.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_9889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_9914.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_9946.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_9957.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_9967.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_9970.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_9971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_9976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_9978.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_9980.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6766_9983.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_10093.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_10101.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_145804.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_145833.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_145834.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_145836.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_145839.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_145847.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_145848.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_145853.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_145854.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_145855.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_145857.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_145862.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_145872.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_145878.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_145953.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_145972.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_145976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_145979.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_146012.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_146064.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_146065.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_146066.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_146085.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_14965.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_14971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_272.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_34536.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_3485.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_3492.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_3889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_3891.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_3896.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_3899.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_3903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_3913.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_3918.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_6566.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_7295.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_9889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_9914.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_9946.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_9957.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_9967.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_9970.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_9971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_9976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_9977.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_9978.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6767_9980.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_678_1898.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_678_1902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_678_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_678_1919.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_678_1939.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_10093.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_10101.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_145804.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_145833.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_145834.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_145836.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_145839.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_145853.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_145854.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_145855.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_145857.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_145862.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_145872.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_145878.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_145972.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_145976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_145979.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_146012.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_146064.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_146065.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_146066.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_146082.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_146085.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_14965.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_14971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_34536.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_3485.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_3492.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_3889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_3891.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_3896.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_3899.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_3903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_3913.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_3918.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_3950.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_6566.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_7295.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_9889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_9914.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_9946.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_9957.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_9967.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_9970.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_9971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_9976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_9977.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_9978.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_9980.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6794_9983.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_679_1898.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_679_1902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_679_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_679_1919.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_679_1939.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_680_1898.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_680_1902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_680_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_680_1919.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_680_1939.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_681_1898.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_681_1902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_681_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_681_1919.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_681_1939.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_682_1898.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_682_1902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_682_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_682_1919.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_682_1939.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_683_1898.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_683_1902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_683_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_683_1919.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_683_1939.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_684_1898.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_684_1902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_684_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_684_1919.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_684_1939.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_6856_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_685_1898.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_685_1902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_685_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_685_1919.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_685_1939.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_688_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_689_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_690_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_691_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_692_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_693_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_694_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_695_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_696_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_697_1917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7021_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7064_22.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_10093.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_125920.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_24.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_3021.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_34536.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_34537.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_3492.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_3899.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_3903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_3904.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_3913.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_3918.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_7592.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_9914.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_9946.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_9967.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_9970.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_9971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_9977.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_9978.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_9980.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7188_9983.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_10093.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_10101.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_125920.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_14965.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_14966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_15.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_24.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_3021.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_34536.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_34537.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_3485.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_3492.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_3543.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_3896.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_3899.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_3903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_3913.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_3918.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_7592.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_9914.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_9957.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_9970.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_9971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_9976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_9977.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_9978.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_9980.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7189_9983.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_10093.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_10101.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_15.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_24.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_29.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_3021.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_34536.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_34537.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_3485.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_3896.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_3899.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_3903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_3918.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_9914.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_9946.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_9957.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_9967.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_9970.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_9971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_9976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_9978.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_9980.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7190_9983.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7200_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7286_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7290_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7604_146066.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_10093.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_10101.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_145677.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_145804.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_145833.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_145834.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_145836.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_145839.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_145847.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_145848.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_145853.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_145854.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_145855.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_145857.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_145862.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_145872.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_145878.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_145953.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_145972.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_145976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_145979.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_146012.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_146064.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_146065.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_146066.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_146085.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_146803.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_14952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_14965.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_14966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_14971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_34536.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_34537.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_34539.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_3485.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_3492.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_3889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_3891.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_3896.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_3899.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_3903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_3913.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_3918.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_7295.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_9889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_9910.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_9911.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_9914.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_9946.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_9957.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_9967.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_9970.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_9971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_9976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_9977.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_9978.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_9980.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7607_9983.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_10093.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_10101.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_125923.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_145677.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_145804.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_145833.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_145834.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_145836.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_145839.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_145847.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_145848.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_145853.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_145854.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_145855.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_145857.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_145862.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_145872.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_145878.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_145953.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_145972.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_145976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_145979.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_146012.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_146064.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_146065.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_146066.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_146085.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_146803.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_14951.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_14952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_14965.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_14966.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_14971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_219.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_3.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_31.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_34536.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_34537.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_34539.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_3485.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_3492.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_3493.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_3494.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_37.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_3889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_3891.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_3896.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_3899.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_3902.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_3903.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_3913.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_3917.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_3918.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_3954.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_43.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_49.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_6566.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_7295.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_9889.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_9910.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_9911.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_9914.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_9946.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_9952.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_9957.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_9967.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_9970.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_9971.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_9976.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_9977.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_9978.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_9980.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7609_9983.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_7680_146064.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_829_7293.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_833_7293.yaml create mode 100644 carps/configs/problem/HPOB/all/cfg_935_7293.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_5489_3011.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_5489_34.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_5489_3849.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_5489_3866.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_5489_50.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_5886_14.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_5886_2073.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_5886_2076.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_5886_45.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_5886_53.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_5968_10101.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_5968_3896.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_5968_9889.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_5968_9914.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_5968_9952.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_6073_11.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_6073_2076.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_6073_26.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_6073_53.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_6073_6.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_6447_11.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_6447_22.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_6447_31.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_6447_37.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_6447_41.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_678_1898.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_678_1902.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_678_1917.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_678_1919.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_678_1939.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_679_1898.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_679_1902.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_679_1917.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_679_1919.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_679_1939.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_682_1898.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_682_1902.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_682_1917.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_682_1919.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_682_1939.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_7188_125920.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_7188_3.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_7188_3493.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_7188_3899.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_7188_3903.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_7189_3902.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_7189_49.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_7189_9914.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_7189_9957.yaml create mode 100644 carps/configs/problem/HPOB/subset/cfg_7189_9976.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_10101.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_12.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146212.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146606.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146818.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146821.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146822.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_14965.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_167119.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_167120.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_168911.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_168912.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_3.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_31.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_3917.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_53.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_7592.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_9952.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_9977.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_9981.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_10101.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_146818.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_146821.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_146822.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_31.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_3917.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_53.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_9952.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_10101.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_12.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146212.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146606.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146818.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146821.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146822.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_14965.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_167119.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_167120.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_168911.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_168912.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_3.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_31.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_3917.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_53.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_7592.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_9952.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_9977.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_9981.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_10101.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_12.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146212.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146606.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146818.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146821.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146822.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_14965.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_167119.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_167120.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_168911.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_168912.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_3.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_31.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_3917.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_53.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_7592.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_9952.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_9977.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_9981.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_10101.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_12.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146212.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146606.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146818.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146821.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146822.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_14965.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_167119.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_167120.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_168911.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_168912.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_3.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_31.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_3917.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_53.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_7592.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_9952.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_9977.yaml create mode 100644 carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_9981.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Adult.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Higgs.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Letter.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Mnist.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Optdigits.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Poker.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_SVM_default.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_10101.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_12.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146212.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146606.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146818.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146821.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146822.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_14965.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_167119.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_167120.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_168911.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_168912.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_3.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_31.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_3917.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_53.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_7592.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_9952.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_9977.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_9981.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_10101.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_146818.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_146821.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_146822.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_31.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_3917.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_53.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_9952.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_10101.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_12.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146212.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146606.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146818.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146821.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146822.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_14965.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_167119.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_167120.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_168911.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_168912.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_3.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_31.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_3917.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_53.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_7592.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_9952.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_9977.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_9981.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_10101.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_12.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146212.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146606.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146818.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146821.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146822.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_14965.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_167119.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_167120.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_168911.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_168912.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_3.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_31.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_3917.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_53.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_7592.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_9952.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_9977.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_9981.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_10101.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_12.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146212.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146606.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146818.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146821.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146822.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_14965.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_167119.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_167120.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_168911.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_168912.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_3.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_31.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_3917.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_53.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_7592.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_9952.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_9977.yaml create mode 100644 carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_9981.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_10101_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_10101_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_12_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_12_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146212_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146212_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146606_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146606_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146818_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146818_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146821_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146821_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146822_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146822_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_14965_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_14965_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_167119_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_167119_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_167120_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_167120_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_168911_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_168911_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_168912_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_168912_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_31_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_31_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_3917_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_3917_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_3_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_3_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_53_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_53_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_7592_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_7592_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9952_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9952_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9977_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9977_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9981_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9981_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_10101_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_10101_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146818_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146818_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146821_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146821_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146822_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146822_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_31_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_31_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_3917_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_3917_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_53_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_53_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_9952_iter.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_9952_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_10101_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_10101_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_12_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_12_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146212_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146212_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146606_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146606_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146818_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146818_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146821_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146821_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146822_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146822_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_14965_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_14965_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_167119_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_167119_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_167120_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_167120_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_168911_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_168911_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_168912_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_168912_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_31_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_31_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_3917_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_3917_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_3_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_3_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_53_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_53_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_7592_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_7592_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9952_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9952_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9977_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9977_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9981_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9981_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_10101_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_12_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146212_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146606_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146818_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146821_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146822_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_14965_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_167119_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_167120_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_168911_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_168912_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_31_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_3917_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_3_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_53_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_7592_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_9952_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_9977_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_9981_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_10101_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_10101_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_12_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_12_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146212_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146212_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146606_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146606_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146818_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146818_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146821_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146821_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146822_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146822_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_14965_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_14965_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_167119_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_167119_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_167120_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_167120_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_168911_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_168911_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_168912_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_168912_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_31_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_31_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_3917_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_3917_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_3_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_3_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_53_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_53_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_7592_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_7592_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9952_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9952_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9977_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9977_subsample.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9981_n_estimators.yaml create mode 100644 carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9981_subsample.yaml create mode 100644 carps/configs/problem/MFPBench/MO/pd1/cifar100_wideresnet_2048.yaml create mode 100644 carps/configs/problem/MFPBench/MO/pd1/imagenet_resnet_512.yaml create mode 100644 carps/configs/problem/MFPBench/MO/pd1/lm1b_transformer_2048.yaml create mode 100644 carps/configs/problem/MFPBench/MO/pd1/translatewmt_xformer_64.yaml create mode 100644 carps/configs/problem/MFPBench/SO/mfh/mfh3_bad.yaml create mode 100644 carps/configs/problem/MFPBench/SO/mfh/mfh3_good.yaml create mode 100644 carps/configs/problem/MFPBench/SO/mfh/mfh3_moderate.yaml create mode 100644 carps/configs/problem/MFPBench/SO/mfh/mfh3_terrible.yaml create mode 100644 carps/configs/problem/MFPBench/SO/mfh/mfh6_bad.yaml create mode 100644 carps/configs/problem/MFPBench/SO/mfh/mfh6_good.yaml create mode 100644 carps/configs/problem/MFPBench/SO/mfh/mfh6_moderate.yaml create mode 100644 carps/configs/problem/MFPBench/SO/mfh/mfh6_terrible.yaml create mode 100644 carps/configs/problem/MFPBench/SO/pd1/cifar100_wideresnet_2048.yaml create mode 100644 carps/configs/problem/MFPBench/SO/pd1/imagenet_resnet_512.yaml create mode 100644 carps/configs/problem/MFPBench/SO/pd1/lm1b_transformer_2048.yaml create mode 100644 carps/configs/problem/MFPBench/SO/pd1/translatewmt_xformer_64.yaml create mode 100644 carps/configs/problem/Pymoo/MO/kursawe.yaml create mode 100644 carps/configs/problem/Pymoo/MO/omnitest.yaml create mode 100644 carps/configs/problem/Pymoo/MO/sympart.yaml create mode 100644 carps/configs/problem/Pymoo/MO/sympart_rotated.yaml create mode 100644 carps/configs/problem/Pymoo/MO/zdt1.yaml create mode 100644 carps/configs/problem/Pymoo/MO/zdt2.yaml create mode 100644 carps/configs/problem/Pymoo/MO/zdt3.yaml create mode 100644 carps/configs/problem/Pymoo/MO/zdt4.yaml create mode 100644 carps/configs/problem/Pymoo/MO/zdt5.yaml create mode 100644 carps/configs/problem/Pymoo/MO/zdt6.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_iaml_glmnet_1067.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_iaml_glmnet_1489.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_iaml_ranger_1067.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_iaml_ranger_1489.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_iaml_super_1067.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_iaml_super_1489.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_iaml_xgboost_1489.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_iaml_xgboost_40981.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_lcbench_167152.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_lcbench_167185.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_lcbench_189873.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_rbv2_ranger_375.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_rbv2_ranger_40979.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_rbv2_ranger_6.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_rbv2_rpart_1476.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_rbv2_rpart_40499.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_rbv2_rpart_41163.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_rbv2_super_1053.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_rbv2_super_1457.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_rbv2_super_6.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_rbv2_xgboost_12.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_rbv2_xgboost_182.yaml create mode 100644 carps/configs/problem/YAHPO/MO/cfg_rbv2_xgboost_28.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_iaml_glmnet_1067_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_iaml_glmnet_1489_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_iaml_ranger_1067_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_iaml_ranger_1489_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_iaml_super_1067_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_iaml_super_1489_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_iaml_xgboost_1489_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_iaml_xgboost_40981_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_lcbench_167152_epoch_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_lcbench_167185_epoch_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_lcbench_189873_epoch_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_375_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_375_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_40979_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_40979_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_6_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_6_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_1476_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_1476_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_40499_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_40499_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_41163_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_41163_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_1053_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_1053_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_1457_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_1457_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_6_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_6_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_12_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_12_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_182_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_182_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_28_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_28_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_lcbench_167168.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_lcbench_189873.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_lcbench_189906.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_nb301_CIFAR10.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_rbv2_glmnet_375.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_rbv2_glmnet_458.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_rbv2_ranger_16.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_rbv2_ranger_42.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_rbv2_rpart_14.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_rbv2_rpart_40499.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1053.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1063.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1457.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1468.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1479.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_rbv2_super_15.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_rbv2_xgboost_12.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_rbv2_xgboost_1501.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_rbv2_xgboost_16.yaml create mode 100644 carps/configs/problem/YAHPO/SO/cfg_rbv2_xgboost_40499.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_fcnet_fcnet_naval_propulsion.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_fcnet_fcnet_parkinsons_telemonitoring.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_fcnet_fcnet_protein_structure.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_fcnet_fcnet_slice_localization.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_glmnet_1067.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_glmnet_1489.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_glmnet_40981.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_glmnet_41146.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_ranger_1067.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_ranger_1489.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_ranger_40981.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_ranger_41146.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_rpart_1067.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_rpart_1489.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_rpart_40981.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_rpart_41146.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_super_1067.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_super_1489.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_super_40981.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_super_41146.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_xgboost_1067.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_xgboost_1489.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_xgboost_40981.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_iaml_xgboost_41146.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_126025.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_126026.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_126029.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_146212.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167104.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167149.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167152.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167161.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167168.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167181.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167184.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167185.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167190.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167200.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167201.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168329.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168330.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168331.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168335.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168868.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168908.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168910.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189354.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189862.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189865.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189866.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189873.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189905.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189906.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189908.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189909.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_34539.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_3945.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_lcbench_7593.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_nb301_CIFAR10.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1040.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1049.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1050.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1053.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1056.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1063.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1067.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1068.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_11.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1111.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_12.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1220.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_14.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1457.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1461.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1462.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1464.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1468.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1475.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1476.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1478.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1479.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1480.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1485.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1486.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1487.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1489.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1493.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1494.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1497.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_15.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1501.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_151.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1510.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1515.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1590.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_16.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_18.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_181.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_182.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_188.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_22.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_23.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_23381.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_23512.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_23517.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_24.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_28.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_29.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_3.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_300.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_307.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_31.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_312.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_32.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_334.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_37.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_375.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_377.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_38.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40496.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40498.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40499.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40536.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40668.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40670.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40685.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40701.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40900.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40923.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40927.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40966.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40975.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40978.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40979.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40981.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40982.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40983.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40984.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40994.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40996.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41027.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41138.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41142.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41143.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41146.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41150.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41156.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41157.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41159.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41161.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41162.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41163.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41164.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41165.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41166.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41168.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41169.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41212.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41216.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41278.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4134.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4154.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_42.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_44.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4534.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4538.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4541.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_458.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_46.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_469.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_470.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_50.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_54.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_554.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_6.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_60.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_6332.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1040.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1049.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1050.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1053.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1056.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1063.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1067.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1068.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_11.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1111.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_12.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1220.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_14.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1457.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1461.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1462.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1464.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1468.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1475.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1476.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1478.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1479.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1480.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1485.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1486.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1487.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1489.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1493.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1494.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1497.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_15.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1501.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_151.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1510.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1515.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1590.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_16.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_18.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_181.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_182.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_188.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_22.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_23.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_23381.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_23512.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_23517.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_24.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_28.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_29.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_3.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_300.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_307.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_31.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_312.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_32.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_334.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_37.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_375.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_377.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_38.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40496.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40498.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40499.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40536.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40668.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40670.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40685.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40701.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40900.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40966.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40975.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40978.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40979.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40981.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40982.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40983.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40984.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40994.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41027.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41138.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41142.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41143.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41146.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41150.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41156.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41157.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41159.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41161.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41162.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41163.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41164.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41166.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41168.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41169.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41212.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41216.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41278.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4134.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4135.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4154.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_42.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_44.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4534.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4538.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4541.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_458.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_46.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_469.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_470.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_50.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_54.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_554.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_6.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_60.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_6332.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1040.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1049.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1050.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1053.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1056.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1063.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1067.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1068.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_11.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1111.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_12.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1220.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_14.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1457.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1461.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1462.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1464.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1468.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1475.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1476.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1478.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1479.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1480.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1485.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1486.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1487.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1489.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1493.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1494.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1497.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_15.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1501.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_151.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1510.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1515.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1590.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_16.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_18.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_181.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_182.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_188.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_22.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_23.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_23381.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_23512.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_23517.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_24.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_28.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_29.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_3.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_300.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_307.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_31.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_312.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_32.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_334.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_37.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_375.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_377.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_38.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40496.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40498.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40499.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40536.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40668.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40670.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40685.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40701.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40900.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40923.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40927.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40966.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40975.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40978.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40979.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40981.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40982.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40983.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40984.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40994.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40996.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41027.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41138.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41142.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41143.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41146.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41150.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41156.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41157.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41159.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41161.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41162.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41163.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41164.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41165.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41166.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41168.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41169.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41212.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41216.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41278.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4134.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4135.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4154.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_42.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_44.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4534.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4538.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4541.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_458.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_46.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_469.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_470.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_50.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_54.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_554.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_6.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_60.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_6332.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1040.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1049.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1050.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1053.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1056.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1063.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1067.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1068.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_11.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1111.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_12.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1220.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_14.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1457.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1461.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1462.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1464.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1468.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1475.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1476.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1478.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1479.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1480.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1485.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1486.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1487.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1489.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1493.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1494.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1497.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_15.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1501.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_151.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1510.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1515.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1590.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_16.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_18.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_181.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_182.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_188.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_22.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_23.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_23381.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_23512.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_23517.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_24.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_28.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_29.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_3.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_300.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_307.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_31.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_312.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_32.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_334.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_37.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_375.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_377.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_38.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40496.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40498.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40499.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40536.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40668.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40670.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40685.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40701.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40900.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40923.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40927.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40966.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40975.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40978.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40979.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40981.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40982.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40983.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40984.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40994.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40996.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41027.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41138.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41142.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41143.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41146.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41150.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41156.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41157.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41159.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41161.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41162.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41163.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41164.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41165.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41166.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41168.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41169.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41212.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4134.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4135.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4154.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_42.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_44.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4534.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4538.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4541.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_458.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_46.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_469.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_470.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_50.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_54.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_554.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_6.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_60.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_6332.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1040.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1049.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1050.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1053.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1056.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1063.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1067.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1068.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_11.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1111.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_12.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1220.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_14.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1457.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1461.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1462.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1464.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1468.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1475.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1476.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1478.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1479.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1480.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1485.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1486.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1487.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1489.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1493.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1494.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1497.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_15.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1501.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_151.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1510.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1515.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1590.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_16.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_18.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_181.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_182.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_188.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_22.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_23.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_23381.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_24.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_28.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_29.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_3.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_300.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_307.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_31.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_312.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_32.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_334.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_37.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_375.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_377.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_38.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40496.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40498.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40499.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40536.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40668.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40670.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40685.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40701.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40900.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40966.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40975.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40978.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40979.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40981.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40982.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40983.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40984.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40994.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41027.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41138.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41142.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41143.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41146.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41156.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41157.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41162.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41163.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41164.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41169.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41212.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_4134.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_4154.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_42.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_44.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_4534.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_4538.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_458.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_46.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_469.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_470.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_50.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_54.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_6.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_60.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_6332.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1040.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1049.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1050.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1053.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1056.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1063.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1067.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1068.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_11.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1111.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_12.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1220.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_14.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1457.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1461.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1462.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1464.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1468.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1475.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1476.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1478.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1479.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1480.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1485.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1486.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1487.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1489.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1493.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1494.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1497.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_15.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1501.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_151.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1510.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1515.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1590.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_16.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_18.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_181.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_182.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_188.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_22.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_23.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_23381.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_24.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_28.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_29.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_3.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_300.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_307.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_31.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_312.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_32.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_334.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_37.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_375.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_377.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_38.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40496.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40498.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40499.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40536.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40668.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40670.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40685.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40701.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40900.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40966.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40975.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40978.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40979.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40981.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40982.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40983.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40984.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40994.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41027.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41138.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41142.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41143.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41146.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41156.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41157.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41162.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41163.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41164.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41169.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41212.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41216.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41278.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4134.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4135.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4154.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_42.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_44.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4534.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4538.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_458.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_46.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_469.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_470.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_50.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_54.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_6.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_60.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_6332.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1040.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1049.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1050.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1053.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1056.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1063.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1067.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1068.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_11.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1111.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_12.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1220.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_14.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1457.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1461.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1462.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1464.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1468.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1475.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1476.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1478.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1479.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1480.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1485.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1486.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1487.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1489.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1493.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1494.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1497.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_15.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1501.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_151.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1510.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1515.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1590.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_16.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_18.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_181.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_182.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_188.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_22.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_23.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_23381.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_23512.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_23517.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_24.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_28.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_29.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_3.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_300.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_307.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_31.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_312.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_32.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_334.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_37.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_375.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_377.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_38.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40496.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40498.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40499.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40536.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40668.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40670.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40685.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40701.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40900.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40923.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40927.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40966.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40975.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40978.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40979.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40981.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40982.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40983.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40984.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40994.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40996.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41027.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41138.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41142.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41143.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41146.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41150.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41156.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41157.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41159.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41161.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41162.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41163.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41164.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41165.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41166.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41168.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41169.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41212.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41216.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41278.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4134.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4135.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4154.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_42.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_44.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4534.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4538.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4541.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_458.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_46.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_469.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_470.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_50.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_54.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_554.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_6.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_60.yaml create mode 100644 carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_6332.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_lcbench_167168_epoch_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_lcbench_189873_epoch_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_lcbench_189906_epoch_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_nb301_CIFAR10_epoch_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_glmnet_375_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_glmnet_375_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_glmnet_458_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_glmnet_458_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_ranger_16_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_ranger_16_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_ranger_42_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_ranger_42_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_rpart_14_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_rpart_14_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_rpart_40499_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_rpart_40499_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1053_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1053_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1063_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1063_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1457_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1457_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1468_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1468_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1479_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1479_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_15_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_15_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_12_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_12_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_1501_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_1501_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_16_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_16_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_40499_repl_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_40499_trainsize_mf.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_fcnet_fcnet_naval_propulsion_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_fcnet_fcnet_parkinsons_telemonitoring_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_fcnet_fcnet_protein_structure_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_fcnet_fcnet_slice_localization_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_glmnet_1067_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_glmnet_1489_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_glmnet_40981_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_glmnet_41146_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_ranger_1067_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_ranger_1489_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_ranger_40981_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_ranger_41146_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_rpart_1067_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_rpart_1489_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_rpart_40981_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_rpart_41146_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_super_1067_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_super_1489_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_super_40981_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_super_41146_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_xgboost_1067_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_xgboost_1489_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_xgboost_40981_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_xgboost_41146_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_126025_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_126026_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_126029_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_146212_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167104_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167149_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167152_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167161_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167168_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167181_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167184_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167185_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167190_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167200_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167201_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168329_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168330_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168331_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168335_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168868_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168908_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168910_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189354_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189862_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189865_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189866_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189873_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189905_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189906_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189908_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189909_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_34539_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_3945_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_7593_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_nb301_CIFAR10_epoch.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1040_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1040_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1049_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1049_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1050_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1050_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1053_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1053_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1056_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1056_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1063_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1063_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1067_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1067_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1068_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1068_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1111_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1111_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_11_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_11_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1220_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1220_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_12_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_12_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1457_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1457_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1461_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1461_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1462_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1462_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1464_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1464_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1468_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1468_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1475_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1475_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1476_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1476_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1478_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1478_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1479_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1479_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1480_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1480_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1485_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1485_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1486_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1486_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1487_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1487_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1489_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1489_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1493_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1493_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1494_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1494_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1497_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1497_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_14_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_14_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1501_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1501_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1510_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1510_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1515_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1515_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_151_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_151_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1590_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1590_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_15_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_15_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_16_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_16_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_181_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_181_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_182_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_182_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_188_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_188_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_18_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_18_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_22_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_22_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23381_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23381_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23512_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23512_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23517_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23517_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_24_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_24_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_28_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_28_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_29_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_29_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_300_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_300_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_307_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_307_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_312_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_312_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_31_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_31_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_32_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_32_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_334_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_334_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_375_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_375_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_377_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_377_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_37_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_37_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_38_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_38_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_3_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_3_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40496_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40496_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40498_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40498_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40499_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40499_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40536_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40536_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40668_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40668_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40670_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40670_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40685_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40685_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40701_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40701_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40900_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40900_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40923_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40923_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40927_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40927_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40966_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40966_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40975_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40975_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40978_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40978_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40979_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40979_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40981_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40981_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40982_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40982_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40983_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40983_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40984_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40984_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40994_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40994_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40996_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40996_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41027_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41027_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41138_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41138_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41142_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41142_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41143_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41143_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41146_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41146_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41150_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41150_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41156_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41156_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41157_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41157_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41159_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41159_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41161_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41161_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41162_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41162_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41163_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41163_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41164_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41164_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41165_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41165_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41166_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41166_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41168_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41168_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41169_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41169_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41212_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41212_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41216_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41216_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41278_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41278_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4134_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4134_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4154_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4154_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_42_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_42_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_44_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_44_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4534_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4534_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4538_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4538_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4541_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4541_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_458_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_458_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_469_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_469_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_46_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_46_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_470_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_470_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_50_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_50_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_54_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_54_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_554_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_554_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_60_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_60_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_6332_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_6332_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_6_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_6_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1040_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1040_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1049_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1049_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1050_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1050_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1053_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1053_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1056_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1056_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1063_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1063_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1067_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1067_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1068_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1068_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1111_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1111_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_11_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_11_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1220_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1220_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_12_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_12_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1457_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1457_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1461_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1461_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1462_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1462_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1464_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1464_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1468_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1468_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1475_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1475_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1476_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1476_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1478_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1478_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1479_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1479_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1480_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1480_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1485_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1485_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1486_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1486_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1487_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1487_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1489_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1489_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1493_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1493_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1494_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1494_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1497_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1497_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_14_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_14_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1501_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1501_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1510_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1510_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1515_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1515_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_151_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_151_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1590_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1590_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_15_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_15_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_16_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_16_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_181_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_181_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_182_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_182_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_188_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_188_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_18_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_18_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_22_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_22_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23381_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23381_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23512_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23512_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23517_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23517_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_24_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_24_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_28_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_28_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_29_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_29_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_300_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_300_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_307_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_307_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_312_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_312_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_31_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_31_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_32_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_32_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_334_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_334_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_375_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_375_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_377_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_377_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_37_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_37_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_38_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_38_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_3_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_3_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40496_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40496_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40498_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40498_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40499_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40499_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40536_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40536_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40668_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40668_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40670_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40670_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40685_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40685_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40701_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40701_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40900_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40900_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40966_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40966_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40975_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40975_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40978_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40978_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40979_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40979_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40981_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40981_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40982_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40982_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40983_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40983_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40984_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40984_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40994_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40994_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41027_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41027_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41138_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41138_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41142_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41142_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41143_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41143_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41146_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41146_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41150_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41150_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41156_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41156_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41157_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41157_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41159_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41159_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41161_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41161_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41162_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41162_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41163_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41163_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41164_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41164_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41166_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41166_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41168_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41168_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41169_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41169_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41212_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41212_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41216_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41216_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41278_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41278_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4134_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4134_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4135_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4135_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4154_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4154_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_42_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_42_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_44_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_44_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4534_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4534_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4538_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4538_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4541_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4541_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_458_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_458_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_469_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_469_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_46_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_46_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_470_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_470_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_50_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_50_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_54_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_54_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_554_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_554_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_60_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_60_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_6332_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_6332_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_6_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_6_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1040_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1040_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1049_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1049_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1050_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1050_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1053_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1053_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1056_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1056_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1063_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1063_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1067_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1067_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1068_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1068_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1111_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1111_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_11_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_11_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1220_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1220_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_12_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_12_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1457_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1457_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1461_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1461_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1462_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1462_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1464_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1464_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1468_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1468_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1475_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1475_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1476_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1476_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1478_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1478_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1479_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1479_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1480_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1480_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1485_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1485_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1486_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1486_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1487_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1487_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1489_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1489_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1493_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1493_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1494_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1494_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1497_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1497_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_14_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_14_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1501_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1501_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1510_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1510_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1515_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1515_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_151_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_151_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1590_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1590_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_15_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_15_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_16_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_16_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_181_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_181_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_182_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_182_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_188_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_188_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_18_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_18_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_22_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_22_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23381_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23381_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23512_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23512_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23517_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23517_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_24_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_24_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_28_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_28_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_29_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_29_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_300_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_300_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_307_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_307_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_312_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_312_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_31_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_31_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_32_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_32_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_334_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_334_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_375_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_375_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_377_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_377_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_37_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_37_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_38_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_38_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_3_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_3_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40496_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40496_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40498_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40498_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40499_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40499_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40536_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40536_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40668_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40668_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40670_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40670_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40685_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40685_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40701_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40701_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40900_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40900_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40923_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40923_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40927_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40927_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40966_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40966_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40975_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40975_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40978_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40978_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40979_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40979_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40981_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40981_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40982_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40982_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40983_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40983_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40984_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40984_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40994_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40994_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40996_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40996_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41027_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41027_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41138_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41138_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41142_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41142_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41143_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41143_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41146_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41146_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41150_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41150_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41156_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41156_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41157_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41157_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41159_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41159_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41161_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41161_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41162_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41162_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41163_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41163_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41164_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41164_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41165_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41165_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41166_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41166_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41168_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41168_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41169_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41169_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41212_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41212_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41216_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41216_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41278_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41278_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4134_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4134_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4135_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4135_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4154_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4154_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_42_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_42_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_44_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_44_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4534_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4534_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4538_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4538_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4541_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4541_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_458_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_458_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_469_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_469_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_46_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_46_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_470_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_470_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_50_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_50_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_54_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_54_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_554_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_554_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_60_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_60_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_6332_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_6332_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_6_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_6_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1040_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1040_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1049_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1049_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1050_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1050_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1053_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1053_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1056_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1056_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1063_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1063_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1067_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1067_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1068_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1068_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1111_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1111_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_11_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_11_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1220_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1220_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_12_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_12_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1457_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1457_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1461_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1461_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1462_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1462_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1464_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1464_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1468_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1468_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1475_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1475_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1476_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1476_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1478_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1478_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1479_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1479_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1480_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1480_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1485_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1485_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1486_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1486_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1487_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1487_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1489_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1489_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1493_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1493_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1494_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1494_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1497_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1497_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_14_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_14_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1501_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1501_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1510_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1510_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1515_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1515_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_151_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_151_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1590_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1590_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_15_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_15_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_16_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_16_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_181_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_181_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_182_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_182_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_188_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_188_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_18_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_18_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_22_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_22_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23381_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23381_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23512_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23512_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23517_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23517_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_24_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_24_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_28_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_28_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_29_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_29_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_300_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_300_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_307_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_307_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_312_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_312_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_31_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_31_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_32_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_32_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_334_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_334_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_375_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_375_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_377_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_377_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_37_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_37_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_38_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_38_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_3_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_3_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40496_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40496_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40498_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40498_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40499_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40499_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40536_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40536_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40668_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40668_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40670_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40670_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40685_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40685_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40701_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40701_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40900_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40900_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40923_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40923_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40927_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40927_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40966_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40966_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40975_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40975_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40978_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40978_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40979_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40979_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40981_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40981_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40982_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40982_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40983_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40983_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40984_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40984_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40994_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40994_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40996_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40996_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41027_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41027_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41138_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41138_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41142_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41142_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41143_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41143_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41146_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41146_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41150_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41150_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41156_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41156_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41157_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41157_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41159_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41159_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41161_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41161_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41162_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41162_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41163_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41163_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41164_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41164_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41165_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41165_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41166_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41166_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41168_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41168_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41169_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41169_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41212_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41212_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4134_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4134_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4135_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4135_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4154_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4154_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_42_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_42_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_44_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_44_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4534_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4534_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4538_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4538_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4541_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4541_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_458_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_458_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_469_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_469_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_46_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_46_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_470_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_470_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_50_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_50_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_54_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_54_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_554_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_554_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_60_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_60_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_6332_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_6332_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_6_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_6_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1040_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1040_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1049_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1049_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1050_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1050_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1053_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1053_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1056_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1056_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1063_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1063_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1067_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1067_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1068_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1068_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1111_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1111_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_11_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_11_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1220_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1220_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_12_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_12_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1457_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1457_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1461_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1461_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1462_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1462_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1464_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1464_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1468_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1468_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1475_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1475_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1476_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1476_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1478_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1478_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1479_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1479_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1480_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1480_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1485_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1485_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1486_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1486_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1487_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1487_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1489_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1489_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1493_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1493_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1494_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1494_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1497_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1497_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_14_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_14_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1501_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1501_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1510_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1510_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1515_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1515_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_151_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_151_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1590_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1590_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_15_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_15_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_16_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_16_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_181_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_181_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_182_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_182_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_188_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_188_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_18_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_18_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_22_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_22_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_23381_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_23381_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_23_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_23_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_24_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_24_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_28_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_28_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_29_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_29_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_300_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_300_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_307_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_307_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_312_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_312_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_31_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_31_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_32_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_32_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_334_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_334_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_375_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_375_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_377_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_377_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_37_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_37_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_38_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_38_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_3_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_3_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40496_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40496_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40498_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40498_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40499_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40499_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40536_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40536_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40668_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40668_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40670_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40670_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40685_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40685_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40701_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40701_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40900_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40900_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40966_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40966_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40975_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40975_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40978_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40978_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40979_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40979_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40981_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40981_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40982_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40982_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40983_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40983_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40984_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40984_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40994_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40994_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41027_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41027_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41138_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41138_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41142_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41142_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41143_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41143_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41146_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41146_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41156_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41156_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41157_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41157_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41162_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41162_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41163_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41163_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41164_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41164_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41169_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41169_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41212_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41212_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4134_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4134_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4154_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4154_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_42_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_42_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_44_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_44_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4534_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4534_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4538_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4538_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_458_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_458_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_469_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_469_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_46_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_46_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_470_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_470_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_50_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_50_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_54_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_54_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_60_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_60_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_6332_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_6332_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_6_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_6_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1040_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1040_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1049_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1049_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1050_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1050_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1053_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1053_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1056_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1056_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1063_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1063_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1067_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1067_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1068_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1068_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1111_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1111_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_11_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_11_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1220_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1220_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_12_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_12_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1457_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1457_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1461_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1461_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1462_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1462_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1464_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1464_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1468_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1468_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1475_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1475_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1476_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1476_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1478_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1478_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1479_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1479_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1480_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1480_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1485_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1485_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1486_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1486_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1487_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1487_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1489_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1489_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1493_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1493_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1494_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1494_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1497_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1497_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_14_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_14_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1501_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1501_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1510_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1510_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1515_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1515_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_151_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_151_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1590_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1590_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_15_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_15_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_16_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_16_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_181_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_181_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_182_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_182_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_188_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_188_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_18_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_18_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_22_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_22_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_23381_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_23381_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_23_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_23_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_24_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_24_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_28_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_28_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_29_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_29_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_300_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_300_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_307_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_307_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_312_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_312_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_31_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_31_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_32_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_32_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_334_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_334_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_375_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_375_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_377_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_377_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_37_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_37_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_38_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_38_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_3_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_3_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40496_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40496_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40498_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40498_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40499_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40499_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40536_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40536_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40668_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40668_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40670_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40670_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40685_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40685_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40701_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40701_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40900_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40900_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40966_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40966_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40975_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40975_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40978_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40978_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40979_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40979_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40981_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40981_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40982_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40982_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40983_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40983_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40984_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40984_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40994_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40994_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41027_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41027_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41138_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41138_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41142_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41142_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41143_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41143_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41146_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41146_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41156_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41156_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41157_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41157_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41162_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41162_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41163_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41163_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41164_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41164_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41169_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41169_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41212_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41212_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41216_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41216_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41278_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41278_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4134_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4134_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4135_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4135_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4154_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4154_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_42_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_42_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_44_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_44_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4534_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4534_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4538_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4538_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_458_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_458_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_469_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_469_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_46_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_46_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_470_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_470_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_50_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_50_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_54_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_54_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_60_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_60_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_6332_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_6332_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_6_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_6_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1040_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1040_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1049_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1049_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1050_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1050_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1053_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1053_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1056_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1056_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1063_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1063_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1067_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1067_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1068_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1068_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1111_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1111_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_11_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_11_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1220_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1220_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_12_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_12_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1457_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1457_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1461_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1461_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1462_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1462_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1464_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1464_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1468_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1468_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1475_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1475_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1476_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1476_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1478_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1478_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1479_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1479_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1480_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1480_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1485_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1485_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1486_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1486_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1487_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1487_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1489_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1489_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1493_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1493_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1494_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1494_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1497_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1497_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_14_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_14_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1501_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1501_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1510_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1510_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1515_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1515_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_151_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_151_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1590_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1590_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_15_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_15_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_16_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_16_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_181_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_181_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_182_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_182_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_188_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_188_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_18_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_18_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_22_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_22_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23381_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23381_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23512_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23512_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23517_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23517_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_24_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_24_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_28_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_28_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_29_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_29_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_300_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_300_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_307_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_307_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_312_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_312_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_31_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_31_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_32_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_32_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_334_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_334_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_375_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_375_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_377_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_377_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_37_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_37_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_38_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_38_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_3_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_3_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40496_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40496_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40498_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40498_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40499_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40499_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40536_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40536_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40668_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40668_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40670_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40670_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40685_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40685_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40701_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40701_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40900_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40900_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40923_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40923_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40927_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40927_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40966_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40966_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40975_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40975_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40978_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40978_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40979_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40979_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40981_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40981_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40982_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40982_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40983_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40983_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40984_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40984_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40994_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40994_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40996_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40996_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41027_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41027_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41138_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41138_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41142_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41142_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41143_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41143_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41146_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41146_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41150_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41150_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41156_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41156_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41157_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41157_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41159_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41159_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41161_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41161_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41162_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41162_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41163_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41163_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41164_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41164_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41165_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41165_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41166_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41166_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41168_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41168_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41169_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41169_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41212_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41212_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41216_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41216_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41278_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41278_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4134_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4134_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4135_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4135_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4154_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4154_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_42_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_42_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_44_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_44_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4534_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4534_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4538_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4538_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4541_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4541_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_458_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_458_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_469_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_469_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_46_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_46_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_470_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_470_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_50_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_50_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_54_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_54_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_554_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_554_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_60_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_60_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_6332_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_6332_trainsize.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_6_repl.yaml create mode 100644 carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_6_trainsize.yaml create mode 100644 carps/configs/problem/generate_problems.ipynb create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_bbob_noiseless_16_21_0.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_bbob_noiseless_16_22_0.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_bbob_noiseless_2_2_2.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_bbob_noiseless_32_21_0.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2010_125966.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2073_125968.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2073_125969.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2566_3647.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2629_14951.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_125923.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_145677.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3493.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3889.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3891.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3913.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3917.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_9976.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5970_9978.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_145847.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_145972.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_9914.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_9967.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_9983.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_145972.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_272.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_3913.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_9957.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_9978.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_hpobench_bb_tab_ml_svm_167120.yaml create mode 100644 carps/configs/problem/subselection/blackbox/dev/subset_yahpo_rbv2_ranger_41142_None.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_bbob_noiseless_16_22_1.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_bbob_noiseless_16_22_2.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_bbob_noiseless_2_14_0.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_bbob_noiseless_32_22_0.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_2010_125966.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_2073_125968.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_2073_125969.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_2566_3647.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5860_282.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5891_31.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5918_6.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5970_145855.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5970_146012.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5970_9957.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_145836.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_145857.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_145976.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_146066.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_3896.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_3950.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_9889.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_9971.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_146064.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_146065.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_3494.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_3917.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_9889.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_hpobench_bb_tab_ml_lr_3.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_yahpo_rbv2_ranger_1475_None.yaml create mode 100644 carps/configs/problem/subselection/blackbox/test/subset_yahpo_rbv2_ranger_469_None.yaml create mode 100644 carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_epoch_lcbench_167185_epoch.yaml create mode 100644 carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_repl_rbv2_xgboost_12_repl.yaml create mode 100644 carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_iaml_glmnet_1489_trainsize.yaml create mode 100644 carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_iaml_ranger_1489_trainsize.yaml create mode 100644 carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_ranger_375_trainsize.yaml create mode 100644 carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_ranger_6_trainsize.yaml create mode 100644 carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_rpart_1476_trainsize.yaml create mode 100644 carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_xgboost_12_trainsize.yaml create mode 100644 carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_xgboost_28_trainsize.yaml create mode 100644 carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_epoch_lcbench_167152_epoch.yaml create mode 100644 carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_epoch_lcbench_189873_epoch.yaml create mode 100644 carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_repl_rbv2_ranger_6_repl.yaml create mode 100644 carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_repl_rbv2_rpart_40499_repl.yaml create mode 100644 carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_repl_rbv2_xgboost_182_repl.yaml create mode 100644 carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_trainsize_iaml_glmnet_1067_trainsize.yaml create mode 100644 carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_trainsize_iaml_xgboost_1489_trainsize.yaml create mode 100644 carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_trainsize_rbv2_ranger_40979_trainsize.yaml create mode 100644 carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_trainsize_rbv2_xgboost_182_trainsize.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_hpobench_mf_real_ml_nn_146821_iter.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_hpobench_mf_real_ml_rf_31_subsample.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_mfpbench_SO_mfh_mfh6_moderate.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_iaml_glmnet_41146_trainsize.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_aknn_1497_trainsize.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_glmnet_24_repl.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_glmnet_334_repl.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_ranger_40983_trainsize.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_ranger_41159_repl.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_ranger_41161_repl.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_ranger_41161_trainsize.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_rpart_1220_repl.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_rpart_41165_repl.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_super_40984_repl.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_svm_24_repl.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_svm_24_trainsize.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_svm_40975_repl.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_xgboost_1476_repl.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_xgboost_375_trainsize.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_xgboost_40499_trainsize.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_hpobench_mf_real_ml_nn_146821_iter.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_hpobench_mf_real_ml_xgboost_3_subsample.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_aknn_1461_repl.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_aknn_1476_trainsize.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_aknn_40670_trainsize.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_aknn_50_trainsize.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_glmnet_41162_trainsize.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_ranger_40923_repl.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_ranger_40923_trainsize.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_rpart_38_repl.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_40900_repl.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_41156_trainsize.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_4154_repl.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_458_repl.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_458_trainsize.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_svm_40981_trainsize.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_xgboost_1476_trainsize.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_xgboost_1480_repl.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_xgboost_40685_trainsize.yaml create mode 100644 carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_xgboost_41163_repl.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/dev/subset_Pymoo_MO_omnitest.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_rf_167119.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_rf_31.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_svm_146212.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_svm_146818.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_svm_31.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_xgboost_146822.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_xgboost_14965.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_xgboost_167120.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/dev/subset_yahpo_mo_rbv2_rpart_40499_None.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/test/subset_Pymoo_MO_zdt3.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_lr_146606.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_lr_167119.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_lr_168912.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_nn_146821.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_rf_146212.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_svm_10101.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_svm_146821.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_svm_7592.yaml create mode 100644 carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_xgboost_168911.yaml create mode 100644 carps/container/__init__.py create mode 100644 carps/container/container_script_optimizer.py create mode 100644 carps/container/container_script_problem.py create mode 100644 carps/container/container_script_runner.py create mode 100644 carps/container/containerized_problem_client.py create mode 100644 carps/container/create_cluster_configs.py create mode 100644 carps/container/py_experimenter.yaml create mode 100644 carps/container/wrapper.py create mode 100644 carps/loggers/__init__.py create mode 100644 carps/loggers/abstract_logger.py create mode 100644 carps/loggers/database_logger.py create mode 100644 carps/loggers/file_logger.py create mode 100644 carps/optimizers/__init__.py create mode 100644 carps/optimizers/dehb.py create mode 100644 carps/optimizers/dummy_optimizer.py create mode 100644 carps/optimizers/hebo.py create mode 100644 carps/optimizers/nevergrad.py create mode 100644 carps/optimizers/optimizer.py create mode 100644 carps/optimizers/optuna.py create mode 100644 carps/optimizers/random_search.py create mode 100644 carps/optimizers/scikit_optimize.py create mode 100644 carps/optimizers/smac14.py create mode 100644 carps/optimizers/smac20.py create mode 100644 carps/optimizers/synetune.py create mode 100644 carps/py.typed create mode 100644 carps/run.py create mode 100644 carps/run_from_db.py create mode 100644 carps/runenv.py create mode 100644 carps/tasks/__init__.py create mode 100644 carps/utils/__init__.py create mode 100644 carps/utils/check_missing.py create mode 100644 carps/utils/database/__init__.py create mode 100644 carps/utils/database/reset_experiments.py create mode 100644 carps/utils/exceptions.py create mode 100644 carps/utils/index_configs.py create mode 100644 carps/utils/loggingutils.py create mode 100644 carps/utils/overridefinder.py create mode 100644 carps/utils/pareto_front.py create mode 100644 carps/utils/requirements.py create mode 100644 carps/utils/running.py create mode 100644 carps/utils/task.py create mode 100644 carps/utils/trials.py create mode 100644 carps/utils/types.py create mode 100644 container_recipes/benchmarks/BBOB/BBOB.recipe create mode 100644 container_recipes/benchmarks/BBOB/BBOB_requirements.txt create mode 100644 container_recipes/benchmarks/DUMMY_Problem/DUMMY_Problem.recipe create mode 100644 container_recipes/benchmarks/DUMMY_Problem/DUMMY_Problem_requirements.txt create mode 100644 container_recipes/benchmarks/HPOB/HPOB.recipe create mode 100644 container_recipes/benchmarks/HPOB/HPOB_requirements.txt create mode 100644 container_recipes/benchmarks/HPOB/download_data.sh create mode 100644 container_recipes/benchmarks/HPOBench/HPOBench_container.recipe create mode 100644 container_recipes/benchmarks/HPOBench/HPOBench_requirements.txt create mode 100644 container_recipes/benchmarks/HPOBench/install_HPOBench_requirements.sh create mode 100644 container_recipes/benchmarks/MFPBench/MFPBench_pip_freeze.txt create mode 100644 container_recipes/benchmarks/MFPBench/MFPBench_requirements.txt create mode 100644 container_recipes/benchmarks/MFPBench/download_data.sh create mode 100644 container_recipes/benchmarks/Pymoo/Pymoo_pip_freeze.txt create mode 100644 container_recipes/benchmarks/Pymoo/Pymoo_requirements.txt create mode 100644 container_recipes/benchmarks/YAHPO/YAHPO.recipe create mode 100644 container_recipes/benchmarks/YAHPO/YAHPO_requirements.txt create mode 100644 container_recipes/benchmarks/YAHPO/prepare_yahpo.sh create mode 100644 container_recipes/general/general_requirements_container_optimizer.txt create mode 100644 container_recipes/general/general_requirements_container_problem.txt create mode 100644 container_recipes/general/general_requirements_container_runner.txt create mode 100644 container_recipes/general/runner.recipe create mode 100644 container_recipes/optimizers/DEHB/DEHB_pip_freeze.txt create mode 100644 container_recipes/optimizers/DEHB/DEHB_requirements.txt create mode 100644 container_recipes/optimizers/DUMMY_Optimizer/DUMMY_Optimizer.recipe create mode 100644 container_recipes/optimizers/DUMMY_Optimizer/DUMMY_Optimizer_requirements.txt create mode 100644 container_recipes/optimizers/HEBO/HEBO.recipe create mode 100644 container_recipes/optimizers/HEBO/HEBO_install.sh create mode 100644 container_recipes/optimizers/HEBO/HEBO_requirements.txt create mode 100644 container_recipes/optimizers/Nevergrad/Nevergrad_pip_freeze.txt create mode 100644 container_recipes/optimizers/Nevergrad/Nevergrad_requirements.txt create mode 100644 container_recipes/optimizers/Optuna/Optuna_requirements.txt create mode 100644 container_recipes/optimizers/RandomSearch/RandomSearch.recipe create mode 100644 container_recipes/optimizers/SMAC3-1.4/SMAC3-1.4.recipe create mode 100644 container_recipes/optimizers/SMAC3-1.4/SMAC3-1.4_requirements.txt create mode 100644 container_recipes/optimizers/SMAC3/SMAC3.recipe create mode 100644 container_recipes/optimizers/SMAC3/SMAC3_requirements.txt create mode 100644 container_recipes/optimizers/Scikit_Optimize/Scikit_Optimize_requirements.txt create mode 100644 container_recipes/optimizers/Scikit_Optimize/Scikit_optimize_pip_freeze.txt create mode 100644 container_recipes/optimizers/SyneTune/SyneTune.recipe create mode 100644 container_recipes/optimizers/SyneTune/SyneTune_requirements.txt create mode 100644 "docs/assets/DALL\302\267E 2024-04-02 17.36.45 - A cute carp logo, stylized and simplistic, with a happy expression. The carp should be designed with smooth lines and rounded shapes to enhance its ad.webp" create mode 100644 "docs/assets/DALL\302\267E 2024-04-02 17.38.06 - A cute carp logo, stylized and simplistic, with a happy expression. The carp should be designed with smooth lines and rounded shapes to enhance its ad.webp" create mode 100644 "docs/assets/DALL\302\267E 2024-04-04 11.19.56 - A logo featuring two cute carps, designed with a playful and endearing style. The carps should be depicted facing each other, creating a heart shape w.webp" create mode 100644 "docs/assets/DALL\302\267E 2024-04-04 11.20.42 - A logo featuring multiple cute carps, designed with a whimsical and charming style. The carps should be depicted with smiling faces, conveying a sense.webp" create mode 100644 "docs/assets/DALL\302\267E 2024-04-04 11.20.45 - A logo featuring multiple cute carps, designed with a whimsical and charming style. The carps should be depicted with smiling faces, conveying a sense.webp" create mode 100644 docs/assets/logo.webp create mode 100644 docs/changelog.md create mode 100644 docs/commands.md create mode 100644 docs/contributing/contributing-a-benchmark.md create mode 100644 docs/contributing/contributing-an-optimizer.md create mode 100644 docs/contributing/index.md create mode 100644 docs/guides/containers.md create mode 100644 docs/guides/database.md create mode 100644 docs/guides/first-steps.md create mode 100644 docs/guides/hydra.md create mode 100644 docs/guides/large-scale-benchmarking.md create mode 100644 docs/hooks/debug_which_page_is_being_rendered.py create mode 100644 docs/images/smac_benchmarking_containers.drawio create mode 100644 docs/images/smac_benchmarking_containers.drawio.pdf create mode 100644 docs/images/smac_benchmarking_containers.drawio.png create mode 100644 docs/index.md create mode 100644 docs/installation.md create mode 100644 examples/README.rst create mode 100644 examples/myexample.py create mode 100644 fix_optimizer_name.ipynb create mode 100644 mkdocs.yaml create mode 100644 notebooks/benchmark_footprint.ipynb create mode 100644 notebooks/calc_runtime.py create mode 100644 notebooks/define_runtimes.py create mode 100644 notebooks/inspect_problems.ipynb create mode 100644 notebooks/plot.ipynb create mode 100644 notebooks/sketch_plots.ipynb create mode 100644 notebooks/subselect.ipynb create mode 100644 pyproject.toml create mode 100644 requirements.txt create mode 100644 scripts/build_containers.sh create mode 100644 scripts/build_env.sh create mode 100644 scripts/build_envs.sh create mode 100644 scripts/build_superenv.sh create mode 100755 scripts/compile_noctua2.sh create mode 100644 scripts/convert_logs_csv_to_parquet.py create mode 100644 scripts/launch_missing.py create mode 100644 scripts/patch_yahpo_configspace.py create mode 100644 scripts/prepare_subselection_data.py create mode 100644 scripts/prepare_yahpo.sh create mode 100644 scripts/run_BB.sh create mode 100644 scripts/run_BB_BBOB.sh create mode 100644 scripts/run_BB_HPOB.sh create mode 100644 scripts/run_BB_HPOBench.sh create mode 100644 scripts/run_BB_YAHPO.sh create mode 100644 scripts/run_BB_subselection.sh create mode 100644 scripts/run_MF.sh create mode 100644 scripts/run_MF_HPOBench.sh create mode 100644 scripts/run_MF_MFPBench.sh create mode 100644 scripts/run_MF_YAHPO.sh create mode 100644 scripts/run_MF_subselection.sh create mode 100644 scripts/run_MO.sh create mode 100644 scripts/run_MOMF.sh create mode 100644 scripts/run_MO_subselection.sh create mode 100644 scripts/run_small.sh create mode 100755 scripts/start_container_noctua2.sh create mode 100644 subselection/README.md create mode 100644 subselection/SDSSP_Heuristics/README.md create mode 100755 subselection/SDSSP_Heuristics/a.out create mode 100755 subselection/SDSSP_Heuristics/again.sh create mode 100644 subselection/SDSSP_Heuristics/commands.sh create mode 100755 subselection/SDSSP_Heuristics/extract.sh create mode 100644 subselection/SDSSP_Heuristics/extract_csv.py create mode 100755 subselection/SDSSP_Heuristics/format.sh create mode 100644 subselection/SDSSP_Heuristics/match_index.py create mode 100755 subselection/SDSSP_Heuristics/run.sh create mode 100644 subselection/SDSSP_Heuristics/shift_v2nobrute.c create mode 100755 subselection/SDSSP_Heuristics/split.sh create mode 100644 subselection/SDSSP_Heuristics/subselect.py create mode 100644 subselection/create_subset_configs.py create mode 100644 subselection/get_fullset.py create mode 100644 subselection/inspect.ipynb create mode 100644 test_container_benchmark.sh create mode 100644 tests/__init__.py create mode 100644 tests/test_configs.py create mode 100644 tests/test_hpobench_instantiation.py create mode 100644 tmp.ipynb diff --git a/.github/workflows/citation_cff.yml b/.github/workflows/citation_cff.yml new file mode 100644 index 000000000..707a71c4b --- /dev/null +++ b/.github/workflows/citation_cff.yml @@ -0,0 +1,19 @@ +name: cffconvert + +on: + push: + paths: + - CITATION.cff + +jobs: + validate: + name: "validate" + runs-on: ubuntu-latest + steps: + - name: Check out a copy of the repository + uses: actions/checkout@v2 + + - name: Check whether the citation metadata from CITATION.cff is valid + uses: citation-file-format/cffconvert-github-action@2.0.0 + with: + args: "--validate" diff --git a/.github/workflows/doc-deploy.yml b/.github/workflows/doc-deploy.yml new file mode 100644 index 000000000..1979318e7 --- /dev/null +++ b/.github/workflows/doc-deploy.yml @@ -0,0 +1,35 @@ +# Right now this just publishes the docs, does nothing to PyPI +name: release +on: + workflow_dispatch: +jobs: + docs: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.10" + cache: pip + - run: python -m pip install ".[dev]" + - name: "Deploy Docs" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + git config user.name doc-bot + git config user.email doc-bot@carp-s.com + current_version=$(git tag | sort --version-sort | tail -n 1) + + # This block will rename previous retitled versions + retitled_versions=$(mike list -j | jq ".[] | select(.title != .version) | .version" | tr -d '"') + for version in $retitled_versions; do + mike retitle "${version}" "${version}" + done + + echo "Deploying docs for ${current_version}" + mike deploy \ + --push \ + --title "${current_version} (latest)" \ + --update-aliases \ + "${current_version}" \ + "latest" diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 000000000..fc8d7bcf7 --- /dev/null +++ b/.github/workflows/docs.yml @@ -0,0 +1,27 @@ +# This workflow is just to test that the docs build successfully. +name: docs-test +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true +on: + workflow_dispatch: + push: + branches: + - main + pull_request: + branches: + - main +permissions: + contents: write +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.10" + - name: "Install dependencies" + run: python -m pip install -e ".[dev]" + - name: "Build Docs" + run: mkdocs build --clean --strict diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml new file mode 100644 index 000000000..79d9e8505 --- /dev/null +++ b/.github/workflows/pre-commit.yml @@ -0,0 +1,38 @@ +name: Pre-commit +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +on: + workflow_dispatch: + push: + branches: + - main + - development + pull_request: + branches: + - main + - development + +jobs: + source-test: + runs-on: "ubuntu-latest" + strategy: + fail-fast: false + matrix: + python-version: ["3.10"] + os: ["ubuntu-latest"] + + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: "3.10" + cache: pip + - name: Run Pre Commit + run: | + pip install pre-commit + pre-commit install + pre-commit run --all-files diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml new file mode 100644 index 000000000..2952c71ba --- /dev/null +++ b/.github/workflows/pytest.yml @@ -0,0 +1,39 @@ +name: Tests +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +on: + # Allow to manually trigger through github API + workflow_dispatch: + + # Triggers with push to main + push: + branches: + - main + + # Triggers with push to a PR aimed at main + pull_request: + branches: + - main + +jobs: + source-test: + name: ${{ matrix.python-version }}-${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + python-version: ["3.10"] + os: ["ubuntu-latest"] + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + - run: python -m pip install -e ".[dev]" + - run: python -m pytest -v tests diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..a5a3e03bf --- /dev/null +++ b/.gitignore @@ -0,0 +1,170 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so +.idea + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# Yahpo data +yahpo_data_r + +# Container +containers + +data +outputs +runs +runsold +*.json +*.code-workspace +/.idea/misc.xml +/.idea/modules.xml +/.idea/inspectionProfiles/profiles_settings.xml +/.idea/SMACBenchmarking.iml +/.idea/vcs.xml +/.idea/.gitignore +/.codecarbon.config + +/carps/container/credentials.yaml +carps.db +*.jsonl +*.sif +logs +/*.db +*.pdf +*.pickle +*.csv +*.tex +*run_missing.sh +*.png +runsold +multirun +runs_subset +runs* +*.parquet +run-data* +*.txt \ No newline at end of file diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 000000000..8ea89828a --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,52 @@ +default_language_version: + python: python3 +files: | + (?x)^( + carps| + tests + )/.*\.py$ +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.6.0 + hooks: + - id: check-added-large-files + files: ".*" + - id: check-case-conflict + files: ".*" + - id: check-merge-conflict + files: ".*" + - id: check-yaml + files: ".*" + - id: end-of-file-fixer + files: ".*" + types: ["yaml"] + - id: check-toml + files: ".*" + types: ["toml"] + - id: debug-statements + files: '^src/.*\.py$' + - repo: https://github.com/pre-commit/mirrors-mypy + rev: v1.10.0 + hooks: + - id: mypy + additional_dependencies: + - "types-pyyaml" + args: + - "--no-warn-return-any" # Disable this because it doesn't know about 3rd party imports + - "--ignore-missing-imports" + - "--show-traceback" + - repo: https://github.com/python-jsonschema/check-jsonschema + rev: 0.28.4 + hooks: + - id: check-github-workflows + files: '^github/workflows/.*\.ya?ml$' + types: ["yaml"] + - id: check-dependabot + files: '^\.github/dependabot\.ya?ml$' + - repo: https://github.com/charliermarsh/ruff-pre-commit + rev: v0.4.5 + hooks: + - id: ruff + args: [--fix, --exit-non-zero-on-fix, --no-cache] + - id: ruff-format + diff --git a/AUTHORS.md b/AUTHORS.md new file mode 100644 index 000000000..de29a585e --- /dev/null +++ b/AUTHORS.md @@ -0,0 +1,12 @@ +# Credits + + +## Development Lead + +Carolin Benjamins +Helena Graf + +## Contributors + + +None yet. Why not be the first? diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..4e51470c1 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1 @@ +# Version 0.0.1 diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 000000000..5b24f13ee --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,28 @@ +--- +cff-version: 1.2.0 + +message: "This is the message displayed when viewing the citation on github" + +title: "CARP-S" +date-released: "<>" + +url: "https://automl.github.io/CARP-S/main/" + +repository-code: "https://github.com/automl/CARP-S" + +version: "0.1.0" + +type: "template" +keywords: + - "template" + +<> + +authors: + - family-names: "Benjamins" + given-names: "Carolin" + affiliation: "Leibniz University Hannover, Germany" + - family-names: "Graf" + given-names: "Helena" + affiliation: "Leibniz University Hannover, Germany" +... diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..ab1581dcc --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,116 @@ +# Contributing +Contributions are welcome, and they are greatly appreciated! Every little bit +helps, and credit will always be given. + +You can contribute in many ways: + +## Types of Contributions + +### Report Bugs + +Report bugs at [https://github.com/automl/CARP-S/issues](https://github.com/automl/CARP-S/issues). + +If you are reporting a bug, please include: + +- Your operating system name and version. +- Any details about your local setup that might be helpful in troubleshooting. +- Detailed steps to reproduce the bug. + +### Fix Bugs + +Look through the GitHub issues for bugs. Anything tagged with "bug" and "help +wanted" is open to whoever wants to implement it. + +### Implement Features + +Look through the GitHub issues for features. Anything tagged with "enhancement" +and "help wanted" is open to whoever wants to implement it. + +### Write Documentation + +CARP-S could always use more documentation, whether as part of the +official CARP-S docs, in docstrings, or even on the web in blog posts, +articles, and such. + +### Submit Feedback + +The best way to send feedback is to file an issue at https://github.com/automl/CARP-S/issues. + +If you are proposing a feature: + +- Explain in detail how it would work. +- Keep the scope as narrow as possible, to make it easier to implement. +- Remember that this is a volunteer-driven project, and that contributions are welcome :) + +## Get Started! + +Ready to contribute? Here's how to set up `CARP-S` for local development. + +Fork the `CARP-S` repo on GitHub and then clone your fork locally: +```bash +git clone git@github.com:YOUR_NAME_HERE/CARP-S.git +cd CARP-S +``` + +Install your local copy into a virtualenv. +We'll also install [`pre-commit`](https://pre-commit.com/) which runs some code quality checks. +```bash +python -m venv .venv +pip install -e ".[dev]" +pre-commit install +``` + +Create a branch for local development: +```bash +git checkout -b name-of-your-bugfix-or-feature +``` + +Now you can make your changes locally! + +When you're done making changes, check that your changes pass ruff, including testing other Python versions: +```bash +python setup.py test or pytest +``` +Commit your changes and push your branch to GitHub: + +```bash +git add . +git commit -m "Your detailed description of your changes." +git push origin name-of-your-bugfix-or-feature +``` +Submit a [pull request](https://github.com/automl/CARP-S/pulls) through the GitHub website! + +## Local Development + +### Virtual Environments +You can try to install all dependencies into one big environment, but probably there are package clashes. +Therefore, you can build one virtual environment for each optimizer-benchmark combination. +Either run `scripts/build_envs.sh` to build all existing combinations or copy the combination and run as needed. It will create an environment with name `automlsuite_${OPTIMIZER_CONTAINER_ID}_${BENCHMARK_ID}`. + +## Pull Request Guidelines +Before you submit a pull request, check that it meets these guidelines: + +1. The pull request should include tests. +2. If the pull request adds functionality, the docs should be updated. +Put your new functionality into a function with a docstring, and add the feature to the list in `README.md`. +3. The pull request should work for `Python 3.9` and +make sure that the tests pass for all supported Python versions. + +## Testing +To run a subset of tests: +```bash +pytest tests/some_file.py # Run tests only in a certain file +pytest -k "test_mytest" # Find tests with a name matching "test_mytest" +``` + +## Deploying +A reminder for the maintainers on how to deploy. +Make sure all your changes are committed (including an entry in `CHANGELOG.md`). + +Update the version in `pyproject.toml`, then run: + +```bash +git tag "x.y.z" # Replace with your version +git push +git push --tags +``` diff --git a/LICENSE b/LICENSE new file mode 100644 index 000000000..fc3a446ca --- /dev/null +++ b/LICENSE @@ -0,0 +1,32 @@ + + +BSD License + +Copyright (c) 2024, Carolin Benjamins +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, this + list of conditions and the following disclaimer in the documentation and/or + other materials provided with the distribution. + +* Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY +OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE +OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. + diff --git a/LOCAL_DEVELOPMENT.md b/LOCAL_DEVELOPMENT.md new file mode 100644 index 000000000..e69de29bb diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 000000000..17462f872 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,17 @@ +include AUTHORS.rst +include CONTRIBUTING.rst +include HISTORY.rst +include LICENSE +include README.rst + +recursive-include tests * +recursive-exclude * __pycache__ +recursive-exclude * *.py[co] +recursive-exclude container_recipes * +recursive-exclude examples * +recursive-exclude notebooks * +recursive-exclude scripts * +recursive-exclude subselection * + +recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif +recursive-include carps/configs * diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..8c8f813d3 --- /dev/null +++ b/Makefile @@ -0,0 +1,66 @@ +# These have been configured to only really run short tasks. Longer form tasks +# are usually completed in github actions. + +SHELL := /bin/bash + +NAME := CARP-S +PACKAGE_NAME := carps +VERSION := 0.1.0 + +DIST := dist + +.PHONY: help install-dev clean-build check build docs publish test + +help: + @echo "Makefile ${NAME}" + @echo "* install-dev to install all dev requirements and install pre-commit" + @echo "* clean-build to clean any build files" + @echo "* check to run the pre-commit check" + @echo "* build to build a dist" + @echo "* docs to generate and view the html files, checks links" + @echo "* publish to help publish the current branch to pypi" + @echo "* test to run the tests" + +PYTHON ?= python + +test: + $(PYTHON) -m pytest tests + +docs: + $(PYTHON) -m webbrowser -t "http://127.0.0.1:8000/" + $(PYTHON) -m mkdocs serve --clean + +check: + pre-commit run --all-files + +install-dev: + pip install -e ".[dev]" + pre-commit install + +clean-build: + rm -rf ${DIST} + +# Build a distribution in ./dist +build: + $(PYTHON) -m pip install build + $(PYTHON) -m build --sdist + +# Publish to testpypi +# Will echo the commands to actually publish to be run to publish to actual PyPi +# This is done to prevent accidental publishing but provide the same conveniences +publish: clean-build build + read -p "Did you update the version number in Makefile, pyproject.toml, and CITATION.cff?" + + $(PIP) install twine + $(PYTHON) -m twine upload --repository testpypi ${DIST}/* + @echo + @echo "Test with the following:" + @echo "* Create a new virtual environment to install the uplaoded distribution into" + @echo "* Run the following:" + @echo "--- pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ ${PACKAGE_NAME}==${VERSION}" + @echo + @echo "* Run this to make sure it can import correctly, plus whatever else you'd like to test:" + @echo "--- python -c 'import ${PACKAGE_NAME}'" + @echo + @echo "Once you have decided it works, publish to actual pypi with" + @echo "--- python -m twine upload dist/*" diff --git a/README.md b/README.md new file mode 100644 index 000000000..b29019f32 --- /dev/null +++ b/README.md @@ -0,0 +1,127 @@ +# CARP-S +Welcome to CARP-S! +This repository contains a benchmarking framework for optimizers. +It allows flexibly combining optimizers and benchmarks via a simple interface, and logging experiment results +and trajectories to a database. + +The main topics of this README are: +- [Installation](#installation) +- [Minimal Example](#minimal-example) +- [Commands](#commands) +- [Adding a new Optimizer or Benchmark](#adding-a-new-optimizer-or-benchmark) + +For more details on CARP-S, please have a look at the +[documentation](https://AutoML.github.io/CARP-S/latest/). + +## Installation +To install CARP-S, you can simply use `pip`: + +```bash +conda create -n carps python=3.11 +conda activate carps +pip install carps +``` + +Additionally, you need to install the requirements for the benchmark and optimizer that you want to use. +For example, if you want to use the `SMAC2.0` optimizer and the `BBOB` benchmark, you need to install the +requirements for both of them via: + +```bash +pip install carps[smac,bbob] +``` + +All possible install options for benchmarks are: +```bash +dummy,bhob,hpob,hpobench,mfpbench,pymoo,yahpoo +``` + +All possible install options for optimizers are: +```bash +dummy,dehb,hebo,nevergrad,optuna,skopt,smac,smac14,synetune +``` + +Please note that installing all requirements for all benchmarks and optimizers in a single +environment will not be possible due to conflicting dependencies. + +If you want to install from source, you can clone the repository and install CARP-S via: + +```bash +git clone https://github.com/AutoML/CARP-S.git +cd CARP-S +conda create -n carps python=3.11 +conda activate carps + +# Install for usage +pip install . +``` + +For installing the requirements for the optimizer and benchmark, you can then use the following command: +```bash +pip install ".[smac,bbob]" +``` + +If you want to install CARP-S for development, you can use the following command: +```bash +make install-dev +``` + +## Minimal Example +Once the requirements for both an optimizer and a benchmark, e.g. `SMAC2.0` and `BBOB`, are installed, you can run +one of the following minimal examples to benchmark `SMAC2.0` on `BBOB` directly with Hydra: + +```bash +# Run SMAC BlackBoxFacade on certain BBOB problem +python -m carps.run +optimizer/smac20=blackbox +problem/BBOB=cfg_4_1_4_0 seed=1 task.n_trials=25 + +# Run SMAC BlackBoxFacade on all available BBOB problems for 10 seeds +python -m carps.run +optimizer/smac20=blackbox '+problem/BBOB=glob(*)' 'seed=range(1,11)' -m +``` + +For the second command, the Hydra -m (or --multirun) option indicates that multiple runs will be +performed over a range of parameter values. In this case, it's indicating that the benchmarking +should be run for all available BBOB problems (+problem/BBOB=glob(*)) and for 10 different +seed values (seed=range(1,11)). + +## Commands + +You can run a certain problem and optimizer combination directly with Hydra via: +```bash +python -m carps.run +problem=... +optimizer=... seed=... -m +``` + +Another option is to fill the database with all possible combinations of problems and optimizers +you would like to run: +```bash +python -m carps.container.create_cluster_configs +problem=... +optimizer=... -m +``` + +Then, run them from the database with: +```bash +python -m carps.run_from_db +``` + +To check whether any runs are missing, you can use the following command. It will create +a file `runcommands_missing.sh` containing the missing runs: +```bash +python -m carps.utils.check_missing +``` + +To collect all run data generated by the file logger into csv files, use the following command: +```bash +python -m carps.analysis.gather_data +``` +The csv files are then located in ``. `logs.csv` contain the trial info and values and +`logs_cfg.csv` contain the experiment configuration. +The experiments can be matched via the column `experiment_id`. + +Experiments with error status (or any other status) can be reset via: +```bash +python -m carps.utils.database.reset_experiments +``` + +## Adding a new Optimizer or Benchmark +For instructions on how to add a new optimizer or benchmark, please refer to the contributing +guidelines for +[benchmarks](https://automl.github.io/CARP-S/latest/contributing/contributing-a-benchmark/) +and +[optimizers](https://automl.github.io/CARP-S/latest/contributing/contributing-an-optimizer/). diff --git a/carps/__init__.py b/carps/__init__.py new file mode 100644 index 000000000..675153e97 --- /dev/null +++ b/carps/__init__.py @@ -0,0 +1,14 @@ +import datetime + +name = "CARP-S" +package_name = "carps" +author = "AutoML" +author_email = "smac@ai.uni-hannover.de" +description = "Benchmark SMAC" +url = "https://www.automl.org" +project_urls = { + "Documentation": "https://AutoML.github.io/SMACBenchmarking/main", + "Source Code": "https://github.com/AutoML/carps", +} +copyright = f"Copyright {datetime.date.today().strftime('%Y')}, AutoML" +version = "0.0.1" diff --git a/carps/analysis/__init__.py b/carps/analysis/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/carps/analysis/calc_hypervolume.py b/carps/analysis/calc_hypervolume.py new file mode 100644 index 000000000..261a07a6d --- /dev/null +++ b/carps/analysis/calc_hypervolume.py @@ -0,0 +1,111 @@ +from __future__ import annotations + +import json +from pathlib import Path +from typing import Any + +import fire +import numpy as np +import pandas as pd +from pymoo.indicators.hv import HV + +from carps.analysis.gather_data import convert_mixed_types_to_str + +run_id = ["scenario", "benchmark_id", "problem_id", "optimizer_id", "seed"] + + +def gather_trajectory(x: pd.DataFrame) -> pd.DataFrame: + metadata = dict(zip(run_id, x.name, strict=False)) + data = [] + for n_trials, gdf in x.groupby("n_trials"): + cost_inc = ( + gdf["trial_value__cost_raw"].apply(eval).apply(lambda x: np.array([np.array(c) for c in x])).to_numpy() + ) + n_obj = len(cost_inc[0]) + cost_inc = np.concatenate(cost_inc).reshape(-1, n_obj) + D = { + "n_trials": n_trials, + "n_incumbents": len(gdf), + "trial_value__cost": cost_inc, + "trial_value__cost_inc": cost_inc, + } + D.update(metadata) + data.append(D) + return pd.DataFrame(data) + + +def add_reference_point(x: pd.DataFrame) -> pd.DataFrame: + costs = x["trial_value__cost_inc"].apply(lambda x: np.array([np.array(c) for c in x])).to_list() + costs = np.concatenate(costs) + reference_point = np.max(costs, axis=0) + x["reference_point"] = [reference_point] * len(x) + return x + + +def calc_hv(x: pd.DataFrame) -> pd.DataFrame: + F = np.concatenate(np.array([np.array(p) for p in x["trial_value__cost_inc"].to_numpy()])) + + ind = HV(ref_point=x["reference_point"].iloc[0], pf=None, nds=False) + x["hypervolume"] = ind(F) + return x + + +def serialize_array(arr: np.ndarray): + return json.dumps(arr.tolist()) + + +def deserialize_array(serialized_arr): + deserialized = serialized_arr + try: + deserialized = np.array(json.loads(serialized_arr)) + print(deserialized) + except Exception as e: + print(e) + print(serialized_arr) + return deserialized + + +def maybe_serialize(x: Any) -> Any: + if isinstance(x, np.ndarray): + return serialize_array(x) + else: + return x + + +def maybe_deserialize(x: Any) -> Any: + if isinstance(x, str): + return deserialize_array(x) + else: + return x + + +def calculate_hypervolume(rundir: str) -> None: + fn = Path(rundir) / "logs.parquet" + if not fn.is_file(): + raise ValueError( + f"Cannot find {fn}. Did you run `python -m carps.analysis.gather_data {rundir} trajectory_logs.jsonl`?" + ) + df = pd.read_parquet(fn) + if df["scenario"].nunique() > 2 or df["scenario"].unique()[0] != "multi-objective": + raise ValueError(f"Oops, found some non multi-objective logs in {fn}. This might not work...") + trajectory_df = df.groupby(by=run_id).apply(gather_trajectory).reset_index(drop=True) + trajectory_df = ( + trajectory_df.groupby(by=["scenario", "problem_id"]).apply(add_reference_point).reset_index(drop=True) + ) + trajectory_df = trajectory_df.groupby(by=[*run_id, "n_trials"]).apply(calc_hv).reset_index(drop=True) + trajectory_df.to_csv(Path(rundir) / "trajectory.csv") + trajectory_df = convert_mixed_types_to_str(trajectory_df) + trajectory_df.to_parquet(Path(rundir) / "trajectory.parquet") + + +def load_trajectory(rundir: str) -> pd.DataFrame: + fn = Path(rundir) / "trajectory.parquet" + if not fn.is_file(): + raise ValueError(f"Cannot find {fn}. Did you run `python -m carps.analysis.calc_hypervolume {rundir}`?") + df = pd.read_parquet(fn) + df = df.map(maybe_deserialize) + print(df["trial_value__cost"].iloc[0], type(df["trial_value__cost"].iloc[0])) + + +if __name__ == "__main__": + fire.Fire(calculate_hypervolume) diff --git a/carps/analysis/configs/gather_data_slurm.yaml b/carps/analysis/configs/gather_data_slurm.yaml new file mode 100644 index 000000000..af49c4adf --- /dev/null +++ b/carps/analysis/configs/gather_data_slurm.yaml @@ -0,0 +1,14 @@ +# @package _global_ +defaults: + - override /hydra/launcher: submitit_slurm + +rundir: runs + +hydra: + launcher: + partition: normal + cpus_per_task: 32 + name: carps + timeout_min: 120 + # mem_gb: 8 + mem_per_cpu: 4G diff --git a/carps/analysis/final_performance.py b/carps/analysis/final_performance.py new file mode 100644 index 000000000..53a81a1f8 --- /dev/null +++ b/carps/analysis/final_performance.py @@ -0,0 +1,94 @@ +from __future__ import annotations + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pandas as pd +import seaborn as sns + +from carps.analysis.utils import get_color_palette, savefig, setup_seaborn + + +def plot_final_performance_boxplot( + df: pd.DataFrame, + x="n_trials_norm", + y="trial_value__cost_inc_norm", + hue="optimizer_id", + budget_var: str = "n_trials_norm", + max_budget: float = 1, + figure_filename: str = "figures/final_performance_boxplot.pdf", + figsize: tuple[int, int] = (6, 4), + **boxplot_kwargs, +) -> tuple[plt.Figure, matplotlib.axes.Axes]: + setup_seaborn() + palette = get_color_palette(df) + fig = plt.figure(figsize=figsize, dpi=300) + ax = fig.add_subplot(111) + ax = sns.boxplot( + data=df[np.isclose(df[budget_var], max_budget)], y=y, x=x, hue=hue, palette=palette, ax=ax, **boxplot_kwargs + ) + savefig(fig, figure_filename) + return fig, ax + + +def plot_final_performance_violinplot( + df: pd.DataFrame, + x="n_trials_norm", + y="trial_value__cost_inc_norm", + hue="optimizer_id", + budget_var: str = "n_trials_norm", + max_budget: float = 1, + figure_filename: str = "figures/final_performance_boxplot.pdf", + figsize: tuple[int, int] = (6, 4), + **violinplot_kwargs, +) -> tuple[plt.Figure, matplotlib.axes.Axes]: + setup_seaborn() + palette = get_color_palette(df) + fig = plt.figure(figsize=figsize, dpi=300) + ax = fig.add_subplot(111) + ax = sns.violinplot( + data=df[np.isclose(df[budget_var], max_budget)], + y=y, + x=x, + hue=hue, + palette=palette, + ax=ax, + cut=0, + **violinplot_kwargs, + ) + savefig(fig, figure_filename) + return fig, ax + + +def create_tables(df: pd.DataFrame, budget_var: str = "n_trials_norm", max_budget: float = 1): + perf_col_norm: str = "trial_value__cost_inc_norm" + + print(df[budget_var].max()) + df = df[np.isclose(df[budget_var], max_budget)] + + # Aggregate all + + # Calculate mean over seeds per optimizer and problem + df_mean = df.groupby(["optimizer_id", "problem_id"])[perf_col_norm].mean() + df_mean.name = "mean" + df_var = df.groupby(["optimizer_id", "problem_id"])[perf_col_norm].var() + df_var.name = "var" + + print(pd.concat((df_mean, df_var), axis=1)) + + # Calculate mean over problems + + # Aggregate over benchmarks + + +if __name__ == "__main__": + import matplotlib.pyplot as plt + import numpy as np + import pandas as pd + + from carps.analysis.process_data import load_logs + + rundir = "/home/numina/Documents/repos/CARP-S-Experiments/lib/CARP-S/runs" + + df, df_cfg = load_logs(rundir=rundir) + create_tables(df) diff --git a/carps/analysis/gather_data.py b/carps/analysis/gather_data.py new file mode 100644 index 000000000..799bf2a3b --- /dev/null +++ b/carps/analysis/gather_data.py @@ -0,0 +1,503 @@ +from __future__ import annotations + +import json +import multiprocessing +from collections.abc import Callable, Iterable +from dataclasses import asdict +from functools import partial +from pathlib import Path +from typing import TYPE_CHECKING, Any, TypeVar + +import fire +import numpy as np +import pandas as pd +from ConfigSpace import Configuration +from hydra.core.utils import setup_globals +from omegaconf import DictConfig, ListConfig, OmegaConf + +from carps.utils.loggingutils import get_logger, setup_logging +from carps.utils.task import Task +from carps.utils.trials import TrialInfo + +if TYPE_CHECKING: + from carps.benchmarks.problem import Problem + +setup_logging() +logger = get_logger(__file__) + + +setup_globals() + + +def glob_trial_logs(p: str) -> list[str]: + return list(Path(p).glob("**/trial_logs.jsonl")) + + +def get_run_dirs(outdir: str): + opt_paths = list(Path(outdir).glob("*/*")) + with multiprocessing.Pool() as pool: + triallog_files = pool.map(glob_trial_logs, opt_paths) + triallog_files = np.concatenate(triallog_files) + return [f.parent for f in triallog_files] + + +def annotate_with_cfg( + df: pd.DataFrame, + cfg: DictConfig, + config_keys: list[str], + config_keys_forbidden: list[str] | None = None, +) -> pd.DataFrame: + if config_keys_forbidden is None: + config_keys_forbidden = [] + cfg_resolved = OmegaConf.to_container(cfg, resolve=True) + flat_cfg = pd.json_normalize(cfg_resolved, sep=".").iloc[0].to_dict() # type: ignore + for k, v in flat_cfg.items(): + if np.any([k.startswith(c) for c in config_keys]) and not np.any([c in k for c in config_keys_forbidden]): + if isinstance(v, list | ListConfig): + v = [v] * len(df) + df[k] = v + return df + + +def get_Y(X: np.ndarray, problem: Problem) -> np.ndarray: + return np.array( + [ + ( + problem.evaluate( + trial_info=TrialInfo(config=Configuration(configuration_space=problem.configspace, vector=x)) + ).cost + ) + for x in X + ] + ) + + +def join_df(df1: pd.DataFrame, df2: pd.DataFrame, on: str = "n_trials") -> pd.DataFrame: + df1.set_index(on) + return df1.join(df2.set_index(on), on=on) + + +def load_log(rundir: str | Path, log_fn: str = "trial_logs.jsonl") -> pd.DataFrame: + df = read_trial_log(rundir, log_fn=log_fn) + if df is None: + raise NotImplementedError("No idea what should happen here!?") + + cfg = load_cfg(rundir) + if cfg is not None: + config_fn = str(Path(rundir) / ".hydra/config.yaml") + cfg_str = OmegaConf.to_yaml(cfg=cfg) + df["cfg_fn"] = config_fn + df["cfg_str"] = [(config_fn, cfg_str)] * len(df) + + config_keys = ["benchmark", "problem", "seed", "optimizer_id", "task"] + config_keys_forbidden = ["_target_", "_partial_"] + df = annotate_with_cfg(df=df, cfg=cfg, config_keys=config_keys, config_keys_forbidden=config_keys_forbidden) + # df = maybe_add_bandit_log(df, rundir, n_initial_design=cfg.task.n_initial_design) + else: + config_fn = "no_hydra_config" + cfg_str = "" + df["cfg_fn"] = config_fn + df["cfg_str"] = [(config_fn, cfg_str)] * len(df) + + if "problem.function.seed" in df: + df = df.drop(columns=["problem.function.seed"]) + + if "problem.function.dim" in df: + df = df.rename(columns={"problem.function.dim": "dim"}) + + return process_logs(df) + + +T = TypeVar("T") +R = TypeVar("R") + + +def map_multiprocessing( + task_function: Callable[[T], R], + task_params: Iterable[T], + n_processes: int | None = None, +) -> list[R]: + with multiprocessing.Pool(processes=n_processes) as pool: + return pool.map(task_function, task_params) + + +def read_jsonl_content(filename: str | Path) -> pd.DataFrame: + with open(filename) as file: + content = [json.loads(l) for l in file.readlines()] # noqa: E741 + return pd.DataFrame(content) + + +def read_trial_log(rundir: str | Path, log_fn: str = "trial_logs.jsonl") -> pd.DataFrame | None: + path = Path(rundir) / log_fn + if not path.exists(): + return None + + df = read_jsonl_content(path) + df = normalize_drop(df, "trial_info", rename_columns=True, sep="__") + return normalize_drop(df, "trial_value", rename_columns=True, sep="__") + # df = df.drop(columns=["trial_info__instance", "trial_info__budget", "trial_value__time", "trial_value__status", "trial_value__starttime", "trial_value__endtime"]) + + +def load_cfg(rundir: str | Path) -> DictConfig | None: + config_fn = Path(rundir) / ".hydra/config.yaml" + if not config_fn.exists(): + return None + + return OmegaConf.load(config_fn) # type: ignore + + +def normalize_drop(df: pd.DataFrame, key: str, rename_columns: bool = False, sep: str = ".") -> pd.DataFrame: + """Normalize columns containing dicts. + + Parameters + ---------- + df : pd.DataFrame + Source data frame + key : str + Column name containing dicts + rename_columns : bool, default False + If true, rename columns to key.dict_key, if false, use dict keys as column names. + sep : str, default . + If rename columns: pattern for column is + + Returns: + -------- + pd.DataFrame + Flat data frame + """ + df_tmp = pd.DataFrame(df[key].tolist()) + if "additional_info" in df_tmp and df_tmp["additional_info"].iloc[0] == {}: + del df_tmp["additional_info"] + if rename_columns: + df_tmp = df_tmp.rename(columns={c: f"{key}{sep}{c}" for c in df_tmp.columns}) + return pd.concat([df.drop(key, axis=1), df_tmp], axis=1) + + +def maybe_add_n_trials(df: pd.DataFrame, n_initial_design: int, counter_key: str = "n_calls") -> pd.DataFrame: + if "n_trials" not in df: + df["n_trials"] = df[counter_key] + n_initial_design # n_trials is 1-based + return df + + +def add_scenario_type(logs: pd.DataFrame, task_prefix: str = "task.") -> pd.DataFrame: + def determine_scenario_type(x: pd.Series) -> str: + if x[task_prefix + "is_multifidelity"] is False and x[task_prefix + "is_multiobjective"] is False: + scenario = "blackbox" + elif x[task_prefix + "is_multifidelity"] is True and x[task_prefix + "is_multiobjective"] is False: + scenario = "multi-fidelity" + elif x[task_prefix + "is_multifidelity"] is False and x[task_prefix + "is_multiobjective"] is True: + scenario = "multi-objective" + elif x[task_prefix + "is_multifidelity"] is True and x[task_prefix + "is_multiobjective"] is True: + scenario = "multi-fidelity-objective" + elif np.isnan(x[task_prefix + "is_multifidelity"]) or np.isnan(x[task_prefix + "is_multiobjective"]): + scenario = "blackbox" + else: + print( + x["problem_id"], + x["optimizer_id"], + x["seed"], + x[task_prefix + "is_multifidelity"], + type(x[task_prefix + "is_multifidelity"]), + ) + raise ValueError("Unknown scenario") + return scenario + + logs["scenario"] = logs.apply(determine_scenario_type, axis=1) + return logs + + +def maybe_postadd_task(logs: pd.DataFrame, overwrite: bool = False) -> pd.DataFrame: + index_fn = Path(__file__).parent.parent / "configs/problem/index.csv" + if not index_fn.is_file(): + raise ValueError("Problem ids have not been indexed. Run `python -m carps.utils.index_configs`.") + problem_index = pd.read_csv(index_fn) + + def load_task_cfg(problem_id: str) -> DictConfig: + subset = problem_index["config_fn"][problem_index["problem_id"] == problem_id] + if len(subset) == 0: + raise ValueError( + f"Can't find config_fn for {problem_id}. Maybe the index is old. Run `python -m carps.utils.index_configs` to refresh." + ) + config_fn = subset.iloc[0] + if not Path(config_fn).is_file(): + raise ValueError( + f"Can't find config_fn for {problem_id}. Maybe the index is old. Run `python -m carps.utils.index_configs` to refresh." + ) + cfg = OmegaConf.load(config_fn) + return cfg.task + + new_logs = [] + for gid, gdf in logs.groupby(by="problem_id"): + task_cfg = load_task_cfg(problem_id=gid) + task_columns = [c for c in gdf.columns if c.startswith("task.")] + if overwrite: + task_dict = asdict(Task(**task_cfg)) + task_columns = ["task." + k for k in task_dict] + + for c in task_columns: + key = c.split(".")[1] + # print(task_cfg, c) + # print(gdf[c].explode().unique()) + if overwrite or np.nan in gdf[c].explode().unique(): + v = task_cfg.get(key) + if isinstance(v, list | ListConfig): + v = [v] * len(gdf) + gdf[c] = v + new_logs.append(gdf) + return pd.concat(new_logs) + + +def filter_task_info(logs: pd.DataFrame, keep_task_columns: list[str] | None = None) -> pd.DataFrame: + if keep_task_columns is None: + keep_task_columns = ["n_trials"] + keep_task_columns = [f"task.{c}" for c in keep_task_columns] + task_cols_to_remove = [c for c in logs.columns if c.startswith("task") and c not in keep_task_columns] + return logs.drop(columns=task_cols_to_remove) + + +def maybe_convert_cost_dtype(x: Any) -> tuple[float, list[float]]: + if isinstance(x, int | float): + return float(x) + elif isinstance(x, str): + return eval(x) + else: + assert isinstance(x, list) + return x + + +def maybe_convert_cost_to_so(x: Any) -> float: + if isinstance(x, list): + return np.sum(x) # TODO replace by hypervolume or similar + else: + return x + + +def convert_mixed_types_to_str(logs: pd.DataFrame, logger=None) -> pd.DataFrame: + mixed_type_columns = logs.select_dtypes(include=["O"]).columns + if logger: + logger.debug(f"Goodybe all mixed data, ruthlessly converting {mixed_type_columns} to str...") + for c in mixed_type_columns: + # D = logs[c] + # logs.drop(columns=c) + if c == "cfg_str": + continue + logs[c] = logs[c].map(lambda x: str(x)) + logs[c] = logs[c].astype("str") + return logs + + +def load_set(paths: list[str], set_id: str = "unknown") -> tuple[pd.DataFrame, pd.DataFrame]: + logs = [] + for p in paths: + fn = Path(p) / "trajectory.parquet" + if not fn.is_file(): + fn = Path(p) / "logs.parquet" + logs.append(pd.read_parquet(fn)) + + df = pd.concat(logs).reset_index(drop=True) + df_cfg = pd.concat([pd.read_parquet(Path(p) / "logs_cfg.parquet") for p in paths]).reset_index(drop=True) + df["set"] = set_id + return df, df_cfg + + +def process_logs(logs: pd.DataFrame, keep_task_columns: list[str] | None = None) -> pd.DataFrame: + if keep_task_columns is None: + keep_task_columns = ["task.n_trials"] + logger.debug("Processing raw logs. Normalize n_trials and costs. Calculate trajectory (incumbent cost).") + # logs= logs.drop(columns=["config"]) + # Filter MO costs + logger.debug("Remove DUMMY logs...") + logs = logs[~logs["problem_id"].str.startswith("DUMMY")] + logs = logs[~logs["benchmark_id"].str.startswith("DUMMY")] + logs = logs[~logs["optimizer_id"].str.startswith("DUMMY")] + + logger.debug("Handle MO costs...") + logs["trial_value__cost_raw"] = logs["trial_value__cost"].apply(maybe_convert_cost_dtype) + logs["trial_value__cost"] = logs["trial_value__cost_raw"].apply(maybe_convert_cost_to_so) + logger.debug("Determine incumbent cost...") + logs["trial_value__cost_inc"] = logs.groupby(by=["problem_id", "optimizer_id", "seed"])[ + "trial_value__cost" + ].transform("cummin") + + logger.debug("Maybe add task info...") + logs = maybe_postadd_task(logs) + if "task.n_objectives" in logs: + logs["task.is_multiobjective"] = logs["task.n_objectives"] > 1 + logger.debug("Infer scenario...") + logs = add_scenario_type(logs) + + # Check for scalarized MO, we want to keep the cost vector + if "trial_value__additional_info" in logs: + ids_mo = (logs["scenario"] == "multi-objective") & ( + logs["trial_value__additional_info"].apply(lambda x: "cost" in x) + ) + if len(ids_mo) > 0: + logs[ids_mo]["trial_value__cost_raw"] = logs[ids_mo]["trial_value__additional_info"].apply( + lambda x: x["cost"] + ) + + logger.debug(f"Remove task info, only keep {keep_task_columns}...") + logs = filter_task_info(logs, keep_task_columns) + + # Convert config to object + logger.debug("Save config as a string to avoid mixed type columns...") + logs["trial_info__config"] = logs["trial_info__config"].apply(lambda x: str(x)) + + # Add time + logger.debug("Calculate the elapsed time...") + logs = logs.groupby(by=["problem_id", "optimizer_id", "seed"]).apply(calc_time).reset_index(drop=True) + + logs = convert_mixed_types_to_str(logs, logger) + logger.debug("Done 😪🙂") + return logs + + +def normalize_logs(logs: pd.DataFrame) -> pd.DataFrame: + logger.info("Start normalization...") + logger.info("Normalize n_trials...") + logs["n_trials_norm"] = logs.groupby("problem_id")["n_trials"].transform(normalize) + logger.info("Normalize cost...") + # Handle MO + ids_mo = logs["scenario"] == "multi-objective" + if len(ids_mo) > 0 and "hypervolume" in logs: + hv = logs.loc[ids_mo, "hypervolume"] + logs.loc[ids_mo, "trial_value__cost"] = -hv # higher is better + logs["trial_value__cost"] = logs["trial_value__cost"].astype("float64") + logs["trial_value__cost_inc"] = logs["trial_value__cost"].transform("cummin") + logs["trial_value__cost_norm"] = logs.groupby("problem_id")["trial_value__cost"].transform(normalize) + logger.info("Calc normalized incumbent cost...") + logs["trial_value__cost_inc_norm"] = logs.groupby(by=["problem_id", "optimizer_id", "seed"])[ + "trial_value__cost_norm" + ].transform("cummin") + if "time" not in logs: + logs["time"] = 0 + logger.info("Normalize time...") + logs["time_norm"] = logs.groupby("problem_id")["time"].transform(normalize) + logs = convert_mixed_types_to_str(logs, logger) + logger.info("Done.") + return logs + + +def calc_time(D: pd.DataFrame) -> pd.Series: + trialtime = D["trial_value__virtual_time"] + nulltime = D["trial_value__starttime"] - D["trial_value__starttime"].min() + trialtime_cum = trialtime.cumsum() + elapsed = nulltime + trialtime_cum + elapsed.name = "time" + D["time"] = elapsed + return D + + +def normalize(S: pd.Series, epsilon: float = 1e-8) -> pd.Series: + return (S - S.min()) / (S.max() - S.min() + epsilon) + + +def get_interpolated_performance_df( + logs: pd.DataFrame, + n_points: int = 20, + x_column: str = "n_trials_norm", + interpolation_columns: list[str] | None = None, +) -> pd.DataFrame: + """Get performance dataframe for plotting. + + Interpolated at regular intervals. + + Parameters + ---------- + logs : pd.DataFrame + Preprocessed logs. + n_points : int, optional + Number of interpolation steps, by default 20 + x_column : str, optional + The x-axis column to interpolate by, by default 'n_trials_norm' + + Raises: + ------ + ValueError + When x_column missing in dataframe. + + Returns: + ------- + pd.DataFrame + Performance data frame for plotting + """ + if interpolation_columns is None: + interpolation_columns = [ + "trial_value__cost", + "trial_value__cost_norm", + "trial_value__cost_inc", + "trial_value__cost_inc_norm", + ] + logger.info("Create dataframe for neat plotting by aligning x-axis / interpolating budget.") + + if x_column not in logs: + msg = f"x_column `{x_column}` not in logs! Did you call `carps.analysis.process_data.process_logs` on the raw logs?" + raise ValueError(msg) + + # interpolation_columns = [ + # c for c in logs.columns if c != x_column and c not in identifier_columns and not c.startswith("problem")] + group_keys = ["scenario", "set", "benchmark_id", "optimizer_id", "problem_id", "seed"] + x = np.linspace(0, 1, n_points + 1) + D = [] + for gid, gdf in logs.groupby(by=group_keys): + metadata = dict(zip(group_keys, gid, strict=False)) + performance_data = {} + performance_data[x_column] = x + for icol in interpolation_columns: + if icol in gdf: + xp = gdf[x_column].to_numpy() + fp = gdf[icol].to_numpy() + y = np.interp(x=x, xp=xp, fp=fp) + performance_data[icol] = y + performance_data.update(metadata) + D.append(pd.DataFrame(performance_data)) + return pd.concat(D).reset_index(drop=True) + + +def load_logs(rundir: str): + logs_fn = Path(rundir) / "logs.csv" + logs_cfg_fn = logs_fn.parent / "logs_cfg.csv" + + logger.info(f"Load logs from `{logs_fn}` and associated configs from {logs_cfg_fn}. Preprocess logs.") + + if not logs_fn.is_file() or not logs_cfg_fn.is_file(): + msg = f"No logs found at rundir '{rundir}'. If you used the file logger, you can gather the data with `python -m carps.analysis.gather_data `." + raise RuntimeError(msg) + + df = pd.read_csv(logs_fn) + df = normalize_logs(df) + df_cfg = pd.read_csv(logs_cfg_fn) + return df, df_cfg + + +# NOTE(eddiebergman): Use `n_processes=None` as default, which uses `os.cpu_count()` in `Pool` +def filelogs_to_df( + rundir: str, log_fn: str = "trial_logs.jsonl", n_processes: int | None = None +) -> tuple[pd.DataFrame, pd.DataFrame]: + logger.info(f"Get rundirs from {rundir}...") + rundirs = get_run_dirs(rundir) + logger.info(f"Found {len(rundirs)} runs. Load data...") + partial_load_log = partial(load_log, log_fn=log_fn) + results = map_multiprocessing(partial_load_log, rundirs, n_processes=n_processes) + df = pd.concat(results).reset_index(drop=True) + logger.info("Done. Do some preprocessing...") + df_cfg = pd.DataFrame([{"cfg_fn": k, "cfg_str": v} for k, v in df["cfg_str"].unique()]) + df_cfg.loc[:, "experiment_id"] = np.arange(0, len(df_cfg)) + df["experiment_id"] = df["cfg_fn"].apply(lambda x: np.where(df_cfg["cfg_fn"].to_numpy() == x)[0][0]) + df_cfg.loc[:, "cfg_str"] = df_cfg["cfg_str"].apply(lambda x: x.replace("\n", "\\n")) + del df["cfg_str"] + del df["cfg_fn"] + logger.info("Done. Saving to file...") + # df = df.map(lambda x: x if not isinstance(x, list) else str(x)) + df.to_csv(Path(rundir) / "logs.csv", index=False) + df_cfg.to_csv(Path(rundir) / "logs_cfg.csv", index=False) + df = convert_mixed_types_to_str(df) + df_cfg = convert_mixed_types_to_str(df_cfg) + df.to_parquet(Path(rundir) / "logs.parquet", index=False) + df_cfg.to_parquet(Path(rundir) / "logs_cfg.parquet", index=False) + logger.info("Done. 😊") + return df, df_cfg + + +if __name__ == "__main__": + fire.Fire(filelogs_to_df) diff --git a/carps/analysis/gather_data_slurm.py b/carps/analysis/gather_data_slurm.py new file mode 100644 index 000000000..ee259e19e --- /dev/null +++ b/carps/analysis/gather_data_slurm.py @@ -0,0 +1,27 @@ +"""Run gather data as a slurm job with many cpus. + +Example command: +python -m carps.analysis.gather_data_slurm 'rundir=runs/DEHB,runs/SMAC3-Hyperband,runs/SMAC3-MultiFidelityFacade' -m + +""" + +from __future__ import annotations + +from typing import TYPE_CHECKING + +import hydra + +from carps.analysis.gather_data import filelogs_to_df + +if TYPE_CHECKING: + import pandas as pd + from omegaconf import DictConfig + + +@hydra.main(config_path="configs", config_name="gather_data_slurm.yaml", version_base=None) # type: ignore[misc] +def main(cfg: DictConfig) -> tuple[pd.DataFrame, pd.DataFrame]: + return filelogs_to_df(cfg.rundir) + + +if __name__ == "__main__": + main() diff --git a/carps/analysis/interval_estimates.py b/carps/analysis/interval_estimates.py new file mode 100644 index 000000000..f8a6b8d86 --- /dev/null +++ b/carps/analysis/interval_estimates.py @@ -0,0 +1,187 @@ +from __future__ import annotations + +import itertools +import pickle +from pathlib import Path +from typing import Any + +import numpy as np +import pandas as pd +import seaborn as sns + +# Rliable +from rliable import ( + library as rly, + metrics, + plot_utils, +) + +from carps.analysis.utils import savefig +from carps.utils.loggingutils import get_logger, setup_logging +from carps.utils.overridefinder import find_override + +setup_logging() +logger = get_logger(__file__) + + +def get_final_performance_dict( + performance_data: pd.DataFrame, + key_method: str, + key_performance: str, + key_instance: str, + budget_var: str = "n_trials_norm", + max_budget: float = 1, +) -> dict[str, Any]: + """Generate performance dict for rliable. + + Parameters + ---------- + D : pd.DataFrame + Dataframe with final performance + key_method : str + Key of the method, e.g. optimizer_id + key_performance : str + Key of the performance column, e.g. cost_inc + key_instance : str + Key of the problem instancde, e.g. problem_id + budget_var : str, optional + The budget name, by default `n_trials_norm`. + max_budget : float, optional + The maximum budget considered. 1 for normalized budget vars. + + Returns: + -------- + dict[str, Any] + Dict with method as keys and performance values with shape [n seeds x m instances] + """ + performance_data = performance_data[np.isclose(performance_data[budget_var], max_budget)] + perf_dict = {} + dropped: list = [] + seeds = set(performance_data["seed"].unique()) + instances = set(performance_data[key_instance].unique()) + combos = set(itertools.product(instances, seeds)) + override_commands: list[str] = [] + for gid, gdf in performance_data.groupby(key_method): + gdf = gdf.reset_index() + n_seeds = gdf["seed"].nunique() + n_instances = gdf[key_instance].nunique() + P = gdf[key_performance].to_numpy() + + _combos = gdf.loc[:, ["problem_id", "seed"]].to_numpy() + _combos = set(map(tuple, _combos)) + + missing = list(combos.difference(_combos)) + + if len(missing) > 0: + dropped.append( + { + "method": gid, + "missing": missing, + } + ) + optimizer_override = find_override(optimizer_id=gid) or f"+optimizer={gid}" + + for _missing in missing: + problem_override = find_override(problem_id=_missing[0]) or f"+problem={_missing[0]}" + seed_override = f"seed={_missing[1]}" + override_cmd = f"{seed_override} {problem_override} {optimizer_override}" + override_commands.append(override_cmd) + else: + # if len(P) == n_seeds * n_instances: + P = P.reshape((n_seeds, n_instances)) + perf_dict[gid] = P + if len(dropped) > 0: + logger.info("Dropped following incomplete methods:") + logger.info(dropped) + + base_command = "python -m carps.run {override}\n" + fn = Path(__file__).parent.parent.parent / "scripts/missing/run_missing.sh" + fn.parent.mkdir(exist_ok=True, parents=True) + with open(fn, "w") as file: + for override in override_commands: + file.write(base_command.format(override=override)) + + logger.info(f"Created override commands at {fn}") + return perf_dict + + +def calculate_interval_estimates( + final_performance_dict: pd.DataFrame, metrics: dict[str, callable], repetitions: int = 5000 +): + # Load ALE scores as a dictionary mapping algorithms to their human normalized + # score matrices, each of which is of size `(num_runs x num_games)`. + def aggregate_func(x): + return np.array([agg_fun(x) for agg_fun in metrics.values()]) + + aggregate_scores, aggregate_score_cis = rly.get_interval_estimates( + final_performance_dict, aggregate_func, reps=repetitions + ) + + with open("final_performance_dict.pickle", "wb") as handle: + pickle.dump(final_performance_dict, handle, protocol=pickle.HIGHEST_PROTOCOL) + with open("aggregate_scores.pickle", "wb") as handle: + pickle.dump(aggregate_scores, handle, protocol=pickle.HIGHEST_PROTOCOL) + with open("aggregate_score_cis.pickle", "wb") as handle: + pickle.dump(aggregate_score_cis, handle, protocol=pickle.HIGHEST_PROTOCOL) + + print(final_performance_dict) + print(aggregate_scores) + + return aggregate_scores, aggregate_score_cis + + +def plot_interval_estimates( + performance_data: pd.DataFrame, + load_from_pickle: bool = False, + figure_filename: str = "figures/plot_interval_estimates.pdf", +): + _metrics = { + "IQM": metrics.aggregate_iqm, + "mean": metrics.aggregate_mean, + "median": metrics.aggregate_median, + } + metric_names = list(_metrics.keys()) + + if not load_from_pickle: + final_performance_dict = get_final_performance_dict( + performance_data=performance_data, + key_method="optimizer_id", + key_performance="trial_value__cost", + key_instance="problem_id", + ) + aggregate_scores, aggregate_score_cis = calculate_interval_estimates( + final_performance_dict=final_performance_dict, metrics=_metrics, repetitions=5000 + ) + else: + final_performance_dict = pickle.load("final_performance_dict.pickle") + aggregate_scores = pickle.load("aggregate_scores.pickle") + aggregate_score_cis = pickle.load("aggregate_score_cis.pickle") + + algorithms = list(final_performance_dict.keys()) + + sns.set_style("white") + + fig, axes = plot_utils.plot_interval_estimates( + aggregate_scores, + aggregate_score_cis, + metric_names=metric_names, + algorithms=algorithms, + xlabel="Cost", + xlabel_y_coordinate=-0.6, + ) + savefig(fig, figure_filename) + + return fig, axes + + # fig, axes = plot_utils.plot_interval_estimates( + # aggregate_scores, aggregate_score_cis, + # metric_names=metric_names, + # algorithms=algorithms, xlabel="Performance", + # xlabel_y_coordinate=0.025 + # ) + # fig.savefig("plot_rliable_all.pdf", dpi=300, bbox_inches="tight") + + +if __name__ == "__main__": + perf = pd.read_csv("/home/numina/Documents/repos/CARP-S-Experiments/lib/CARP-S/carps/analysis/perf.csv") + plot_interval_estimates(performance_data=perf) diff --git a/carps/analysis/performance_over_time.py b/carps/analysis/performance_over_time.py new file mode 100644 index 000000000..63b8b6a75 --- /dev/null +++ b/carps/analysis/performance_over_time.py @@ -0,0 +1,59 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +import matplotlib +import matplotlib.pyplot as plt +import seaborn as sns + +from carps.analysis.utils import get_color_palette, savefig, setup_seaborn + +if TYPE_CHECKING: + import pandas as pd + + +def plot_performance_over_time( + df: pd.DataFrame, + x="n_trials_norm", + y="cost_inc_norm", + hue="optimizer_id", + figure_filename: str = "figures/performance_over_time.pdf", + figsize: tuple[int, int] = (6, 4), + show_legend: bool = True, + **lineplot_kwargs, +) -> tuple[plt.Figure, matplotlib.axes.Axes]: + setup_seaborn(font_scale=1.5) + palette = get_color_palette(df) + fig = plt.figure(figsize=figsize) + ax = fig.add_subplot(111) + ax = sns.lineplot(data=df, x=x, y=y, hue=hue, palette=palette, **lineplot_kwargs, ax=ax) + if show_legend: + ax.legend(loc="center left", bbox_to_anchor=(1.05, 0.5)) + else: + ax.get_legend().remove() + savefig(fig, figure_filename) + return fig, ax + + +def plot_rank_over_time( + df: pd.DataFrame, + x="n_trials_norm", + y="cost_inc_norm", + hue="optimizer_id", + figure_filename: str = "figures/performance_over_time.pdf", + figsize: tuple[int, int] = (6, 4), + show_legend: bool = True, + **lineplot_kwargs, +) -> tuple[plt.Figure, matplotlib.axes.Axes]: + # TODO + setup_seaborn(font_scale=1.5) + palette = get_color_palette(df) + fig = plt.figure(figsize=figsize) + ax = fig.add_subplot(111) + ax = sns.lineplot(data=df, x=x, y=y, hue=hue, palette=palette, **lineplot_kwargs, ax=ax) + if show_legend: + ax.legend(loc="center left", bbox_to_anchor=(1.05, 0.5)) + else: + ax.get_legend().remove() + savefig(fig, figure_filename) + return fig, ax diff --git a/carps/analysis/plot_ranking.py b/carps/analysis/plot_ranking.py new file mode 100644 index 000000000..c82212f48 --- /dev/null +++ b/carps/analysis/plot_ranking.py @@ -0,0 +1,75 @@ +from __future__ import annotations + +from pathlib import Path +from typing import TYPE_CHECKING + +import matplotlib.pyplot as plt +import seaborn as sns +from autorank import create_report +from autorank._util import get_sorted_rank_groups + +from carps.analysis.run_autorank import calc_critical_difference, custom_latex_table, get_df_crit +from carps.analysis.utils import savefig + +if TYPE_CHECKING: + import pandas as pd + + +def plot_ranking( + gdf: pd.DataFrame, + scenario: str, + set_id: str, + perf_col: str = "trial_value__cost_inc_norm", + problem_prefix: str = "", +) -> None: + fpath = Path("figures/ranking") + fpath.mkdir(exist_ok=True, parents=True) + identifier = f"{scenario}_{set_id}" + label = f"tab:stat_results_{identifier}" + result = calc_critical_difference(gdf, identifier=identifier, figsize=(8, 3), perf_col=perf_col) + create_report(result) + table_str = custom_latex_table(result, label=label) + fn = Path("figures/critd/" + label[len("tab:") :] + ".tex") + fn.write_text(table_str) + print(table_str) + plt.show() + + sorted_ranks, names, groups = get_sorted_rank_groups(result, reverse=False) + print(sorted_ranks, names, groups) + + # DF on normalized perf values + df_crit = get_df_crit(gdf, remove_nan=False, perf_col=perf_col) + df_crit = df_crit.reindex(columns=names) + df_crit.index = [i.replace(problem_prefix + "/dev/", "") for i in df_crit.index] + df_crit.index = [i.replace(problem_prefix + "/test/", "") for i in df_crit.index] + plt.figure(figsize=(12, 12)) + sns.heatmap(df_crit, annot=False, fmt="g", cmap="viridis_r") + plt.title("Performance of Optimizers per Problem (Normalized)") + plt.ylabel("Problem ID") + plt.xlabel("Optimizer") + savefig(plt.gcf(), fpath / f"perf_opt_per_problem_{identifier}") + plt.show() + + # Df on raw values + # Optionally, plot the ranked data as a heatmap + df_crit = get_df_crit(gdf, remove_nan=False, perf_col=perf_col) + df_crit = df_crit.reindex(columns=names) + df_crit.index = [i.replace(problem_prefix + "/dev/", "") for i in df_crit.index] + df_crit.index = [i.replace(problem_prefix + "/test/", "") for i in df_crit.index] + ranked_df = df_crit.rank(axis=1, method="min", ascending=True) + + plt.figure(figsize=(12, 12)) + sns.heatmap(ranked_df, annot=True, fmt="g", cmap="viridis_r") + plt.title("Ranking of Optimizers per Problem") + plt.ylabel("Problem ID") + plt.xlabel("Optimizer") + savefig(plt.gcf(), fpath / f"rank_opt_per_problem_{identifier}") + plt.show() + + # Plotting the heatmap of the rank correlation matrix + correlation_matrix = ranked_df.corr(method="spearman") + plt.figure(figsize=(8, 6)) + sns.heatmap(correlation_matrix, annot=True, cmap="coolwarm", cbar=True, square=True, fmt=".2f") + plt.title("Spearman Rank Correlation Matrix Between Optimizers") + savefig(plt.gcf(), fpath / f"spearman_rank_corr_matrix_opt_{identifier}") + plt.show() diff --git a/carps/analysis/plot_relative_perf.py b/carps/analysis/plot_relative_perf.py new file mode 100644 index 000000000..664c8e7ae --- /dev/null +++ b/carps/analysis/plot_relative_perf.py @@ -0,0 +1,39 @@ +from __future__ import annotations + +import matplotlib.pyplot as plt +import pandas as pd +import seaborn as sns + + +def norm_by_opt(df: pd.DataFrame, optimizer_id: str) -> pd.DataFrame: + df_new = [] + for _gid, gdf in df.groupby(by=["problem_id", "seed"]): + reference = gdf[gdf["optimizer_id"] == optimizer_id]["trial_value__cost"] + gdf["trial_value__cost_normopt"] = gdf.groupby("optimizer_id")["trial_value__cost"].transform( + lambda x: x / reference + ) + df_new.append(gdf) + df = pd.concat(df_new).reset_index(drop=True) + + # df["trial_value_cost_normopt"] = df.groupby("problem_id").apply(_norm_by_opt) + df["trial_value__cost_inc_normopt"] = df.groupby(by=["problem_id", "optimizer_id", "seed"])[ + "trial_value__cost_normopt" + ].transform("cummin") + return df + + +if __name__ == "__main__": + df = pd.read_parquet( + "/scratch/hpc-prf-intexml/cbenjamins/repos/CARP-S-Experiments/lib/CARP-S/runs/RandomSearch/MFPBench/logs.parquet" + ) + + df_new = df.copy() + df_new["optimizer_id"] = "HeheOpt" + df_new["trial_value__cost"] -= 0.1 + df = pd.concat([df, df_new]).reset_index(drop=True) + + fig, ax = plt.subplots(figsize=(6, 4)) + normalize_by_opt = "RandomSearch" + df = norm_by_opt(df, "RandomSearch") + + sns.lineplot() diff --git a/carps/analysis/process_data.py b/carps/analysis/process_data.py new file mode 100644 index 000000000..e8cbd212c --- /dev/null +++ b/carps/analysis/process_data.py @@ -0,0 +1,190 @@ +from __future__ import annotations + +from pathlib import Path + +import fire +import numpy as np +import pandas as pd +from omegaconf import DictConfig, ListConfig, OmegaConf + +from carps.utils.loggingutils import get_logger, setup_logging + +setup_logging() +logger = get_logger(__file__) + + +def add_scenario_type(logs: pd.DataFrame) -> pd.DataFrame: + def determine_scenario_type(x: pd.Series) -> str: + if x["task.is_multifidelity"] is False and x["task.is_multiobjective"] is False: + scenario = "blackbox" + elif x["task.is_multifidelity"] is True and x["task.is_multiobjective"] is False: + scenario = "multi-fidelity" + elif x["task.is_multifidelity"] is False and x["task.is_multiobjective"] is True: + scenario = "multi-objective" + elif x["task.is_multifidelity"] is True and x["task.is_multiobjective"] is True: + scenario = "multi-fidelity-objective" + elif np.isnan(x["task.is_multifidelity"]) or np.isnan(x["task.is_multiobjective"]): + scenario = "blackbox" + else: + print( + x["problem_id"], + x["optimizer_id"], + x["seed"], + x["task.is_multifidelity"], + type(x["task.is_multifidelity"]), + ) + raise ValueError("Unknown scenario") + return scenario + + logs["scenario"] = logs.apply(determine_scenario_type, axis=1) + return logs + + +def maybe_postadd_task(logs: pd.DataFrame) -> pd.DataFrame: + index_fn = Path(__file__).parent.parent / "configs/problem/index.csv" + if not index_fn.is_file(): + raise ValueError("Problem ids have not been indexed. Run `python -m carps.utils.index_configs`.") + problem_index = pd.read_csv(index_fn) + + def load_task_cfg(problem_id: str) -> DictConfig: + config_fn = problem_index["config_fn"][problem_index["problem_id"] == problem_id].iloc[0] + if not Path(config_fn).is_file(): + raise ValueError("Maybe the index is old. Run `python -m carps.utils.index_configs` to refresh.") + cfg = OmegaConf.load(config_fn) + return cfg.task + + new_logs = [] + for gid, gdf in logs.groupby(by="problem_id"): + task_cfg = load_task_cfg(problem_id=gid) + task_columns = [c for c in gdf.columns if c.startswith("task.")] + for c in task_columns: + key = c.split(".")[1] + if np.nan in gdf[c].unique(): + print(c, key, task_cfg, gid) + v = task_cfg.get(key) + if isinstance(v, list | ListConfig): + v = [v] * len(gdf) + gdf[c] = v + new_logs.append(gdf) + return pd.concat(new_logs) + + +def process_logs(logs: pd.DataFrame) -> pd.DataFrame: + logger.info("Processing raw logs. Normalize n_trials and costs. Calculate trajectory (incumbent cost).") + # logs= logs.drop(columns=["config"]) + # Filter MO costs + logs = logs[~logs["problem_id"].str.startswith("DUMMY")] + logs = logs[~logs["benchmark_id"].str.startswith("DUMMY")] + logs = logs[~logs["optimizer_id"].str.startswith("DUMMY")] + logs["trial_value__cost"] = logs["trial_value__cost"].apply(lambda x: x if isinstance(x, float) else eval(x)) + logs = logs[logs["trial_value__cost"].apply(lambda x: isinstance(x, float))] + logs["trial_value__cost"] = logs["trial_value__cost"].apply(float) + logs["n_trials_norm"] = logs.groupby("problem_id")["n_trials"].transform(normalize) + logs["trial_value__cost_norm"] = logs.groupby("problem_id")["trial_value__cost"].transform(normalize) + logs["trial_value__cost_inc"] = logs.groupby(by=["problem_id", "optimizer_id", "seed"])[ + "trial_value__cost" + ].transform("cummin") + logs["trial_value__cost_inc_norm"] = logs.groupby(by=["problem_id", "optimizer_id", "seed"])[ + "trial_value__cost_norm" + ].transform("cummin") + logs = maybe_postadd_task(logs) + if "task.n_objectives" in logs: + logs["task.is_multiobjective"] = logs["task.n_objectives"] > 1 + logs = add_scenario_type(logs) + + # Add time + logs = logs.groupby(by=["problem_id", "optimizer_id", "seed"]).apply(calc_time).reset_index(drop=True) + logs["time_norm"] = logs.groupby("problem_id")["time"].transform(normalize) + return logs + + +def calc_time(D: pd.DataFrame) -> pd.Series: + trialtime = D["trial_value__virtual_time"] + nulltime = D["trial_value__starttime"] - D["trial_value__starttime"].min() + trialtime_cum = trialtime.cumsum() + elapsed = nulltime + trialtime_cum + elapsed.name = "time" + D["time"] = elapsed + return D + + +def normalize(S: pd.Series, epsilon: float = 1e-8) -> pd.Series: + return (S - S.min()) / (S.max() - S.min() + epsilon) + + +def get_interpolated_performance_df( + logs: pd.DataFrame, n_points: int = 20, x_column: str = "n_trials_norm" +) -> pd.DataFrame: + """Get performance dataframe for plotting. + + Interpolated at regular intervals. + + Parameters + ---------- + logs : pd.DataFrame + Preprocessed logs. + n_points : int, optional + Number of interpolation steps, by default 20 + x_column : str, optional + The x-axis column to interpolate by, by default 'n_trials_norm' + + Raises: + ------ + ValueError + When x_column missing in dataframe. + + Returns: + ------- + pd.DataFrame + Performance data frame for plotting + """ + logger.info("Create dataframe for neat plotting by aligning x-axis / interpolating budget.") + + if x_column not in logs: + msg = f"x_column `{x_column}` not in logs! Did you call `carps.analysis.process_data.process_logs` on the raw logs?" + raise ValueError(msg) + + interpolation_columns = [ + "trial_value__cost", + "trial_value__cost_norm", + "trial_value__cost_inc", + "trial_value__cost_inc_norm", + ] + # interpolation_columns = [ + # c for c in logs.columns if c != x_column and c not in identifier_columns and not c.startswith("problem")] + group_keys = ["scenario", "benchmark_id", "optimizer_id", "problem_id", "seed"] + x = np.linspace(0, 1, n_points + 1) + D = [] + for gid, gdf in logs.groupby(by=group_keys): + metadata = dict(zip(group_keys, gid, strict=False)) + performance_data = {} + performance_data[x_column] = x + for icol in interpolation_columns: + if icol in gdf: + xp = gdf[x_column].to_numpy() + fp = gdf[icol].to_numpy() + y = np.interp(x=x, xp=xp, fp=fp) + performance_data[icol] = y + performance_data.update(metadata) + D.append(pd.DataFrame(performance_data)) + return pd.concat(D).reset_index(drop=True) + + +def load_logs(rundir: str): + logs_fn = Path(rundir) / "logs.csv" + logs_cfg_fn = logs_fn.parent / "logs_cfg.csv" + + logger.info(f"Load logs from `{logs_fn}` and associated configs from {logs_cfg_fn}. Preprocess logs.") + + if not logs_fn.is_file() or not logs_cfg_fn.is_file(): + msg = f"No logs found at rundir '{rundir}'. If you used the file logger, you can gather the data with `python -m carps.analysis.gather_data `." + raise RuntimeError(msg) + + df = pd.read_csv(logs_fn) + df = process_logs(df) + df_cfg = pd.read_csv(logs_cfg_fn) + return df, df_cfg + + +if __name__ == "__main__": + fire.Fire(load_logs) diff --git a/carps/analysis/run_autorank.py b/carps/analysis/run_autorank.py new file mode 100644 index 000000000..27f1ac8a3 --- /dev/null +++ b/carps/analysis/run_autorank.py @@ -0,0 +1,351 @@ +from __future__ import annotations + +from pathlib import Path + +import fire +import matplotlib.pyplot as plt +import numpy as np +import pandas as pd + +from carps.analysis.process_data import load_logs +from carps.analysis.utils import filter_only_final_performance +from carps.utils.loggingutils import get_logger + +logger = get_logger(__file__) + + +def custom_latex_table(result, *, decimal_places=3, label=None, only_tabular: bool = True) -> str: + """Creates a latex table from the results dataframe of the statistical analysis. + + # Parameters + + result (RankResult): + Should be the return value the autorank function. + + decimal_places (int, default=3): + Number of decimal places that are used for the report. + + label (str, default=None): + Label of the table. Defaults to 'tbl:stat_results' if None. + """ + if label is None: + label = "tbl:stat_results" + + table_df = result.rankdf + columns = table_df.columns.to_list() + if ( + result.omnibus != "bayes" + and result.pvalue >= result.alpha + or result.omnibus == "bayes" + and len({"smaller", "larger"}.intersection(set(result.rankdf["decision"]))) == 0 + ): + columns.remove("effect_size") + columns.remove("magnitude") + if result.posthoc == "tukeyhsd": + columns.remove("meanrank") + columns.insert(columns.index("ci_lower"), "CI") + columns.remove("ci_lower") + columns.remove("ci_upper") + rename_map = {} + if result.effect_size == "cohen_d": + rename_map["effect_size"] = "$d$" + elif result.effect_size == "cliff_delta": + rename_map["effect_size"] = r"D-E-L-T-A" + elif result.effect_size == "akinshin_gamma": + rename_map["effect_size"] = r"G-A-M-M-A" + rename_map["magnitude"] = "Magnitude" + rename_map["mad"] = "MAD" + rename_map["median"] = "MED" + rename_map["meanrank"] = "MR" + rename_map["mean"] = "M" + rename_map["std"] = "SD" + rename_map["decision"] = "Decision" + format_string = "[{0[ci_lower]:." + str(decimal_places) + "f}, {0[ci_upper]:." + str(decimal_places) + "f}]" + table_df["CI"] = table_df.agg(format_string.format, axis=1) + table_df = table_df[columns] + if result.omnibus == "bayes": + table_df.at[table_df.index[0], "decision"] = "-" + table_df = table_df.rename(rename_map, axis="columns") + + float_format = lambda x: ("{:0." + str(decimal_places) + "f}").format(x) if not np.isnan(x) else "-" + table_string = table_df.to_latex(float_format=float_format, na_rep="-").strip() + table_string = table_string.replace("D-E-L-T-A", r"$\delta$") + table_string = table_string.replace("G-A-M-M-A", r"$\gamma$") + table_string = table_string.replace(r"p\_equal", r"$P(\textit{equal})$") + table_string = table_string.replace(r"p\_smaller", r"$P(\textit{smaller})$") + table_string = table_string.replace("_", r"\_") + final_str = rf""" +\\begin{{table}}[h] + \\caption{{Summary of populations}} + \\label{{{label}}} + \centering + {table_string} +\end{{table}} +""" + + if only_tabular: + return table_string + else: + return final_str + + +def get_df_crit( + df: pd.DataFrame, + budget_var: str = "n_trials_norm", + max_budget: float = 1, + soft: bool = True, + perf_col: str = "trial_value__cost_inc", + remove_nan: bool = True, +) -> pd.DataFrame: + df = filter_only_final_performance(df=df, budget_var=budget_var, max_budget=max_budget, soft=soft) + + # Work on mean of different seeds + df_crit = df.groupby(["optimizer_id", "problem_id"])[perf_col].apply(np.nanmean).reset_index() + + df_crit = df_crit.pivot(index="problem_id", columns="optimizer_id", values=perf_col) + + if remove_nan: + lost = df_crit[np.array([np.any(np.isnan(d.values)) for _, d in df_crit.iterrows()])] + + # Rows are problems, cols are optimizers + df_crit = df_crit[np.array([not np.any(np.isnan(d.values)) for _, d in df_crit.iterrows()])] + logger.info(f"Lost following experiments: {lost}") + + return df_crit + + +def calc_critical_difference( + df: pd.DataFrame, identifier: str | None = None, figsize=(12, 8), perf_col: str = "trial_value__cost_inc_norm" +) -> RankResult: + df_crit = get_df_crit(df, perf_col=perf_col) + + # result = autorank(df_crit, alpha=0.05, verbose=True) + # create_report(result) + + # fig, ax = plt.subplots(figsize=(6,2)) + # ax = plot_stats(result, ax=ax) + + # if identifier is None: + # identifier = "" + # else: + # identifier = "_" + identifier + # fn = f"figures/critd/criticaldifference{identifier}" + # savefig(fig=fig, filename=fn + ".png") + # savefig(fig=fig, filename=fn + ".pdf") + + return cd_evaluation( + df_crit, + maximize_metric=False, + ignore_non_significance=True, + output_path=f"figures/critd/cd{identifier}", + figsize=figsize, + ) + + +def calc(rundir: str, scenario: str = "blackbox") -> None: + df, df_cfg = load_logs(rundir=rundir) + calc_critical_difference(df=df[df["scenario"] == scenario], identifier=scenario) + + +"""Code for CD Plots +Requirements: the usual (pandas, matplotlib, numpy) and autorank==1.1.3 + +Source: https://gist.github.com/LennartPurucker/cf4616512529e29c123608b6c2c4a7e9 +""" + +import math +import warnings + +from autorank._util import RankResult, get_sorted_rank_groups, rank_multiple_nonparametric, test_normality + + +def _custom_cd_diagram(result, reverse, ax, width): + """!TAKEN FROM AUTORANK WITH MODIFICATIONS!""" + + def plot_line(line, color="k", **kwargs): + ax.plot([pos[0] / width for pos in line], [pos[1] / height for pos in line], color=color, **kwargs) + + def plot_text(x, y, s, *args, **kwargs): + ax.text(x / width, y / height, s, *args, **kwargs) + + sorted_ranks, names, groups = get_sorted_rank_groups(result, reverse) + cd = result.cd + + lowv = min(1, int(math.floor(min(sorted_ranks)))) + highv = max(len(sorted_ranks), int(math.ceil(max(sorted_ranks)))) + cline = 0.4 + textspace = 1 + scalewidth = width - 2 * textspace + + def rankpos(rank): + relative_rank = rank - lowv if not reverse else highv - rank + return textspace + scalewidth / (highv - lowv) * relative_rank + + linesblank = 0.2 + 0.2 + (len(groups) - 1) * 0.1 + + # add scale + distanceh = 0.1 + cline += distanceh + + # calculate height needed height of an image + minnotsignificant = max(2 * 0.2, linesblank) + height = cline + ((len(sorted_ranks) + 1) / 2) * 0.2 + minnotsignificant + + if ax is None: + fig = plt.figure(figsize=(width, height)) + fig.set_facecolor("white") + ax = fig.add_axes([0, 0, 1, 1]) # reverse y axis + ax.set_axis_off() + + # Upper left corner is (0,0).3 + ax.plot([0, 1], [0, 1], c="w") + ax.set_xlim(0, 1) + ax.set_ylim(1, 0) + + plot_line([(textspace, cline), (width - textspace, cline)], linewidth=0.7) + + bigtick = 0.1 + smalltick = 0.05 + + tick = None + for a in [*list(np.arange(lowv, highv, 0.5)), highv]: + tick = smalltick + if a == int(a): + tick = bigtick + plot_line([(rankpos(a), cline - tick / 2), (rankpos(a), cline)], linewidth=0.7) + + for a in range(lowv, highv + 1): + plot_text(rankpos(a), cline - tick / 2 - 0.05, str(a), ha="center", va="bottom") + + for i in range(math.ceil(len(sorted_ranks) / 2)): + chei = cline + minnotsignificant + i * 0.2 + plot_line( + [(rankpos(sorted_ranks[i]), cline), (rankpos(sorted_ranks[i]), chei), (textspace - 0.1, chei)], + linewidth=0.7, + ) + plot_text(textspace - 0.2, chei, names[i], ha="right", va="center") + + for i in range(math.ceil(len(sorted_ranks) / 2), len(sorted_ranks)): + chei = cline + minnotsignificant + (len(sorted_ranks) - i - 1) * 0.2 + plot_line( + [(rankpos(sorted_ranks[i]), cline), (rankpos(sorted_ranks[i]), chei), (textspace + scalewidth + 0.1, chei)], + linewidth=0.7, + ) + plot_text(textspace + scalewidth + 0.2, chei, names[i], ha="left", va="center") + + # upper scale + if not reverse: + begin, end = rankpos(lowv), rankpos(lowv + cd) + else: + begin, end = rankpos(highv), rankpos(highv - cd) + distanceh += 0.15 + bigtick /= 2 + plot_line([(begin, distanceh), (end, distanceh)], linewidth=0.7) + plot_line([(begin, distanceh + bigtick / 2), (begin, distanceh - bigtick / 2)], linewidth=0.7) + plot_line([(end, distanceh + bigtick / 2), (end, distanceh - bigtick / 2)], linewidth=0.7) + plot_text((begin + end) / 2, distanceh - 0.05, "CD", ha="center", va="bottom") + + # no-significance lines + side = 0.05 + no_sig_height = 0.1 + start = cline + 0.2 + for l, r in groups: + plot_line([(rankpos(sorted_ranks[l]) - side, start), (rankpos(sorted_ranks[r]) + side, start)], linewidth=2.5) + start += no_sig_height + + return ax + + +def cd_evaluation( + performance_per_dataset, + maximize_metric, + output_path=None, + ignore_non_significance=False, + plt_title=None, + figsize=(12, 8), +) -> RankResult: + """Performance per dataset is a dataframe that stores the performance (with respect to a metric) for set of + configurations / models / algorithms per dataset. In detail, the columns are individual configurations. + rows are datasets and a cell is the performance of the configuration for dataset. + """ + # -- Preprocess data for autorank + rank_data = performance_per_dataset.copy() * -1 if maximize_metric else performance_per_dataset.copy() + rank_data = rank_data.reset_index(drop=True) + rank_data = pd.DataFrame(rank_data.values, columns=list(rank_data)) + + # -- Settings for autorank + alpha = 0.05 + effect_size = None + verbose = True + order = "ascending" # always due to the preprocessing + alpha_normality = alpha / len(rank_data.columns) + all_normal, pvals_shapiro = test_normality(rank_data, alpha_normality, verbose) + + # -- Friedman-Nemenyi + res = rank_multiple_nonparametric(rank_data, alpha, verbose, all_normal, order, effect_size, None) + + result = RankResult( + res.rankdf, + res.pvalue, + res.cd, + res.omnibus, + res.posthoc, + all_normal, + pvals_shapiro, + None, + None, + None, + alpha, + alpha_normality, + len(rank_data), + None, + None, + None, + None, + res.effect_size, + None, + ) + print(res.rankdf) + is_significant = True + if result.pvalue >= result.alpha: + if ignore_non_significance: + warnings.warn("Result is not significant and results of the plot may be misleading!") + is_significant = False + else: + raise ValueError( + "Result is not significant and results of the plot may be misleading. If you still want to see the CD plot, set" + + " ignore_non_significance to True." + ) + + # -- Plot + fig, ax = plt.subplots(figsize=figsize) + plt.rcParams.update({"font.size": 16}) + _custom_cd_diagram(result, False, ax, figsize[0]) # order == "descending", ax, 8) + if plt_title or not is_significant: + plt_title = "" + if not is_significant: + plt_title += "(non-significant)" + plt.title(plt_title) + plt.tight_layout() + if output_path: + Path(output_path).parent.mkdir(exist_ok=True, parents=True) + plt.savefig(output_path + ".png", transparent=True, bbox_inches="tight") + plt.savefig(output_path + ".pdf", transparent=True, bbox_inches="tight") + + plt.show() + plt.close() + + return result + + +# if __name__ == "__main__": +# input_data = pd.read_csv("./benchmark_binary_1hour.csv") # assume table format where each row represents some experiment run + +# # Pivot for desired metric to create the performance per dataset table +# performance_per_dataset = input_data.pivot(index="task", columns="framework", values="result") + +# # shows the plot by default +# cd_evaluation(performance_per_dataset, maximize_metric=True, output_path=None, ignore_non_significance=False) + +if __name__ == "__main__": + fire.Fire(calc) diff --git a/carps/analysis/superplotting.py b/carps/analysis/superplotting.py new file mode 100644 index 000000000..be4f96115 --- /dev/null +++ b/carps/analysis/superplotting.py @@ -0,0 +1,271 @@ +from __future__ import annotations + +import logging +from pathlib import Path +from typing import Any + +import matplotlib +import numpy as np +import pandas as pd +import seaborn as sns +from hydra.core.utils import setup_globals +from rich.logging import RichHandler +import matplotlib.pyplot as plt + + +def setup_logging() -> None: + FORMAT = "%(message)s" + logging.basicConfig(level=logging.INFO, format=FORMAT, datefmt="[%X]", handlers=[RichHandler()]) + +def get_logger(logger_name: str) -> logging.Logger: + """Get the logger by name.""" + return logging.getLogger(logger_name) + +setup_logging() +logger = get_logger(__file__) + + +setup_globals() + +def normalize(S: pd.Series, epsilon: float = 1e-8) -> pd.Series: + return (S - S.min()) / (S.max() - S.min() + epsilon) + +def convert_mixed_types_to_str(logs: pd.DataFrame, logger=None) -> pd.DataFrame: + mixed_type_columns = logs.select_dtypes(include=["O"]).columns + if logger: + logger.debug(f"Goodybe all mixed data, ruthlessly converting {mixed_type_columns} to str...") + for c in mixed_type_columns: + # D = logs[c] + # logs.drop(columns=c) + if c == "cfg_str": + continue + logs[c] = logs[c].map(lambda x: str(x)) + logs[c] = logs[c].astype("str") + return logs + + +def normalize_logs(logs: pd.DataFrame) -> pd.DataFrame: + logger.info("Start normalization...") + logger.info("Normalize n_trials...") + logs["n_trials_norm"] = logs.groupby("problem_id")["n_trials"].transform(normalize) + logger.info("Normalize cost...") + # Handle MO + ids_mo = logs["scenario"]=="multi-objective" + if len(ids_mo) > 0 and "hypervolume" in logs: + hv = logs.loc[ids_mo, "hypervolume"] + logs.loc[ids_mo, "trial_value__cost"] = -hv # higher is better + logs["trial_value__cost"] = logs["trial_value__cost"].astype("float64") + logs["trial_value__cost_inc"] = logs["trial_value__cost"].transform("cummin") + logs["trial_value__cost_norm"] = logs.groupby("problem_id")["trial_value__cost"].transform(normalize) + logger.info("Calc normalized incumbent cost...") + logs["trial_value__cost_inc_norm"] = logs.groupby(by=["problem_id", "optimizer_id", "seed"])["trial_value__cost_norm"].transform("cummin") + if "time" not in logs: + logs["time"] = 0 + logger.info("Normalize time...") + logs["time_norm"] = logs.groupby("problem_id")["time"].transform(normalize) + logs = convert_mixed_types_to_str(logs, logger) + logger.info("Done.") + return logs + +def get_interpolated_performance_df(logs: pd.DataFrame, n_points: int = 20, x_column: str = "n_trials_norm", interpolation_columns: list[str] | None = None) -> pd.DataFrame: + """Get performance dataframe for plotting. + + Interpolated at regular intervals. + + Parameters + ---------- + logs : pd.DataFrame + Preprocessed logs. + n_points : int, optional + Number of interpolation steps, by default 20 + x_column : str, optional + The x-axis column to interpolate by, by default 'n_trials_norm' + + Raises: + ------ + ValueError + When x_column missing in dataframe. + + Returns: + ------- + pd.DataFrame + Performance data frame for plotting + """ + if interpolation_columns is None: + interpolation_columns = ["trial_value__cost", "trial_value__cost_norm", "trial_value__cost_inc", "trial_value__cost_inc_norm"] + logger.info("Create dataframe for neat plotting by aligning x-axis / interpolating budget.") + + if x_column not in logs: + msg = f"x_column `{x_column}` not in logs! Did you call `carps.analysis.process_data.process_logs` on the raw logs?" + raise ValueError(msg) + + # interpolation_columns = [ + # c for c in logs.columns if c != x_column and c not in identifier_columns and not c.startswith("problem")] + group_keys = ["scenario", "set", "benchmark_id", "optimizer_id", "problem_id", "seed"] + x = np.linspace(0, 1, n_points + 1) + D = [] + for gid, gdf in logs.groupby(by=group_keys): + metadata = dict(zip(group_keys, gid, strict=False)) + performance_data = {} + performance_data[x_column] = x + for icol in interpolation_columns: + if icol in gdf: + xp = gdf[x_column].to_numpy() + fp = gdf[icol].to_numpy() + y = np.interp(x=x, xp=xp, fp=fp) + performance_data[icol] = y + performance_data.update(metadata) + D.append(pd.DataFrame(performance_data)) + return pd.concat(D).reset_index(drop=True) + + + + + +def get_color_palette(df: pd.DataFrame | None) -> dict[str, Any]: + cmap = sns.color_palette("colorblind", as_cmap=True) + optimizers = list(df["optimizer_id"].unique()) + optimizers.sort() + return {o: cmap[i] for i,o in enumerate(optimizers)} + +def savefig(fig: plt.Figure, filename: str) -> None: + figure_filename = Path(filename) + figure_filename.parent.mkdir(parents=True, exist_ok=True) + fig.savefig(str(figure_filename) + ".png", dpi=300, bbox_inches="tight") + fig.savefig(str(figure_filename) + ".pdf", dpi=300, bbox_inches="tight") + +def setup_seaborn(font_scale: float | None = None) -> None: + if font_scale is not None: + sns.set_theme(font_scale=font_scale) + sns.set_style("whitegrid") + sns.set_palette("colorblind") + +def filter_only_final_performance(df: pd.DataFrame, budget_var: str = "n_trials_norm", max_budget: float = 1, soft: bool = True) -> pd.DataFrame: + if not soft: + df = df[np.isclose(df[budget_var], max_budget)] + else: + df = df[df.groupby(["optimizer_id", "problem_id", "seed"])[budget_var].transform(lambda x: x == x.max())] + return df + + +def plot_performance_over_time(df: pd.DataFrame, x="n_trials_norm", y="cost_inc_norm", hue="optimizer_id", figure_filename: str = "figures/performance_over_time.pdf", figsize: tuple[int,int]=(6,4), show_legend: bool = True, **lineplot_kwargs + ) -> tuple[plt.Figure, matplotlib.axes.Axes]: + setup_seaborn(font_scale=1.5) + palette = get_color_palette(df) + fig = plt.figure(figsize=figsize) + ax = fig.add_subplot(111) + ax = sns.lineplot(data=df, x=x, y=y, hue=hue, palette=palette, **lineplot_kwargs, ax=ax) + if show_legend: + ax.legend(loc="center left", bbox_to_anchor=(1.05, 0.5)) + else: + ax.get_legend().remove() + savefig(fig, figure_filename) + return fig, ax + +def get_df_crit(df: pd.DataFrame, budget_var: str = "n_trials_norm", max_budget: float = 1, soft: bool = True, perf_col: str = "trial_value__cost_inc", remove_nan: bool = True) -> pd.DataFrame: + df = filter_only_final_performance(df=df, budget_var=budget_var, max_budget=max_budget, soft=soft) + + # Work on mean of different seeds + df_crit = df.groupby(["optimizer_id", "problem_id"])[perf_col].apply(np.nanmean).reset_index() + + df_crit = df_crit.pivot( + index="problem_id", + columns="optimizer_id", + values=perf_col + ) + + if remove_nan: + lost = df_crit[np.array([np.any(np.isnan(d.values)) for _, d in df_crit.iterrows()])] + + # Rows are problems, cols are optimizers + df_crit = df_crit[np.array([not np.any(np.isnan(d.values)) for _, d in df_crit.iterrows()])] + logger.info(f"Lost following experiments: {lost}") + + return df_crit + + +if __name__ == "__main__": + # df.columns: + # Index(['n_trials', 'n_incumbents', 'trial_value__cost', + # 'trial_value__cost_inc', 'scenario', 'benchmark_id', 'problem_id', + # 'optimizer_id', 'seed', 'reference_point', 'hypervolume', 'set'], + # dtype='object') + # all but following necessary (but you can adjust also what the function works on): n_incumbents, scenario, reference_point, hypervolume + df = pd.read_parquet("runs_subset_BB/dev/logs.parquet") + df["set"] = "dev" + + df = normalize_logs(df) + # print_overview(df) + perf = get_interpolated_performance_df(df) + perf_time = get_interpolated_performance_df(df, x_column="time_norm") + + + + lineplot_kwargs = {"linewidth": 3} + for gid, gdf in perf.groupby(by=["scenario", "set"]): + print(gid) + fig, ax = plot_performance_over_time( + df=gdf, + x="n_trials_norm", + y="trial_value__cost_inc_norm", + hue="optimizer_id", + figure_filename=f"figures/perf_over_time/performance_over_time_{gid}_trials.pdf", + figsize=(6,4), + **lineplot_kwargs + ) + + perf_col = "trial_value__cost_inc_norm" + problem_prefix = "" + fpath = Path("figures") + fpath.mkdir(exist_ok=True, parents=True) + identifier = gid + + # DF on normalized perf values + df_crit = get_df_crit(gdf, remove_nan=False, perf_col=perf_col) + # df_crit = df_crit.reindex(columns=names) # NOTE: Can order columns here + df_crit.index = [i.replace(problem_prefix + "/dev/", "") for i in df_crit.index] + df_crit.index = [i.replace(problem_prefix + "/test/", "") for i in df_crit.index] + plt.figure(figsize=(12, 12)) + sns.heatmap(df_crit, annot=False, fmt="g", cmap="viridis_r") + plt.title("Performance of Optimizers per Problem (Normalized)") + plt.ylabel("Problem ID") + plt.xlabel("Optimizer") + savefig(plt.gcf(), fpath / f"perf_opt_per_problem_{identifier}") + plt.show() + + # Df on raw values + # Optionally, plot the ranked data as a heatmap + df_crit = get_df_crit(gdf, remove_nan=False, perf_col=perf_col) + # df_crit = df_crit.reindex(columns=names) # NOTE: Can order columns here + df_crit.index = [i.replace(problem_prefix + "/dev/", "") for i in df_crit.index] + df_crit.index = [i.replace(problem_prefix + "/test/", "") for i in df_crit.index] + ranked_df = df_crit.rank(axis=1, method="min", ascending=True) + + plt.figure(figsize=(12, 12)) + sns.heatmap(ranked_df, annot=True, fmt="g", cmap="viridis_r") + plt.title("Ranking of Optimizers per Problem") + plt.ylabel("Problem ID") + plt.xlabel("Optimizer") + savefig(plt.gcf(), fpath / f"rank_opt_per_problem_{identifier}") + plt.show() + + # Plotting the heatmap of the rank correlation matrix + correlation_matrix = ranked_df.corr(method="spearman") + plt.figure(figsize=(8,6)) + sns.heatmap(correlation_matrix, annot=True, cmap="coolwarm", cbar=True, square=True, fmt=".2f") + plt.title("Spearman Rank Correlation Matrix Between Optimizers") + savefig(plt.gcf(), fpath / f"spearman_rank_corr_matrix_opt_{identifier}") + plt.show() + + # Plot performance over actual time + for gid, gdf in perf_time.groupby(by=["scenario", "set"]): + print(gid) + fig, ax = plot_performance_over_time( + df=gdf, + x="time_norm", + y="trial_value__cost_inc_norm", + hue="optimizer_id", + figure_filename=f"figures/perf_over_time/performance_over_time_{gid}_elapsed.pdf", + figsize=(6,4), + **lineplot_kwargs + ) \ No newline at end of file diff --git a/carps/analysis/utils.py b/carps/analysis/utils.py new file mode 100644 index 000000000..bc75949d3 --- /dev/null +++ b/carps/analysis/utils.py @@ -0,0 +1,42 @@ +from __future__ import annotations + +from pathlib import Path +from typing import TYPE_CHECKING, Any + +import numpy as np +import seaborn as sns + +if TYPE_CHECKING: + import matplotlib.pyplot as plt + import pandas as pd + + +def get_color_palette(df: pd.DataFrame | None) -> dict[str, Any]: + cmap = sns.color_palette("colorblind", as_cmap=True) + optimizers = list(df["optimizer_id"].unique()) + optimizers.sort() + return {o: cmap[i] for i, o in enumerate(optimizers)} + + +def savefig(fig: plt.Figure, filename: str) -> None: + figure_filename = Path(filename) + figure_filename.parent.mkdir(parents=True, exist_ok=True) + fig.savefig(str(figure_filename) + ".png", dpi=300, bbox_inches="tight") + fig.savefig(str(figure_filename) + ".pdf", dpi=300, bbox_inches="tight") + + +def setup_seaborn(font_scale: float | None = None) -> None: + if font_scale is not None: + sns.set_theme(font_scale=font_scale) + sns.set_style("whitegrid") + sns.set_palette("colorblind") + + +def filter_only_final_performance( + df: pd.DataFrame, budget_var: str = "n_trials_norm", max_budget: float = 1, soft: bool = True +) -> pd.DataFrame: + if not soft: + df = df[np.isclose(df[budget_var], max_budget)] + else: + df = df[df.groupby(["optimizer_id", "problem_id", "seed"])[budget_var].transform(lambda x: x == x.max())] + return df diff --git a/carps/benchmarks/COLLECTIONS.md b/carps/benchmarks/COLLECTIONS.md new file mode 100644 index 000000000..b5b99c1a8 --- /dev/null +++ b/carps/benchmarks/COLLECTIONS.md @@ -0,0 +1,33 @@ +Blackbox problems + +1. YAHPO gym Set Single-Objective +```bash +SMAC20='+optimizer/smac20=blackbox' +SMAC14='+optimizer/smac14=blackbox' +RANDOMSEARCH='+optimizer/randomsearch=config' +HEBO='+optimizer/hebo=config' + +YAHPO_SO='+problem/YAHPO/SO=glob("cfg_*")' + +SEED='seed=range(1,11)' + + +python carps/container/create_cluster_configs.py $SMAC20 $YAHPO_SO $SEED --multirun +python carps/container/create_cluster_configs.py $SMAC14 $YAHPO_SO $SEED --multirun +python carps/container/create_cluster_configs.py $OPTIMIZER $YAHPO_SO $SEED --multirun +python carps/container/create_cluster_configs.py $HEBO $YAHPO_SO $SEED --multirun + +``` + + +MF + + +fix/test multi-fidelity +overview experiments +create initial experiment set + + +PEACH +FISH: framework for integrated scientific harvesting +CARP: comprehensive automl research platform \ No newline at end of file diff --git a/carps/benchmarks/__init__.py b/carps/benchmarks/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/carps/benchmarks/bbob.py b/carps/benchmarks/bbob.py new file mode 100644 index 000000000..178790338 --- /dev/null +++ b/carps/benchmarks/bbob.py @@ -0,0 +1,97 @@ +from __future__ import annotations + +import time +from typing import TYPE_CHECKING, Any + +import ioh +from ConfigSpace import ConfigurationSpace, Float + +from carps.benchmarks.manyaffinebbob import register_many_affine_functions +from carps.benchmarks.problem import Problem +from carps.utils.trials import TrialInfo, TrialValue + +if TYPE_CHECKING: + from carps.loggers.abstract_logger import AbstractLogger + +register_many_affine_functions() + + +class BBOBProblem(Problem): + def __init__(self, fid: int, instance: int, dimension: int, seed: int, loggers: list[AbstractLogger] | None = None): + super().__init__(loggers) + + self._configspace, self._problem = get_bbob_problem(fid=fid, instance=instance, dimension=dimension, seed=seed) + + @property + def f_min(self) -> float | None: + return self._problem.optimum.y + + @property + def configspace(self) -> ConfigurationSpace: + """Return configuration space. + + Returns: + ------- + ConfigurationSpace + Configuration space. + """ + return self._configspace + + def _evaluate(self, trial_info: TrialInfo) -> TrialValue: + """Evaluate problem. + + Parameters + ---------- + trial_info : TrialInfo + Dataclass with configuration, seed, budget, instance. + + Returns: + ------- + float + Cost + """ + configuration = trial_info.config + input = list(dict(configuration).values()) + starttime = time.time() + cost = self._problem(input) + endtime = time.time() + T = endtime - starttime + + return TrialValue(cost=cost, time=T, starttime=starttime, endtime=endtime) + + +def get_bbob_problem(fid: int, instance: int, dimension: int, seed: int) -> tuple[ConfigurationSpace, Any]: + r"""Get BBOB problem. + + Parameters + ---------- + fid : int + Function id $\in$ [1,24]. + instance : int + Function instance. + dimension : int + Dimension. 1-x + seed : int + Seed for configuration space. + + Returns: + ------- + tuple[ConfigurationSpace, Any] + Configuration space, target function. + """ + problem = ioh.get_problem( + fid=fid, + instance=instance, + dimension=dimension, + # problem_type=ProblemType.BBOB, + ) + + # Configuration space + lower_bounds = problem.bounds.lb + upper_bounds = problem.bounds.ub + n_dim = problem.meta_data.n_variables + hps = [Float(name=f"x{i}", bounds=[lower_bounds[i], upper_bounds[i]]) for i in range(n_dim)] + configuration_space = ConfigurationSpace(seed=seed) + configuration_space.add_hyperparameters(hps) + + return configuration_space, problem diff --git a/carps/benchmarks/dummy_problem.py b/carps/benchmarks/dummy_problem.py new file mode 100644 index 000000000..1a3f3b167 --- /dev/null +++ b/carps/benchmarks/dummy_problem.py @@ -0,0 +1,32 @@ +from __future__ import annotations + +import time +from typing import TYPE_CHECKING + +from ConfigSpace import ConfigurationSpace, Float + +from carps.benchmarks.problem import Problem +from carps.utils.trials import TrialInfo, TrialValue + +if TYPE_CHECKING: + from carps.loggers.abstract_logger import AbstractLogger + + +class DummyProblem(Problem): + def __init__(self, return_value=0, budget_type: str | None = "dummy", loggers: list[AbstractLogger] | None = None): + super().__init__(loggers) + self.budget_type = budget_type + self._return_value = return_value + self._configspace = ConfigurationSpace( + space={ + "a": Float("a", bounds=(-1, 1)), + } + ) + + @property + def configspace(self) -> ConfigurationSpace: + return self._configspace + + def _evaluate(self, trial_info: TrialInfo) -> TrialValue: + start_time = time.time() + return TrialValue(cost=self._return_value, time=1, starttime=start_time, endtime=start_time + 1, virtual_time=1) diff --git a/carps/benchmarks/hpo_b.py b/carps/benchmarks/hpo_b.py new file mode 100644 index 000000000..f6b6ba40d --- /dev/null +++ b/carps/benchmarks/hpo_b.py @@ -0,0 +1,302 @@ +"""HPO-B is a benchmark for assessing the performance of black-box HPO algorithms. +Originally from HPO-B Benchmark: https://github.com/releaunifreiburg/HPO-B +Sebastian Pineda-Arango, Hadi S. Jomaa, Martin Wistuba, Josif Grabocka: HPO-B: A Large-Scale Reproducible Benchmark for +Black-Box HPO based on OpenML. NeurIPS Datasets and Benchmarks 2021 +Note that this benchmark only converges the surrogate benchmark. Tabular benchmark can not be used in our framework. + +To run this benchmark, you must download the benchmark surrogate model under +https://rewind.tf.uni-freiburg.de/index.php/s/rTwPgaxS2Z7NH39/download/saved-surrogates.zip +for details, please refer to https://github.com/releaunifreiburg/HPO-B +""" + +from __future__ import annotations + +import json +import time +from pathlib import Path +from typing import TYPE_CHECKING + +import numpy as np +import xgboost as xgb +from ConfigSpace import ConfigurationSpace + +from carps.benchmarks.problem import Problem +from carps.utils.trials import TrialInfo, TrialValue + +if TYPE_CHECKING: + from carps.loggers.abstract_logger import AbstractLogger + +HPOB_SEARCH_SPACE_DIMS = { + "151": 1, + "5886": 9, + "5918": 13, + "5920": 20, + "5923": 16, + "5926": 10, + "5978": 17, + "6007": 15, + "6073": 16, + "6105": 53, + "6136": 8, + "6140": 19, + "6154": 17, + "6183": 41, + "6447": 2, + "6458": 3, + "534": 1, + "4796": 3, + "5499": 12, + "5988": 31, + "5584": 6, + "189": 1, + "7064": 8, + "5527": 8, + "5636": 6, + "5859": 6, + "5860": 2, + "5890": 2, + "5891": 8, + "5906": 16, + "5965": 10, + "5968": 8, + "5970": 2, + "5971": 16, + "6308": 2, + "6762": 6, + "6766": 2, + "6767": 18, + "6794": 10, + "6856": 1, + "7188": 1, + "7189": 3, + "7190": 3, + "7607": 9, + "7609": 9, + "5624": 7, + "124": 1, + "153": 1, + "243": 1, + "245": 1, + "246": 1, + "247": 1, + "248": 1, + "423": 1, + "506": 1, + "633": 1, + "2553": 1, + "4006": 1, + "5526": 2, + "7286": 2, + "7290": 4, + "5626": 17, + "5889": 6, + "5458": 16, + "5489": 14, + "4828": 10, + "214": 1, + "6741": 21, + "158": 1, + "2566": 2, + "3894": 6, + "6003": 18, + "6765": 2, + "5963": 15, + "6000": 2, + "6322": 8, + "5623": 3, + "5969": 8, + "3737": 2, + "829": 4, + "833": 5, + "935": 4, + "6323": 2, + "7200": 19, + "673": 1, + "674": 1, + "678": 1, + "679": 1, + "680": 1, + "681": 1, + "682": 1, + "683": 1, + "684": 1, + "685": 1, + "688": 1, + "689": 1, + "690": 1, + "691": 1, + "692": 1, + "693": 1, + "694": 1, + "695": 1, + "696": 1, + "697": 1, + "3994": 1, + "5964": 9, + "5972": 2, + "6075": 6, + "2010": 8, + "2039": 14, + "2073": 13, + "2277": 15, + "3489": 12, + "3490": 29, + "3502": 6, + "3960": 15, + "4289": 20, + "5218": 19, + "5237": 8, + "5253": 2, + "5295": 13, + "5301": 15, + "5315": 9, + "2614": 2, + "2629": 6, + "2793": 12, + "2799": 7, + "2823": 11, + "3414": 2, + "3425": 9, + "3434": 19, + "3439": 3, + "3442": 5, + "5503": 2, + "6131": 2, + "5435": 3, + "7021": 3, + "5502": 8, + "5521": 3, + "5604": 12, + "5704": 3, + "5788": 3, + "5813": 10, + "7680": 2, + "7604": 2, + "5919": 5, + "5921": 3, + "5922": 10, + "5960": 7, + "6024": 10, + "6124": 18, + "6134": 11, + "6137": 18, + "6139": 16, + "6155": 7, + "6156": 1, + "6182": 3, + "6189": 20, + "6190": 6, + "6211": 15, + "6212": 4, + "6213": 3, + "6215": 10, + "6216": 5, + "6271": 18, + "6285": 10, + "6309": 7, + "6345": 20, + "6347": 2, + "6364": 3, + "6365": 4, + "6376": 7, + "6433": 18, + "6461": 8, + "6493": 15, + "6507": 3, +} + + +class HPOBProblem(Problem): + def __init__( + self, + dataset_id: tuple[str, int], + model_id: tuple[str, int], + surrogates_dir: Path = Path("carps/benchmark_data/HPO-B/saved-surrogates"), + loggers: list[AbstractLogger] | None = None, + ): + """Constructor for the HPO-B handler. Given that the configuration space of HPO-B tabular dataset is not generated + from grid, we only consider surrogate benchmark. + Parameters. + ---------- + dataset_id: tuple[str, int] + dataset id, the ids can be found under surrogate_model summary directory + model_id: tuple[str, int] + model id, each model corresponds to a search space, the search space dimensions can be found under + surrogates_dir: Path + path to directory with surrogates models. + """ + super().__init__(loggers) + self.model_id = str(model_id) + self.dataset_id = str(dataset_id) + + surrogates_dir = Path(surrogates_dir) + surrogates_file = surrogates_dir / "summary-stats.json" + if not surrogates_file.is_file(): + raise RuntimeError( + "It seems that the surrogate files have not been downloaded. Please run " + "'bash container_recipes/benchmarks/hpob/download_data.sh' to download the " + "surrogates." + ) + with open(str(surrogates_file)) as f: + self.surrogates_stats = json.load(f) + self.surrogate_dir = surrogates_dir + + self.surrogate_model = self._get_surrogate_model(self.dataset_id, self.model_id) + + # generate configuration space, all the feature values range from [0,1] according to the setting + search_space_dims = HPOB_SEARCH_SPACE_DIMS[model_id] + self.search_space_dims = search_space_dims + + self._configspace = self._get_configspace(search_space_dims) + + def _get_surrogate_model(self, dataset_id: str, model_id: str) -> xgb.Booster: + """Get the surrogate model for the problem.""" + surrogate_name = "surrogate-" + str(model_id) + "-" + str(dataset_id) + surrogate_dir = self.surrogate_dir / (surrogate_name + ".json") + if not surrogate_dir.exists(): + raise ValueError(f"Unknown dataset: {dataset_id} and model: {model_id} combination") + bst_surrogate = xgb.Booster() + bst_surrogate.load_model(str(self.surrogate_dir / (surrogate_name + ".json"))) + return bst_surrogate + + def _get_configspace(self, search_space_dims: int): + # generate configuration space, all the feature values range 0 to 1 + bounds = tuple([(0, 1) for _ in range(search_space_dims)]) + cs = ConfigurationSpace() + cs.generate_all_continuous_from_bounds(bounds) + return cs + + @property + def configspace(self) -> ConfigurationSpace: + """Return configuration space. + + Returns: + ------- + ConfigurationSpace + Configuration space. + """ + return self._configspace + + def _evaluate(self, trial_info: TrialInfo) -> TrialValue: + """Evaluate problem. + + Parameters + ---------- + trial_info : TrialInfo + Dataclass with configuration, seed, budget, instance. + + Returns: + ------- + TrialValue + Cost + """ + configuration = trial_info.config + input = np.asarray(list(dict(configuration).values())) + starttime = time.time() + x_q = xgb.DMatrix(input.reshape(-1, self.search_space_dims)) + predicted_output = self.surrogate_model.predict(x_q) + endtime = time.time() + T = endtime - starttime + + # we would like to do minimization + return TrialValue(cost=-predicted_output.item(), time=T, starttime=starttime, endtime=endtime) diff --git a/carps/benchmarks/hpo_bench.py b/carps/benchmarks/hpo_bench.py new file mode 100644 index 000000000..852f652bf --- /dev/null +++ b/carps/benchmarks/hpo_bench.py @@ -0,0 +1,157 @@ +"""HPOBench problem class.""" + +from __future__ import annotations + +import time +from typing import TYPE_CHECKING, Any + +from hpobench.benchmarks.ml.lr_benchmark import LRBenchmark +from hpobench.benchmarks.ml.nn_benchmark import NNBenchmark +from hpobench.benchmarks.ml.rf_benchmark import RandomForestBenchmark +from hpobench.benchmarks.ml.svm_benchmark import SVMBenchmark +from hpobench.benchmarks.ml.tabular_benchmark import TabularBenchmark +from hpobench.benchmarks.ml.xgboost_benchmark import XGBoostBenchmark +from omegaconf import ListConfig + +from carps.benchmarks.problem import Problem +from carps.utils.trials import TrialInfo, TrialValue + +if TYPE_CHECKING: + from ConfigSpace import ConfigurationSpace + from hpobench.container.client_abstract_benchmark import AbstractBenchmarkClient + + from carps.loggers.abstract_logger import AbstractLogger + + +class HPOBenchProblem(Problem): + """HPOBench problem.""" + + def __init__( + self, + seed: int, + model: str | None = None, + task_id: int | None = None, + metric: str | list[str] = "function_value", + problem: AbstractBenchmarkClient | None = None, + budget_type: str | None = None, + loggers: list[AbstractLogger] | None = None, + ): + """Initialize a HPOBench problem. + + Either specify model and task_id for an ML problem or problem. + + Parameters + ---------- + model : str Model name. + task_id : str Task ID, see https://arxiv.org/pdf/2109.06716.pdf, page 22. + problem : AbstractBenchmarkClient + Instantiated benchmark problem, e.g. + `hpobench.container.benchmarks.surrogates.paramnet_benchmark.ParamNetAdultOnStepsBenchmark`. + seed: int Random seed. + budget_type : Optional[str] Budget type for the multifidelity setting. + Should be None for the blackbox setting. + """ + super().__init__(loggers) + + self.budget_type = budget_type + + if problem is None and model is None and task_id is None: + raise ValueError("Please specify either problem or model and task_id.") + + self._problem = ( + problem + if problem + else get_hpobench_problem(task_id=task_id, model=model, seed=seed, budget_type=self.budget_type) + ) + if not isinstance(metric, list | ListConfig): + metric = [metric] + self.metric = metric + self._configspace = self._problem.get_configuration_space(seed=seed) + + @property + def configspace(self) -> ConfigurationSpace: + """Return configuration space. + + Returns: + ------- + ConfigurationSpace + Configuration space. + """ + return self._configspace + + def _evaluate(self, trial_info: TrialInfo) -> TrialValue: + """Evaluate problem. + + Parameters + ---------- + trial_info : TrialInfo + Dataclass with configuration, seed, budget, instance. + + Returns: + ------- + TrialValue + Cost + """ + configuration = trial_info.config + starttime = time.time() + + if trial_info.budget is not None and self.budget_type is not None: + budget_value = float(trial_info.budget) if self.budget_type == "subsample" else round(trial_info.budget) + fidelity = {self.budget_type: budget_value} + else: + fidelity = None + + result_dict = self._problem.objective_function( + configuration=configuration, fidelity=fidelity, rng=trial_info.seed + ) + endtime = time.time() + T = endtime - starttime + virtual_time = result_dict["cost"] if trial_info.budget is None else 0.0 + costs = [result_dict[metric] for metric in self.metric] + if len(costs) == 1: + costs = costs[0] + # function_value is 1 - accuracy on the validation set + return TrialValue( + cost=costs, + time=T, + starttime=starttime, + endtime=endtime, + virtual_time=virtual_time, + ) + + +def get_hpobench_problem(model: str, task_id: int, seed: int, budget_type: str | None = None) -> Any: + """Get HPOBench problem. + + Parameters + ---------- + model : str Model name. + task_id : str Task ID, see https://arxiv.org/pdf/2109.06716.pdf, page 22. + seed: int Random seed. + budget_type : Optional[str] Budget type for the multifidelity setting. + Should be None for the blackbox setting. + + Returns: + ------- + Any + Target function. + """ + common_args = {"rng": seed, "task_id": task_id} + if model == "lr": + problem = TabularBenchmark(model="lr", **common_args) if budget_type is None else LRBenchmark(**common_args) + elif model == "nn": + problem = TabularBenchmark(model="nn", **common_args) if budget_type is None else NNBenchmark(**common_args) + elif model == "rf": + problem = ( + TabularBenchmark(model="rf", **common_args) if budget_type is None else RandomForestBenchmark(**common_args) + ) + elif model == "svm": + problem = TabularBenchmark(model="svm", **common_args) if budget_type is None else SVMBenchmark(**common_args) + elif model == "xgboost": + problem = ( + TabularBenchmark(model="xgb", **common_args) if budget_type is None else XGBoostBenchmark(**common_args) + ) + else: + raise ValueError(f"Unknown model {model} for HPOBench.") + + return problem diff --git a/carps/benchmarks/manyaffinebbob.py b/carps/benchmarks/manyaffinebbob.py new file mode 100644 index 000000000..575d1af26 --- /dev/null +++ b/carps/benchmarks/manyaffinebbob.py @@ -0,0 +1,74 @@ +from __future__ import annotations + +# https://github.com/Dvermetten/Many-affine-BBOB/blob/master/affine_barebones.py +import ioh +import numpy as np + +scale_factors = [ + 11.0, + 17.5, + 12.3, + 12.6, + 11.5, + 15.3, + 12.1, + 15.3, + 15.2, + 17.4, + 13.4, + 20.4, + 12.9, + 10.4, + 12.3, + 10.3, + 9.8, + 10.6, + 10.0, + 14.7, + 10.7, + 10.8, + 9.0, + 12.1, +] + + +class ManyAffine: + def __init__(self, weights, instances, opt_loc=1, dim=5, sf_type="min_max"): + self.weights = weights / np.sum(weights) + self.fcts = [ioh.get_problem(fid, int(iid), dim) for fid, iid in zip(range(1, 25), instances, strict=False)] + self.opts = [f.optimum.y for f in self.fcts] + self.scale_factors = scale_factors + if type(opt_loc) == int: + self.opt_x = self.fcts[opt_loc].optimum.x + else: + self.opt_x = opt_loc + + def __call__(self, x): + raw_vals = np.array( + [ + np.clip(f(x + f.optimum.x - self.opt_x) - o, 1e-12, 1e20) + for f, o in zip(self.fcts, self.opts, strict=False) + ] + ) + weighted = (np.log10(raw_vals) + 8) / self.scale_factors * self.weights + return 10 ** (10 * np.sum(weighted) - 8) + + +def register_many_affine_functions(): + n_functions = 24 + dimensions = np.arange(2, 11) + + seed = 476926 + rng = np.random.default_rng(seed=seed) + + for dim in dimensions: + for i in range(1, n_functions + 1): # 1-based, same as original bbob + weights = rng.uniform(size=24) + iids = rng.integers(100, size=24) + opt_loc = rng.uniform(size=dim) * 10 - 5 # in [-5,5] as BBOB + + f_new = ManyAffine(weights, iids, opt_loc, dim) + + name = f"MA{i}_d{dim}" + + ioh.problem.wrap_real_problem(f_new, name=name, optimization_type=ioh.OptimizationType.MIN, lb=-5, ub=5) diff --git a/carps/benchmarks/mfpbench.py b/carps/benchmarks/mfpbench.py new file mode 100644 index 000000000..7711fd439 --- /dev/null +++ b/carps/benchmarks/mfpbench.py @@ -0,0 +1,152 @@ +"""MF-Prior-Bench Problem. + +* HOW TO USE: +* ------------ +* MF-Prior-Bench Documentation: https://automl.github.io/mf-prior-bench/latest/setup/ +* 1. Install MF-Prior-Bench using `pip install mf-prior-bench` +* 2. Download the data for the respective benchmarks using +* `python -m mfpbench download --benchmark --datadir ` +* where is one of ["pd1", "jahs"] +* 3. Install requirements from "./container_recipes/benchmarks/MFPBench/MFPBench_requirements.txt" +* NOTE: JAHSBench is commented out in the requirements file due to compatibility issues +* 4. Test example 1 (smac20 multifidelity on PD1 imagenet_resnet_512 benchmark): +* `python carps/run.py +optimizer/smac20=multifidelity +problem/MFPBench/pd1=imagenet_resnet_512 +* seed=1 task.n_trials=25 data_dir=` +* Test example 2 (smac20 multifidelity on all available MFHartmann benchmarks): +* `python carps/run.py +optimizer/smac20=multifidelity '+problem/MFPBench/mfh=glob(*)' 'seed=range(0, 10)' -m` +""" + +from __future__ import annotations + +import time +from collections.abc import Mapping +from pathlib import Path +from typing import TYPE_CHECKING, Any, TypeVar + +import mfpbench + +from carps.benchmarks.problem import Problem +from carps.utils.trials import TrialInfo, TrialValue + +if TYPE_CHECKING: + from ConfigSpace import ConfigurationSpace + + from carps.loggers.abstract_logger import AbstractLogger + +benchmarks_names = ["pd1", "jahs", "mfh"] + +benchmarks = [ + # PD1 + "lm1b_transformer_2048", + "translatewmt_xformer_64", + "cifar100_wideresnet_2048", + "imagenet_resnet_512", + # MFHartmann + "mfh3", + "mfh6", + "mfh3_terrible", + "mfh3_bad", + "mfh3_moderate", + "mfh3_good", + "mfh6_terrible", + "mfh6_bad", + "mfh6_moderate", + "mfh6_good", + # JAHSBench + "jahs", # NOTE: Untested, compatibility issues with some package versions +] + +C = TypeVar("C", bound=mfpbench.Config) + + +class MFPBenchProblem(Problem): + """MF-Prior-Bench Problem class.""" + + def __init__( + self, + benchmark_name: str, + metric: str | list[str], + benchmark: str | None = None, + budget_type: str | None = None, + prior: str | Path | C | Mapping[str, Any] | None = None, + perturb_prior: float | None = None, + benchmark_kwargs: dict | None = None, + loggers: list[AbstractLogger] | None = None, + ) -> None: + """Initialize a MF-Prior-Bench problem.""" + super().__init__(loggers) + + self.benchmark_name = benchmark_name + self.budget_type = budget_type + self.benchmark = benchmark + self.metrics = metric + self.prior = prior + self.perturb_prior = perturb_prior + assert self.benchmark_name in benchmarks_names, f"benchmark_name must be one of {benchmarks_names}" + assert self.benchmark in benchmarks, f"benchmark '{benchmark}' must be one of {benchmarks}" + + if benchmark_kwargs is None: + benchmark_kwargs = {} + elif benchmark_kwargs.get("datadir") is not None: + # Assumes that the data is stored in the following format: + benchmark_kwargs["datadir"] = Path(benchmark_kwargs["datadir"]) / benchmark_name + + self._problem = mfpbench.get( + name=benchmark, + prior=self.prior, + perturb_prior=self.perturb_prior, + **benchmark_kwargs, + ) + self._configspace = self._problem.space + + @property + def configspace(self) -> ConfigurationSpace: + """Return configuration space. + + Returns: + ------- + ConfigurationSpace + Configuration space. + """ + return self._configspace + + def _evaluate(self, trial_info: TrialInfo) -> TrialValue: + """Evaluate problem. + + Parameters + ---------- + trial_info : TrialInfo + Dataclass with configuration, seed, budget, instance. + + Returns: + ------- + TrialValue + Cost + """ + configuration = trial_info.config + start_time = time.time() + result = self._problem.query( + configuration.get_dictionary(), + at=int(trial_info.budget) if trial_info.budget is not None else None, + ).as_dict() + end_time = time.time() + + ret = [result[metric] for metric in self.metrics] + if len(ret) == 1: + ret = ret[0] + + vt = 0.0 + if self.benchmark_name == "jahs": + vt = result["runtime"] + elif self.benchmark_name == "mfh": + vt = result["fid_cost"] + else: + vt = result["train_cost"] + + return TrialValue( + cost=ret, + time=end_time - start_time, + starttime=start_time, + endtime=end_time, + virtual_time=vt, + ) diff --git a/carps/benchmarks/problem.py b/carps/benchmarks/problem.py new file mode 100644 index 000000000..4240dbdec --- /dev/null +++ b/carps/benchmarks/problem.py @@ -0,0 +1,88 @@ +from __future__ import annotations + +from abc import ABC, abstractmethod +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from ConfigSpace import ConfigurationSpace + + from carps.loggers.abstract_logger import AbstractLogger + from carps.utils.trials import TrialInfo, TrialValue + + +class Problem(ABC): + """Problem to optimize.""" + + def __init__(self, loggers: list[AbstractLogger] | None = None) -> None: + super().__init__() + + self.loggers: list[AbstractLogger] = loggers if loggers is not None else [] + self.n_trials: float = 0 + self.n_function_calls: int = 0.0 + + @property + def f_min(self) -> float | None: + """Return the minimum function value. + + Returns: + ------- + float | None + Minimum function value (if exists). + Else, return None. + """ + return None + + @property + @abstractmethod + def configspace(self) -> ConfigurationSpace: + """Configuration Space. + + All optimizers need to receive a configspace and + convert it to their search space definition. + + Returns: + ------- + ConfigurationSpace + Configuration space. + """ + raise NotImplementedError + + @abstractmethod + def _evaluate(self, trial_info: TrialInfo) -> TrialValue: + """Evaluate problem. + + Parameters + ---------- + trial_info : TrialInfo + Dataclass with configuration, seed, budget, instance, name, checkpoint. + + Returns: + ------- + TrialValue + Value of the trial, i.e.: + - cost : float | list[float] + - time : float, defaults to 0.0 + - status : StatusType, defaults to StatusType.SUCCESS + - starttime : float, defaults to 0.0 + - endtime : float, defaults to 0.0 + - additional_info : dict[str, Any], defaults to {} + """ + raise NotImplementedError + + def evaluate(self, trial_info: TrialInfo) -> TrialValue: + trial_value = self._evaluate(trial_info=trial_info) + self.n_function_calls += 1 + if trial_info.normalized_budget is not None: + self.n_trials += trial_info.normalized_budget + else: + self.n_trials += 1 + + for logger in self.loggers: + logger.log_trial( + n_trials=self.n_trials, + n_function_calls=self.n_function_calls, + trial_info=trial_info, + trial_value=trial_value, + ) + + return trial_value diff --git a/carps/benchmarks/pymoo.py b/carps/benchmarks/pymoo.py new file mode 100644 index 000000000..0864a6a44 --- /dev/null +++ b/carps/benchmarks/pymoo.py @@ -0,0 +1,94 @@ +"""Pymoo Problem.""" + +from __future__ import annotations + +import time +from typing import TYPE_CHECKING + +import numpy as np +import pymoo +import pymoo.problems +from ConfigSpace import ConfigurationSpace, Float +from pymoo.problems.multi.omnitest import OmniTest +from pymoo.problems.multi.sympart import SYMPART, SYMPARTRotated + +from carps.benchmarks.problem import Problem +from carps.utils.trials import TrialInfo, TrialValue + +if TYPE_CHECKING: + from carps.loggers.abstract_logger import AbstractLogger + +extra_probs = { + "sympart": SYMPART, + "sympart_rotated": SYMPARTRotated, + "omnitest": OmniTest, +} + + +class PymooProblem(Problem): + """Pymoo Problem class.""" + + def __init__( + self, + problem_name: str, + seed: int, + metric: str | list[str], + loggers: list[AbstractLogger] | None = None, + ) -> None: + """Initialize a Pymoo problem.""" + super().__init__(loggers) + + self.problem_name = problem_name + self.metric = metric + if problem_name in extra_probs: + self._problem = extra_probs[problem_name]() + else: + self._problem = pymoo.problems.get_problem(self.problem_name) + self._configspace = self.get_pymoo_space(pymoo_prob=self._problem, seed=seed) + + @property + def configspace(self) -> ConfigurationSpace: + """Return configuration space. + + Returns: + ------- + ConfigurationSpace + Configuration space. + """ + return self._configspace + + def get_pymoo_space(self, pymoo_prob: pymoo.core.problem.Problem, seed: int) -> ConfigurationSpace: + """Get ConfigSpace from pymoo problem.""" + n_var = pymoo_prob.n_var + xl, xu = pymoo_prob.xl, pymoo_prob.xu + hps = [Float(name=f"x{i}", bounds=[xl[i], xu[i]]) for i in range(n_var)] + configspace = ConfigurationSpace(seed=seed) + configspace.add_hyperparameters(hps) + return configspace + + def _evaluate(self, trial_info: TrialInfo) -> TrialValue: + """Evaluate problem. + + Parameters + ---------- + trial_info : TrialInfo + Dataclass with configuration, seed, budget, instance. + + Returns: + ------- + TrialValue + Cost + """ + configuration = np.array(list(trial_info.config.values())) + start_time = time.time() + costs = self._problem.evaluate(configuration).tolist() + if len(costs) == 1: + costs = costs[0] + end_time = time.time() + + return TrialValue( + cost=costs, + time=end_time - start_time, + starttime=start_time, + endtime=end_time, + ) diff --git a/carps/benchmarks/yahpo.py b/carps/benchmarks/yahpo.py new file mode 100644 index 000000000..957eb102f --- /dev/null +++ b/carps/benchmarks/yahpo.py @@ -0,0 +1,174 @@ +"""Yahpo problem class.""" + +from __future__ import annotations + +import time +from pathlib import Path +from typing import TYPE_CHECKING + +from omegaconf import ListConfig +from yahpo_gym import BenchmarkSet, list_scenarios, local_config + +from carps.benchmarks.problem import Problem +from carps.utils.trials import TrialInfo, TrialValue + +if TYPE_CHECKING: + from ConfigSpace import ConfigurationSpace + + from carps.loggers.abstract_logger import AbstractLogger + +LOWER_IS_BETTER = { + "mmce": True, # classification error + "f1": False, + "auc": False, + "logloss": True, + "nf": True, # number of features used + "ias": True, # interaction strength of features # TODO check + "rammodel": True, # model size + "val_accuracy": False, + "val_cross_entropy": True, + "acc": False, + "bac": False, # balanced acc + "brier": True, + "memory": True, + "timetrain": True, + "runtime": True, + "mec": True, # main effect complexity of features + "valid_mse": True, +} + + +def maybe_invert(value: float, target: str) -> float: + sign = 1 + if not LOWER_IS_BETTER[target]: + sign = -1 + return sign * value + + +class YahpoProblem(Problem): + """Yahpo Problem.""" + + def __init__( + self, + bench: str, + instance: str, + metric: str | list[str], + budget_type: str | None = None, + lower_is_better: bool = True, + yahpo_data_path: str | None = None, + loggers: list[AbstractLogger] | None = None, + ): + """Initialize a Yahpo problem. + + Parameters + ---------- + bench: str + Benchmark name. + instance : str + Instance name. + metric : str + Metric(s) to optimize for (depends on the Benchmark instance e.g. lcbench). + budget_type : Optional[str] + Budget type for the multifidelity setting. Should be None for the blackbox setting. + lower_is_better: bool + Whether the metric is to be minimized or maximized. + yahpo_data_path : str | None + Path to yahpo data, defaults to '../benchmark_data/yahpo_data' (relative to this file). + """ + super().__init__(loggers) + + assert bench in list_scenarios(), f"The scenario {bench} you choose is not available." + + yahpo_data_path = yahpo_data_path or Path(__file__).parent.parent / "benchmark_data/yahpo_data" + + # setting up meta data for surrogate benchmarks + local_config.init_config() + local_config.set_data_path(yahpo_data_path) + + self.scenario = bench + self.instance = str(instance) + + self._problem = BenchmarkSet(scenario=bench, instance=self.instance, check=False) + self._configspace = self._problem.get_opt_space(drop_fidelity_params=True) + self.fidelity_space = self._problem.get_fidelity_space() + self.fidelity_dims = list(self._problem.get_fidelity_space()._hyperparameters.keys()) + + self.budget_type = budget_type + self.lower_is_better = lower_is_better + + assert self.budget_type in [*self.fidelity_dims, None], ( + f"The budget type {self.budget_type} you choose is " + f"not available in this instance. Please choose " + f"from {[*self.fidelity_dims, None]}." + ) + + if self.budget_type is None or len(self.fidelity_dims) > 1: + other_fidelities = [fid for fid in self.fidelity_dims if fid != self.budget_type] + self.max_other_fidelities = {} + for fidelity in other_fidelities: + self.max_other_fidelities[fidelity] = self.fidelity_space.get_hyperparameter(fidelity).upper + + if not isinstance(metric, list | ListConfig): + metric = [metric] + self.metrics = metric + + @property + def configspace(self) -> ConfigurationSpace: + """Return configuration space. + + Returns: + ------- + ConfigurationSpace + Configuration space. + """ + return self._configspace + + # @property + # FIXME: see caro's message: + # the idea is somehow to overwrite the optimizer/multifidelity attributes for + # budget_variable and min_budget, max_budget with a FidelitiySpace class without interpolation + # that is based on the problem instance / config file. Similarly find out how to deal with + # the metrics. + # def fidelity_space(self): + # return FidelitySpace(self.fidelity_dims) + + def _evaluate(self, trial_info: TrialInfo) -> TrialValue: + """Evaluate problem. + + Parameters + ---------- + trial_info : TrialInfo + Dataclass with configuration, seed, budget, instance. + + Returns: + ------- + TrialValue + Cost + """ + configuration = trial_info.config + xs = configuration.get_dictionary() + + # If there are multiple fidelities, we take maximum fidelity value for the respective other fidelity dimensions + # If we are in the blackbox setting, we take maximum fidelity value for all fidelity dimensions + starttime = time.time() + if self.budget_type is not None: + if self.budget_type == "trainsize": + xs.update({self.budget_type: trial_info.budget}) + elif trial_info.budget is not None: # to avoid mypy error + xs.update({self.budget_type: round(trial_info.budget)}) + + if self.budget_type is None or len(self.fidelity_dims) > 1: + xs.update(self.max_other_fidelities) + + # Benchmarking suite returns a list of results (as potentially more than one config can be passed), + # as we only pass one config we need to select the first one + ret = self._problem.objective_function(configuration=xs, seed=trial_info.seed)[0] + costs = [maybe_invert(ret[target], target) for target in self.metrics] + virtual_time = ret.get("time", 0.0) + if len(costs) == 1: + costs = costs[0] + + endtime = time.time() + T = endtime - starttime + + return TrialValue(cost=costs, time=T, starttime=starttime, endtime=endtime, virtual_time=virtual_time) diff --git a/carps/configs/__init__.py b/carps/configs/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/carps/configs/base.yaml b/carps/configs/base.yaml new file mode 100644 index 000000000..22e8c977a --- /dev/null +++ b/carps/configs/base.yaml @@ -0,0 +1,36 @@ +defaults: + - _self_ + - logger + - override hydra/job_logging: colorlog + - override hydra/hydra_logging: colorlog + +seed: 1 + +# Set in problem cfg +problem: ??? +task: ??? + +benchmark_id: ??? # Set in problem cfg. +problem_id: ??? # Set in problem cfg. Can be directory. + +# Set in optimizer cfg +optimizer: ??? +optimizer_id: ??? +optimizer_container_id: ??? + +pyexperimenter_configuration_file_path: null +database_credential_file_path: null + +use_special_conda_env: false +conda_env_name: carps_${benchmark_id}_${optimizer_container_id} + +timestamp: ${now:%Y-%m-%d}/${now:%H-%M-%S} + +baserundir: runs +outdir: ${baserundir}/${optimizer_id}/${benchmark_id}/${problem_id}/${seed} +hydra: + run: + dir: ${outdir} # /${now:%Y-%m-%d}/${now:%H-%M-%S} + sweep: + dir: ${baserundir} # /${now:%Y-%m-%d}/${now:%H-%M-%S} + subdir: ${optimizer_id}/${benchmark_id}/${problem_id}/${seed} # those variables are set for individual jobs, therefore can only be in the subdir diff --git a/carps/configs/cluster/local.yaml b/carps/configs/cluster/local.yaml new file mode 100644 index 000000000..201530f32 --- /dev/null +++ b/carps/configs/cluster/local.yaml @@ -0,0 +1,7 @@ +# @package _global_ +defaults: + - override /hydra/launcher: joblib + +hydra: + launcher: + n_jobs: 4 \ No newline at end of file diff --git a/carps/configs/cluster/noctua.yaml b/carps/configs/cluster/noctua.yaml new file mode 100644 index 000000000..082e810bd --- /dev/null +++ b/carps/configs/cluster/noctua.yaml @@ -0,0 +1,14 @@ +# @package _global_ +defaults: + - override /hydra/launcher: submitit_slurm + +hydra: + launcher: + partition: normal + cpus_per_task: 1 + name: carps + timeout_min: 120 + # mem_gb: 8 + mem_per_cpu: 4G + setup: + - module load system singularity diff --git a/carps/configs/cluster/slurm.yaml b/carps/configs/cluster/slurm.yaml new file mode 100644 index 000000000..721023ab6 --- /dev/null +++ b/carps/configs/cluster/slurm.yaml @@ -0,0 +1,12 @@ +# @package _global_ +defaults: + - override /hydra/launcher: submitit_slurm + +## Adapt to your needs +# hydra: +# launcher: +# partition: normal +# cpus_per_task: 1 +# name: expl2 +# timeout_min: 40 +# mem_gb: 8 diff --git a/carps/configs/logger.yaml b/carps/configs/logger.yaml new file mode 100644 index 000000000..5f18062aa --- /dev/null +++ b/carps/configs/logger.yaml @@ -0,0 +1,9 @@ +# @package _global_ +loggers: + - _target_: carps.loggers.file_logger.FileLogger + _partial_: True + overwrite: True + # outdir: ${outdir}/${seed} + - _target_: carps.loggers.database_logger.DatabaseLogger + _partial_: True + diff --git a/carps/configs/optimizer/DUMMY/config.yaml b/carps/configs/optimizer/DUMMY/config.yaml new file mode 100644 index 000000000..d1a4e704a --- /dev/null +++ b/carps/configs/optimizer/DUMMY/config.yaml @@ -0,0 +1,9 @@ +# @package _global_ +optimizer_id: DUMMY_Optimizer +optimizer_container_id: DUMMY_Optimizer +optimizer: + _target_: carps.optimizers.dummy_optimizer.DummyOptimizer + _partial_: true + + dummy_cfg: + timeout: 60 diff --git a/carps/configs/optimizer/DUMMY/multifidelity.yaml b/carps/configs/optimizer/DUMMY/multifidelity.yaml new file mode 100644 index 000000000..30d873c2f --- /dev/null +++ b/carps/configs/optimizer/DUMMY/multifidelity.yaml @@ -0,0 +1,10 @@ +# @package _global_ +optimizer_id: DUMMY_Optimizer-MultiFidelity +optimizer_container_id: DUMMY_Optimizer +optimizer: + _target_: carps.optimizers.dummy_optimizer.DummyOptimizer + _partial_: true + + dummy_cfg: + timeout: 10 + budget: ${task.max_budget} diff --git a/carps/configs/optimizer/dehb/multifidelity.yaml b/carps/configs/optimizer/dehb/multifidelity.yaml new file mode 100644 index 000000000..de6a92235 --- /dev/null +++ b/carps/configs/optimizer/dehb/multifidelity.yaml @@ -0,0 +1,13 @@ +# @package _global_ +optimizer_id: DEHB +optimizer_container_id: DEHB +optimizer: + _target_: carps.optimizers.dehb.DEHBOptimizer + _partial_: true + + dehb_cfg: + mutation_factor: 0.5 + crossover_prob: 0.5 + seed: ${seed} + eta: 3 + output_path: ${outdir}/${seed}/dehb_output diff --git a/carps/configs/optimizer/hebo/config.yaml b/carps/configs/optimizer/hebo/config.yaml new file mode 100644 index 000000000..e97c39c07 --- /dev/null +++ b/carps/configs/optimizer/hebo/config.yaml @@ -0,0 +1,6 @@ +# @package _global_ +optimizer_id: HEBO +optimizer_container_id: HEBO +optimizer: + _target_: carps.optimizers.hebo.HEBOOptimizer + _partial_: true diff --git a/carps/configs/optimizer/nevergrad/DE.yaml b/carps/configs/optimizer/nevergrad/DE.yaml new file mode 100644 index 000000000..e0423e61a --- /dev/null +++ b/carps/configs/optimizer/nevergrad/DE.yaml @@ -0,0 +1,21 @@ +# @package _global_ +optimizer_id: Nevergrad-DE +optimizer_container_id: Nevergrad +optimizer: + _target_: carps.optimizers.nevergrad.NevergradOptimizer + _partial_: true + nevergrad_cfg: + optimizer_name: "DE" + seed: ${seed} + optimizer_cfg: + initialization: parametrization + scale: 1.0 + recommendation: optimistic + crossover: 0.5 + F1: 0.8 + F2: 0.8 + popsize: standard + propagate_heritage: false + multiobjective_adaptation: true + high_speed: false + \ No newline at end of file diff --git a/carps/configs/optimizer/nevergrad/ES.yaml b/carps/configs/optimizer/nevergrad/ES.yaml new file mode 100644 index 000000000..fd6e7f7ff --- /dev/null +++ b/carps/configs/optimizer/nevergrad/ES.yaml @@ -0,0 +1,16 @@ +# @package _global_ +optimizer_id: Nevergrad-ES +optimizer_container_id: Nevergrad +optimizer: + _target_: carps.optimizers.nevergrad.NevergradOptimizer + _partial_: true + nevergrad_cfg: + optimizer_name: "EvolutionStrategy" + seed: ${seed} + optimizer_cfg: + recombination_ratio: 0 + popsize: 40 + offsprings: null + only_offsprings: false + ranker: nsga2 + \ No newline at end of file diff --git a/carps/configs/optimizer/nevergrad/Hyperopt.yaml b/carps/configs/optimizer/nevergrad/Hyperopt.yaml new file mode 100644 index 000000000..d68ee011a --- /dev/null +++ b/carps/configs/optimizer/nevergrad/Hyperopt.yaml @@ -0,0 +1,10 @@ +# @package _global_ +optimizer_id: Nevergrad-Hyperopt +optimizer_container_id: Nevergrad +optimizer: + _target_: carps.optimizers.nevergrad.NevergradOptimizer + _partial_: true + nevergrad_cfg: + optimizer_name: "Hyperopt" + seed: ${seed} + optimizer_cfg: null diff --git a/carps/configs/optimizer/nevergrad/NoisyBandit.yaml b/carps/configs/optimizer/nevergrad/NoisyBandit.yaml new file mode 100644 index 000000000..ba41a2e51 --- /dev/null +++ b/carps/configs/optimizer/nevergrad/NoisyBandit.yaml @@ -0,0 +1,10 @@ +# @package _global_ +optimizer_id: Nevergrad-NoisyBandit +optimizer_container_id: Nevergrad +optimizer: + _target_: carps.optimizers.nevergrad.NevergradOptimizer + _partial_: true + nevergrad_cfg: + optimizer_name: "NoisyBandit" + seed: ${seed} + optimizer_cfg: null diff --git a/carps/configs/optimizer/nevergrad/bayesopt.yaml b/carps/configs/optimizer/nevergrad/bayesopt.yaml new file mode 100644 index 000000000..3894d7b4d --- /dev/null +++ b/carps/configs/optimizer/nevergrad/bayesopt.yaml @@ -0,0 +1,17 @@ +# @package _global_ +optimizer_id: Nevergrad-BayesOpt +optimizer_container_id: Nevergrad +optimizer: + _target_: carps.optimizers.nevergrad.NevergradOptimizer + _partial_: true + nevergrad_cfg: + optimizer_name: "bayes_opt" + seed: ${seed} + optimizer_cfg: + initialization: null + init_budget: null + middle_point: false + utility_kind: ucb + utility_kappa: 2.576 + utility_xi: 0.0 + gp_parameters: null diff --git a/carps/configs/optimizer/nevergrad/cmaes.yaml b/carps/configs/optimizer/nevergrad/cmaes.yaml new file mode 100644 index 000000000..0864f1475 --- /dev/null +++ b/carps/configs/optimizer/nevergrad/cmaes.yaml @@ -0,0 +1,20 @@ +# @package _global_ +optimizer_id: Nevergrad-CMA-ES +optimizer_container_id: Nevergrad +optimizer: + _target_: carps.optimizers.nevergrad.NevergradOptimizer + _partial_: true + nevergrad_cfg: + optimizer_name: "CMA-ES" + seed: ${seed} + optimizer_cfg: + scale: 1.0 + elitist: false + popsize: null + popsize_factor: 3.0 + diagonal: false + zero: false + high_speed: false + fcmaes: false + random_init: false + inopts: null diff --git a/carps/configs/optimizer/nevergrad/default.yaml b/carps/configs/optimizer/nevergrad/default.yaml new file mode 100644 index 000000000..8b12d58da --- /dev/null +++ b/carps/configs/optimizer/nevergrad/default.yaml @@ -0,0 +1,10 @@ +# @package _global_ +optimizer_id: Nevergrad-NGOpt +optimizer_container_id: Nevergrad +optimizer: + _target_: carps.optimizers.nevergrad.NevergradOptimizer + _partial_: true + nevergrad_cfg: + optimizer_name: "NGOpt" + seed: ${seed} + optimizer_cfg: null diff --git a/carps/configs/optimizer/optuna/config.yaml b/carps/configs/optimizer/optuna/config.yaml new file mode 100644 index 000000000..c063a41c6 --- /dev/null +++ b/carps/configs/optimizer/optuna/config.yaml @@ -0,0 +1,11 @@ +# @package _global_ +optimizer_id: Optuna +optimizer_container_id: Optuna +optimizer: + _target_: carps.optimizers.optuna.OptunaOptimizer + _partial_: true + optuna_cfg: + sampler: + seed: ${seed} + study: {} + diff --git a/carps/configs/optimizer/optuna/multiobjective.yaml b/carps/configs/optimizer/optuna/multiobjective.yaml new file mode 100644 index 000000000..25d2a9dcd --- /dev/null +++ b/carps/configs/optimizer/optuna/multiobjective.yaml @@ -0,0 +1,10 @@ +# @package _global_ +optimizer_id: Optuna-MO +optimizer_container_id: Optuna +optimizer: + _target_: carps.optimizers.optuna.OptunaOptimizer + _partial_: true + optuna_cfg: + sampler: + seed: ${seed} + study: {} diff --git a/carps/configs/optimizer/randomsearch/config.yaml b/carps/configs/optimizer/randomsearch/config.yaml new file mode 100644 index 000000000..5967b265e --- /dev/null +++ b/carps/configs/optimizer/randomsearch/config.yaml @@ -0,0 +1,6 @@ +# @package _global_ +optimizer_id: RandomSearch +optimizer_container_id: RandomSearch +optimizer: + _target_: carps.optimizers.random_search.RandomSearchOptimizer + _partial_: true diff --git a/carps/configs/optimizer/scikit_optimize/BO.yaml b/carps/configs/optimizer/scikit_optimize/BO.yaml new file mode 100644 index 000000000..78b6ec752 --- /dev/null +++ b/carps/configs/optimizer/scikit_optimize/BO.yaml @@ -0,0 +1,15 @@ +# @package _global_ +be: "GP" +acq_func: "gp_hedge" +acq_optimizer: "auto" + +optimizer_id: Scikit_Optimize +optimizer_container_id: Scikit_Optimize +optimizer: + _target_: carps.optimizers.scikit_optimize.SkoptOptimizer + _partial_: true + skopt_cfg: + random_state: ${seed} + base_estimator: ${be} + acq_func: ${acq_func} + acq_optimizer: ${acq_optimizer} diff --git a/carps/configs/optimizer/smac14/blackbox.yaml b/carps/configs/optimizer/smac14/blackbox.yaml new file mode 100644 index 000000000..c74c9474b --- /dev/null +++ b/carps/configs/optimizer/smac14/blackbox.yaml @@ -0,0 +1,24 @@ +# @package _global_ +optimizer_id: SMAC3-1.4-BlackBoxFacade +optimizer_container_id: SMAC3-1.4 +optimizer: + _target_: carps.optimizers.smac14.SMAC314Optimizer + _partial_: true + + smac_cfg: + scenario: + seed: ${seed} + deterministic: true + n_workers: 1 + # output_dir: ${outdir}/${seed}/smac3_output + + run_obj: quality # we optimize quality (alternatively runtime) + runcount_limit: ${task.n_trials} # max. number of function evaluations + wallclock_limit: null + min_budget: ${task.min_budget} + max_budget: ${task.max_budget} + smac_kwargs: + dask_client: null + optimization_type: bb + max_config_calls: 1 + intensifier: null diff --git a/carps/configs/optimizer/smac14/multifidelity.yaml b/carps/configs/optimizer/smac14/multifidelity.yaml new file mode 100644 index 000000000..73e366d2d --- /dev/null +++ b/carps/configs/optimizer/smac14/multifidelity.yaml @@ -0,0 +1,25 @@ +# @package _global_ +optimizer_id: SMAC3-1.4-MultiFidelityFacade +optimizer_container_id: SMAC3-1.4 +optimizer: + _target_: carps.optimizers.smac14.SMAC314Optimizer + _partial_: true + + smac_cfg: + scenario: + seed: ${seed} + deterministic: true + n_workers: 1 + # output_dir: ${outdir}/${seed}/smac3_output + + run_obj: quality # we optimize quality (alternatively runtime) + runcount_limit: ${task.n_trials} # max. number of function evaluations + wallclock_limit: null + min_budget: ${task.min_budget} + max_budget: ${task.max_budget} + smac_kwargs: + dask_client: null + optimization_type: mf + max_config_calls: 1 + intensifier: null + incumbent_selection: highest_executed_budget diff --git a/carps/configs/optimizer/smac14/multiobjective.yaml b/carps/configs/optimizer/smac14/multiobjective.yaml new file mode 100644 index 000000000..7b6eb9f21 --- /dev/null +++ b/carps/configs/optimizer/smac14/multiobjective.yaml @@ -0,0 +1,30 @@ +# @package _global_ +optimizer_id: SMAC3-1.4-MO +optimizer_container_id: SMAC3-1.4 +optimizer: + _target_: carps.optimizers.smac14.SMAC314Optimizer + _partial_: true + + smac_cfg: + scenario: + seed: ${seed} + deterministic: true + n_workers: 1 + # output_dir: ${outdir}/${seed}/smac3_output + + run_obj: quality # we optimize quality (alternatively runtime) + runcount_limit: ${task.n_trials} # max. number of function evaluations + wallclock_limit: null + min_budget: ${task.min_budget} + max_budget: ${task.max_budget} + multi_objectives: ${task.objectives} + smac_kwargs: + dask_client: null + multi_objective_algorithm: + _target_: smac.multi_objective.parego.ParEGO + _partial_: true + multi_objective_kwargs: + rho: 0.05 + optimization_type: hpo + max_config_calls: 1 + intensifier: null diff --git a/carps/configs/optimizer/smac20/blackbox.yaml b/carps/configs/optimizer/smac20/blackbox.yaml new file mode 100644 index 000000000..57eb90c60 --- /dev/null +++ b/carps/configs/optimizer/smac20/blackbox.yaml @@ -0,0 +1,18 @@ +# @package _global_ +optimizer_id: SMAC3-BlackBoxFacade +optimizer_container_id: SMAC3 +optimizer: + _target_: carps.optimizers.smac20.SMAC3Optimizer + _partial_: true + + smac_cfg: + smac_class: smac.facade.blackbox_facade.BlackBoxFacade + scenario: + seed: ${seed} + n_trials: ${task.n_trials} + deterministic: true + n_workers: 1 + output_directory: ${outdir}/${seed}/smac3_output + smac_kwargs: + dask_client: null + overwrite: true diff --git a/carps/configs/optimizer/smac20/hpo.yaml b/carps/configs/optimizer/smac20/hpo.yaml new file mode 100644 index 000000000..d78a7f842 --- /dev/null +++ b/carps/configs/optimizer/smac20/hpo.yaml @@ -0,0 +1,18 @@ +# @package _global_ +optimizer_id: SMAC3-HPOFacade +optimizer_container_id: SMAC3 +optimizer: + _target_: carps.optimizers.smac20.SMAC3Optimizer + _partial_: true + + smac_cfg: + smac_class: smac.facade.HyperparameterOptimizationFacade + scenario: + seed: ${seed} + n_trials: ${task.n_trials} + deterministic: true + n_workers: 1 + output_directory: ${outdir}/${seed}/smac3_output + smac_kwargs: + dask_client: null + overwrite: true diff --git a/carps/configs/optimizer/smac20/hyperband.yaml b/carps/configs/optimizer/smac20/hyperband.yaml new file mode 100644 index 000000000..2e13636f7 --- /dev/null +++ b/carps/configs/optimizer/smac20/hyperband.yaml @@ -0,0 +1,21 @@ +# @package _global_ +optimizer_id: SMAC3-Hyperband +optimizer_container_id: SMAC3 +optimizer: + _target_: carps.optimizers.smac20.SMAC3Optimizer + _partial_: true + + smac_cfg: + smac_class: smac.facade.hyperband_facade.HyperbandFacade + budget_variable: ${problem.budget_type} + scenario: + seed: ${seed} + n_trials: ${task.n_trials} + deterministic: true + n_workers: 1 + output_directory: ${outdir}/${seed}/smac3_output + min_budget: ${task.min_budget} + max_budget: ${task.max_budget} + smac_kwargs: + dask_client: null + overwrite: true \ No newline at end of file diff --git a/carps/configs/optimizer/smac20/momf_gp.yaml b/carps/configs/optimizer/smac20/momf_gp.yaml new file mode 100644 index 000000000..1ddf6f24f --- /dev/null +++ b/carps/configs/optimizer/smac20/momf_gp.yaml @@ -0,0 +1,30 @@ +# @package _global_ +optimizer_id: SMAC3-MOMF-GP +optimizer_container_id: SMAC3 +optimizer: + _target_: carps.optimizers.smac20.SMAC3Optimizer + _partial_: true + + smac_cfg: + smac_class: smac.facade.blackbox_facade.BlackBoxFacade + budget_variable: ${problem.budget_type} + scenario: + seed: ${seed} + n_trials: ${task.n_trials} + objectives: ${task.objectives} + deterministic: true + n_workers: 1 + output_directory: ${outdir}/${seed}/smac3_output + min_budget: ${task.min_budget} + max_budget: ${task.max_budget} + smac_kwargs: + dask_client: null + multi_objective_algorithm: + _target_: smac.multi_objective.parego.ParEGO + _partial_: true + intensifier: + _target_: smac.intensifier.hyperband.Hyperband + _partial_: true + eta: 3 + incumbent_selection: 'any_budget' + overwrite: true diff --git a/carps/configs/optimizer/smac20/momf_rf.yaml b/carps/configs/optimizer/smac20/momf_rf.yaml new file mode 100644 index 000000000..043128171 --- /dev/null +++ b/carps/configs/optimizer/smac20/momf_rf.yaml @@ -0,0 +1,30 @@ +# @package _global_ +optimizer_id: SMAC3-MOMF-RF +optimizer_container_id: SMAC3 +optimizer: + _target_: carps.optimizers.smac20.SMAC3Optimizer + _partial_: true + + smac_cfg: + smac_class: smac.facade.multi_fidelity_facade.MultiFidelityFacade + budget_variable: ${problem.budget_type} + scenario: + seed: ${seed} + n_trials: ${task.n_trials} + objectives: ${task.objectives} + deterministic: true + n_workers: 1 + output_directory: ${outdir}/${seed}/smac3_output + min_budget: ${task.min_budget} + max_budget: ${task.max_budget} + smac_kwargs: + dask_client: null + multi_objective_algorithm: + _target_: smac.multi_objective.parego.ParEGO + _partial_: true + intensifier: + _target_: smac.intensifier.hyperband.Hyperband + _partial_: true + eta: 3 + incumbent_selection: 'any_budget' + overwrite: true diff --git a/carps/configs/optimizer/smac20/multifidelity.yaml b/carps/configs/optimizer/smac20/multifidelity.yaml new file mode 100644 index 000000000..3ca0d0310 --- /dev/null +++ b/carps/configs/optimizer/smac20/multifidelity.yaml @@ -0,0 +1,25 @@ +# @package _global_ +optimizer_id: SMAC3-MultiFidelityFacade +optimizer_container_id: SMAC3 +optimizer: + _target_: carps.optimizers.smac20.SMAC3Optimizer + _partial_: true + + smac_cfg: + smac_class: smac.facade.multi_fidelity_facade.MultiFidelityFacade + budget_variable: ${problem.budget_type} + scenario: + seed: ${seed} + n_trials: ${task.n_trials} + deterministic: true + n_workers: 1 + output_directory: ${outdir}/${seed}/smac3_output + min_budget: ${task.min_budget} + max_budget: ${task.max_budget} + smac_kwargs: + dask_client: null + intensifier: + _target_: smac.intensifier.hyperband.Hyperband + _partial_: true + eta: 3 + overwrite: true \ No newline at end of file diff --git a/carps/configs/optimizer/smac20/multiobjective.yaml b/carps/configs/optimizer/smac20/multiobjective.yaml new file mode 100644 index 000000000..5ed7b234e --- /dev/null +++ b/carps/configs/optimizer/smac20/multiobjective.yaml @@ -0,0 +1,22 @@ +# @package _global_ +optimizer_id: SMAC3-MO +optimizer_container_id: SMAC3 +optimizer: + _target_: carps.optimizers.smac20.SMAC3Optimizer + _partial_: true + + smac_cfg: + smac_class: smac.facade.hyperparameter_optimization_facade.HyperparameterOptimizationFacade + scenario: + seed: ${seed} + n_trials: ${task.n_trials} + deterministic: true + n_workers: 1 + objectives: ${task.objectives} + output_directory: ${outdir}/${seed}/smac3_output + smac_kwargs: + dask_client: null + multi_objective_algorithm: + _target_: smac.multi_objective.parego.ParEGO + _partial_: true + overwrite: true \ No newline at end of file diff --git a/carps/configs/optimizer/smac20/multiobjective_gp.yaml b/carps/configs/optimizer/smac20/multiobjective_gp.yaml new file mode 100644 index 000000000..7e5a65365 --- /dev/null +++ b/carps/configs/optimizer/smac20/multiobjective_gp.yaml @@ -0,0 +1,22 @@ +# @package _global_ +optimizer_id: SMAC3-MO-GP +optimizer_container_id: SMAC3 +optimizer: + _target_: carps.optimizers.smac20.SMAC3Optimizer + _partial_: true + + smac_cfg: + smac_class: smac.facade.blackbox_facade.BlackBoxFacade + scenario: + seed: ${seed} + n_trials: ${task.n_trials} + deterministic: true + n_workers: 1 + objectives: ${task.objectives} + output_directory: ${outdir}/${seed}/smac3_output + smac_kwargs: + dask_client: null + multi_objective_algorithm: + _target_: smac.multi_objective.parego.ParEGO + _partial_: true + overwrite: true \ No newline at end of file diff --git a/carps/configs/optimizer/synetune/BO.yaml b/carps/configs/optimizer/synetune/BO.yaml new file mode 100644 index 000000000..d2021e9dd --- /dev/null +++ b/carps/configs/optimizer/synetune/BO.yaml @@ -0,0 +1,17 @@ +# @package _global_ +optimizer_id: SyneTune-BO +optimizer_container_id: SyneTune +optimizer: + _target_: carps.optimizers.synetune.SynetuneOptimizer + _partial_: true + + optimizer_name: 'BayesianOptimization' + optimizer_kwargs: + random_seed: ${seed} + # max_budget: ${task.max_budget} + + + +# walltime_limit: 60, # After 60 seconds, we stop the hyperparameter optimization +# n_trials: 500, # Evaluate max 500 different trials +# n_workers: 8, \ No newline at end of file diff --git a/carps/configs/optimizer/synetune/BORE.yaml b/carps/configs/optimizer/synetune/BORE.yaml new file mode 100644 index 000000000..f342e45b4 --- /dev/null +++ b/carps/configs/optimizer/synetune/BORE.yaml @@ -0,0 +1,11 @@ +# @package _global_ +optimizer_id: SyneTune-BORE +optimizer_container_id: SyneTune +optimizer: + _target_: carps.optimizers.synetune.SynetuneOptimizer + _partial_: true + + optimizer_name: 'BORE' + optimizer_kwargs: + random_seed: ${seed} + # max_budget: ${task.max_budget} diff --git a/carps/configs/optimizer/synetune/BO_MO_LS.yaml b/carps/configs/optimizer/synetune/BO_MO_LS.yaml new file mode 100644 index 000000000..ffe71c690 --- /dev/null +++ b/carps/configs/optimizer/synetune/BO_MO_LS.yaml @@ -0,0 +1,17 @@ +# @package _global_ +optimizer_id: SyneTune-BO-MO-LS +optimizer_container_id: SyneTune +optimizer: + _target_: carps.optimizers.synetune.SynetuneOptimizer + _partial_: true + + optimizer_name: 'BO-MO-LS' + optimizer_kwargs: + random_seed: ${seed} + # max_budget: ${task.max_budget} + + + +# walltime_limit: 60, # After 60 seconds, we stop the hyperparameter optimization +# n_trials: 500, # Evaluate max 500 different trials +# n_workers: 8, \ No newline at end of file diff --git a/carps/configs/optimizer/synetune/BO_MO_RS.yaml b/carps/configs/optimizer/synetune/BO_MO_RS.yaml new file mode 100644 index 000000000..ef0719f8d --- /dev/null +++ b/carps/configs/optimizer/synetune/BO_MO_RS.yaml @@ -0,0 +1,17 @@ +# @package _global_ +optimizer_id: SyneTune-BO-MO-RS +optimizer_container_id: SyneTune +optimizer: + _target_: carps.optimizers.synetune.SynetuneOptimizer + _partial_: true + + optimizer_name: 'BO-MO-RS' + optimizer_kwargs: + random_seed: ${seed} + # max_budget: ${task.max_budget} + + + +# walltime_limit: 60, # After 60 seconds, we stop the hyperparameter optimization +# n_trials: 500, # Evaluate max 500 different trials +# n_workers: 8, \ No newline at end of file diff --git a/carps/configs/optimizer/synetune/DEHB.yaml b/carps/configs/optimizer/synetune/DEHB.yaml new file mode 100644 index 000000000..b4867bc92 --- /dev/null +++ b/carps/configs/optimizer/synetune/DEHB.yaml @@ -0,0 +1,20 @@ +# @package _global_ +optimizer_id: SyneTune-DEHB +optimizer_container_id: SyneTune +optimizer: + _target_: carps.optimizers.synetune.SynetuneOptimizer + _partial_: true + + optimizer_name: 'DEHB' + optimizer_kwargs: + random_seed: ${seed} + max_resource_attr: ${task.fidelity_type} + grace_period: ${task.min_budget} + #max_resource_level: ${task.max_budget} + # max_budget: ${task.max_budget} + + + +# walltime_limit: 60, # After 60 seconds, we stop the hyperparameter optimization +# n_trials: 500, # Evaluate max 500 different trials +# n_workers: 8, \ No newline at end of file diff --git a/carps/configs/optimizer/synetune/KDE.yaml b/carps/configs/optimizer/synetune/KDE.yaml new file mode 100644 index 000000000..0a9ca4563 --- /dev/null +++ b/carps/configs/optimizer/synetune/KDE.yaml @@ -0,0 +1,15 @@ +# @package _global_ +optimizer_id: SyneTune-KDE +optimizer_container_id: SyneTune +optimizer: + _target_: carps.optimizers.synetune.SynetuneOptimizer + _partial_: true + + optimizer_name: 'KDE' + optimizer_kwargs: + random_seed: ${seed} + # max_budget: ${task.max_budget} + +# walltime_limit: 60, # After 60 seconds, we stop the hyperparameter optimization +# n_trials: 500, # Evaluate max 500 different trials +# n_workers: 8, \ No newline at end of file diff --git a/carps/configs/optimizer/synetune/MOREA.yaml b/carps/configs/optimizer/synetune/MOREA.yaml new file mode 100644 index 000000000..92383736e --- /dev/null +++ b/carps/configs/optimizer/synetune/MOREA.yaml @@ -0,0 +1,17 @@ +# @package _global_ +optimizer_id: SyneTune-MOREA +optimizer_container_id: SyneTune +optimizer: + _target_: carps.optimizers.synetune.SynetuneOptimizer + _partial_: true + + optimizer_name: 'MOREA' + optimizer_kwargs: + random_seed: ${seed} + # max_budget: ${task.max_budget} + + + +# walltime_limit: 60, # After 60 seconds, we stop the hyperparameter optimization +# n_trials: 500, # Evaluate max 500 different trials +# n_workers: 8, \ No newline at end of file diff --git a/carps/configs/optimizer/synetune/SyncMOBSTER.yaml b/carps/configs/optimizer/synetune/SyncMOBSTER.yaml new file mode 100644 index 000000000..2a11497c6 --- /dev/null +++ b/carps/configs/optimizer/synetune/SyncMOBSTER.yaml @@ -0,0 +1,13 @@ +# @package _global_ +optimizer_id: SyneTune-SyncMOBSTER +optimizer_container_id: SyneTune +optimizer: + _target_: carps.optimizers.synetune.SynetuneOptimizer + _partial_: true + + optimizer_name: 'SyncMOBSTER' + optimizer_kwargs: + random_seed: ${seed} + max_resource_attr: ${problem.budget_type} + # max_resource_level: ${task.max_budget} + grace_period: ${task.min_budget} diff --git a/carps/configs/problem/BBOB/cfg_16_10_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_10_16_0.yaml new file mode 100644 index 000000000..c1a40cbf5 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_10_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/10/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 10 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_10_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_10_16_1.yaml new file mode 100644 index 000000000..cf890573a --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_10_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/10/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 10 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_10_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_10_16_2.yaml new file mode 100644 index 000000000..5313e7c05 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_10_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/10/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 10 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_11_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_11_16_0.yaml new file mode 100644 index 000000000..fc9391cfc --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_11_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/11/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 11 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_11_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_11_16_1.yaml new file mode 100644 index 000000000..a781a62e1 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_11_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/11/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 11 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_11_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_11_16_2.yaml new file mode 100644 index 000000000..6ab1afc06 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_11_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/11/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 11 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_12_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_12_16_0.yaml new file mode 100644 index 000000000..0081770bd --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_12_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/12/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 12 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_12_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_12_16_1.yaml new file mode 100644 index 000000000..0eed0d0a1 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_12_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/12/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 12 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_12_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_12_16_2.yaml new file mode 100644 index 000000000..bff20d8e4 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_12_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/12/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 12 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_13_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_13_16_0.yaml new file mode 100644 index 000000000..29a149b16 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_13_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/13/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 13 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_13_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_13_16_1.yaml new file mode 100644 index 000000000..d909f63e1 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_13_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/13/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 13 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_13_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_13_16_2.yaml new file mode 100644 index 000000000..bf77aea34 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_13_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/13/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 13 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_14_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_14_16_0.yaml new file mode 100644 index 000000000..e287102ea --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_14_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/14/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 14 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_14_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_14_16_1.yaml new file mode 100644 index 000000000..09fe76f72 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_14_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/14/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 14 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_14_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_14_16_2.yaml new file mode 100644 index 000000000..59e4e7228 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_14_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/14/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 14 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_15_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_15_16_0.yaml new file mode 100644 index 000000000..dde7cf4f7 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_15_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/15/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 15 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_15_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_15_16_1.yaml new file mode 100644 index 000000000..7cfaa26db --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_15_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/15/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 15 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_15_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_15_16_2.yaml new file mode 100644 index 000000000..6a2bb9b27 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_15_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/15/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 15 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_16_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_16_16_0.yaml new file mode 100644 index 000000000..c29b8faf5 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_16_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/16/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 16 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_16_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_16_16_1.yaml new file mode 100644 index 000000000..a953e5e89 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_16_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/16/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 16 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_16_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_16_16_2.yaml new file mode 100644 index 000000000..3ef750d68 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_16_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/16/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 16 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_17_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_17_16_0.yaml new file mode 100644 index 000000000..bb37e9636 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_17_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/17/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 17 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_17_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_17_16_1.yaml new file mode 100644 index 000000000..8a5addf7f --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_17_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/17/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 17 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_17_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_17_16_2.yaml new file mode 100644 index 000000000..414cc1403 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_17_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/17/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 17 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_18_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_18_16_0.yaml new file mode 100644 index 000000000..064fb0757 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_18_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/18/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 18 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_18_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_18_16_1.yaml new file mode 100644 index 000000000..0e295569c --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_18_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/18/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 18 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_18_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_18_16_2.yaml new file mode 100644 index 000000000..23e84d998 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_18_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/18/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 18 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_19_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_19_16_0.yaml new file mode 100644 index 000000000..de2eff3be --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_19_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/19/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 19 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_19_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_19_16_1.yaml new file mode 100644 index 000000000..7a48c60cc --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_19_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/19/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 19 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_19_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_19_16_2.yaml new file mode 100644 index 000000000..c211d3473 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_19_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/19/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 19 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_1_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_1_16_0.yaml new file mode 100644 index 000000000..2dc00f361 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_1_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/1/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 1 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_1_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_1_16_1.yaml new file mode 100644 index 000000000..ec00af6a0 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_1_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/1/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 1 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_1_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_1_16_2.yaml new file mode 100644 index 000000000..25aa18dad --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_1_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/1/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 1 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_20_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_20_16_0.yaml new file mode 100644 index 000000000..982a0f54b --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_20_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/20/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 20 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_20_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_20_16_1.yaml new file mode 100644 index 000000000..e21201a24 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_20_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/20/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 20 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_20_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_20_16_2.yaml new file mode 100644 index 000000000..f6fbaf836 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_20_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/20/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 20 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_21_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_21_16_0.yaml new file mode 100644 index 000000000..becde2a30 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_21_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/21/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 21 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_21_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_21_16_1.yaml new file mode 100644 index 000000000..a77ddd210 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_21_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/21/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 21 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_21_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_21_16_2.yaml new file mode 100644 index 000000000..7bbdf9f00 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_21_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/21/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 21 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_22_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_22_16_0.yaml new file mode 100644 index 000000000..f7c7d2965 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_22_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/22/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 22 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_22_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_22_16_1.yaml new file mode 100644 index 000000000..ce2342be4 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_22_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/22/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 22 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_22_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_22_16_2.yaml new file mode 100644 index 000000000..25a7ff6fb --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_22_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/22/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 22 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_23_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_23_16_0.yaml new file mode 100644 index 000000000..5966d923f --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_23_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/23/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 23 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_23_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_23_16_1.yaml new file mode 100644 index 000000000..565de9911 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_23_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/23/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 23 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_23_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_23_16_2.yaml new file mode 100644 index 000000000..3a5c17168 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_23_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/23/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 23 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_24_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_24_16_0.yaml new file mode 100644 index 000000000..2622351fa --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_24_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/24/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 24 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_24_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_24_16_1.yaml new file mode 100644 index 000000000..1d42fba1c --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_24_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/24/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 24 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_24_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_24_16_2.yaml new file mode 100644 index 000000000..eb9b1b2ba --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_24_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/24/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 24 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_2_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_2_16_0.yaml new file mode 100644 index 000000000..36c89decf --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_2_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/2/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 2 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_2_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_2_16_1.yaml new file mode 100644 index 000000000..c5550efb5 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_2_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/2/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 2 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_2_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_2_16_2.yaml new file mode 100644 index 000000000..2bde58a04 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_2_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/2/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 2 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_3_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_3_16_0.yaml new file mode 100644 index 000000000..53e918bab --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_3_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/3/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 3 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_3_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_3_16_1.yaml new file mode 100644 index 000000000..d2da4d8b9 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_3_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/3/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 3 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_3_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_3_16_2.yaml new file mode 100644 index 000000000..e78234a97 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_3_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/3/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 3 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_4_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_4_16_0.yaml new file mode 100644 index 000000000..49ae6f548 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_4_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/4/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 4 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_4_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_4_16_1.yaml new file mode 100644 index 000000000..d947c0d3a --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_4_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/4/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 4 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_4_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_4_16_2.yaml new file mode 100644 index 000000000..aa6e8ebbb --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_4_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/4/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 4 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_5_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_5_16_0.yaml new file mode 100644 index 000000000..62f07488f --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_5_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/5/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 5 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_5_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_5_16_1.yaml new file mode 100644 index 000000000..8d944382b --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_5_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/5/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 5 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_5_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_5_16_2.yaml new file mode 100644 index 000000000..cfa6b54c4 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_5_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/5/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 5 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_6_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_6_16_0.yaml new file mode 100644 index 000000000..800682b6d --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_6_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/6/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 6 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_6_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_6_16_1.yaml new file mode 100644 index 000000000..ace221c1a --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_6_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/6/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 6 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_6_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_6_16_2.yaml new file mode 100644 index 000000000..ba86b1fba --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_6_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/6/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 6 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_7_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_7_16_0.yaml new file mode 100644 index 000000000..14125a9f3 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_7_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/7/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 7 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_7_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_7_16_1.yaml new file mode 100644 index 000000000..2309b2c7c --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_7_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/7/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 7 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_7_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_7_16_2.yaml new file mode 100644 index 000000000..b0fdde028 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_7_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/7/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 7 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_8_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_8_16_0.yaml new file mode 100644 index 000000000..373d81468 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_8_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/8/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 8 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_8_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_8_16_1.yaml new file mode 100644 index 000000000..446daef44 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_8_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/8/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 8 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_8_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_8_16_2.yaml new file mode 100644 index 000000000..1f581b76d --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_8_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/8/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 8 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_9_16_0.yaml b/carps/configs/problem/BBOB/cfg_16_9_16_0.yaml new file mode 100644 index 000000000..1e61df0e8 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_9_16_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/9/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 9 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_9_16_1.yaml b/carps/configs/problem/BBOB/cfg_16_9_16_1.yaml new file mode 100644 index 000000000..9a10c2e0c --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_9_16_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/9/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 9 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_16_9_16_2.yaml b/carps/configs/problem/BBOB/cfg_16_9_16_2.yaml new file mode 100644 index 000000000..c44782f2b --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_16_9_16_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/16/9/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 9 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_10_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_10_2_0.yaml new file mode 100644 index 000000000..c1845d42c --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_10_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/10/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 10 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_10_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_10_2_1.yaml new file mode 100644 index 000000000..16a33de69 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_10_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/10/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 10 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_10_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_10_2_2.yaml new file mode 100644 index 000000000..e5ea5bf9c --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_10_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/10/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 10 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_11_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_11_2_0.yaml new file mode 100644 index 000000000..309227daa --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_11_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/11/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 11 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_11_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_11_2_1.yaml new file mode 100644 index 000000000..59a29e6e4 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_11_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/11/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 11 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_11_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_11_2_2.yaml new file mode 100644 index 000000000..45bd81b61 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_11_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/11/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 11 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_12_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_12_2_0.yaml new file mode 100644 index 000000000..2d8e76d2a --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_12_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/12/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 12 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_12_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_12_2_1.yaml new file mode 100644 index 000000000..f698140fe --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_12_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/12/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 12 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_12_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_12_2_2.yaml new file mode 100644 index 000000000..6ec433622 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_12_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/12/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 12 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_13_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_13_2_0.yaml new file mode 100644 index 000000000..e2cc18ee1 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_13_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/13/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 13 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_13_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_13_2_1.yaml new file mode 100644 index 000000000..c43a43acb --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_13_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/13/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 13 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_13_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_13_2_2.yaml new file mode 100644 index 000000000..d759428be --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_13_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/13/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 13 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_14_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_14_2_0.yaml new file mode 100644 index 000000000..3b8c02152 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_14_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/14/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 14 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_14_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_14_2_1.yaml new file mode 100644 index 000000000..aa130f339 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_14_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/14/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 14 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_14_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_14_2_2.yaml new file mode 100644 index 000000000..d49a8475c --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_14_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/14/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 14 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_15_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_15_2_0.yaml new file mode 100644 index 000000000..607c10128 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_15_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/15/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 15 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_15_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_15_2_1.yaml new file mode 100644 index 000000000..11e365081 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_15_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/15/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 15 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_15_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_15_2_2.yaml new file mode 100644 index 000000000..fb98f2bf6 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_15_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/15/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 15 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_16_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_16_2_0.yaml new file mode 100644 index 000000000..acb8855a0 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_16_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/16/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 16 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_16_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_16_2_1.yaml new file mode 100644 index 000000000..b2678f7d0 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_16_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/16/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 16 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_16_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_16_2_2.yaml new file mode 100644 index 000000000..f3bcb9950 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_16_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/16/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 16 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_17_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_17_2_0.yaml new file mode 100644 index 000000000..5e0ff7443 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_17_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/17/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 17 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_17_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_17_2_1.yaml new file mode 100644 index 000000000..f97b8ca14 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_17_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/17/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 17 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_17_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_17_2_2.yaml new file mode 100644 index 000000000..10372573b --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_17_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/17/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 17 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_18_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_18_2_0.yaml new file mode 100644 index 000000000..c66fa1562 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_18_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/18/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 18 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_18_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_18_2_1.yaml new file mode 100644 index 000000000..27e8653d3 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_18_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/18/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 18 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_18_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_18_2_2.yaml new file mode 100644 index 000000000..18a9bb856 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_18_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/18/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 18 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_19_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_19_2_0.yaml new file mode 100644 index 000000000..f8deec0de --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_19_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/19/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 19 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_19_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_19_2_1.yaml new file mode 100644 index 000000000..a7fd5959d --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_19_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/19/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 19 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_19_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_19_2_2.yaml new file mode 100644 index 000000000..1011b7569 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_19_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/19/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 19 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_1_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_1_2_0.yaml new file mode 100644 index 000000000..66c72569d --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_1_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/1/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 1 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_1_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_1_2_1.yaml new file mode 100644 index 000000000..ae8e02d0d --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_1_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/1/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 1 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_1_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_1_2_2.yaml new file mode 100644 index 000000000..ed8503884 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_1_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/1/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 1 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_20_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_20_2_0.yaml new file mode 100644 index 000000000..58592dea2 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_20_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/20/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 20 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_20_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_20_2_1.yaml new file mode 100644 index 000000000..82c4f18c0 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_20_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/20/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 20 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_20_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_20_2_2.yaml new file mode 100644 index 000000000..461cd975e --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_20_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/20/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 20 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_21_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_21_2_0.yaml new file mode 100644 index 000000000..6e5a8eb2d --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_21_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/21/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 21 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_21_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_21_2_1.yaml new file mode 100644 index 000000000..fb7558b1f --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_21_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/21/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 21 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_21_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_21_2_2.yaml new file mode 100644 index 000000000..818e16b11 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_21_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/21/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 21 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_22_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_22_2_0.yaml new file mode 100644 index 000000000..06e5ce5d4 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_22_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/22/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 22 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_22_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_22_2_1.yaml new file mode 100644 index 000000000..d0302b343 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_22_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/22/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 22 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_22_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_22_2_2.yaml new file mode 100644 index 000000000..53bb2b9ee --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_22_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/22/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 22 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_23_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_23_2_0.yaml new file mode 100644 index 000000000..e981e84d4 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_23_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/23/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 23 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_23_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_23_2_1.yaml new file mode 100644 index 000000000..e2c66848e --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_23_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/23/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 23 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_23_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_23_2_2.yaml new file mode 100644 index 000000000..1a1c080fd --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_23_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/23/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 23 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_24_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_24_2_0.yaml new file mode 100644 index 000000000..6aa63b77d --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_24_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/24/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 24 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_24_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_24_2_1.yaml new file mode 100644 index 000000000..d7dd23815 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_24_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/24/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 24 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_24_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_24_2_2.yaml new file mode 100644 index 000000000..de0026a97 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_24_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/24/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 24 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_2_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_2_2_0.yaml new file mode 100644 index 000000000..1719bed17 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_2_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/2/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 2 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_2_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_2_2_1.yaml new file mode 100644 index 000000000..c38f1393b --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_2_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/2/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 2 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_2_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_2_2_2.yaml new file mode 100644 index 000000000..07a92deb3 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_2_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/2/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 2 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_3_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_3_2_0.yaml new file mode 100644 index 000000000..e97ac0504 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_3_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/3/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 3 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_3_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_3_2_1.yaml new file mode 100644 index 000000000..5b5cbe477 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_3_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/3/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 3 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_3_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_3_2_2.yaml new file mode 100644 index 000000000..c4b383e6d --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_3_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/3/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 3 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_4_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_4_2_0.yaml new file mode 100644 index 000000000..6ba66051b --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_4_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/4/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 4 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_4_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_4_2_1.yaml new file mode 100644 index 000000000..e6aae03a5 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_4_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/4/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 4 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_4_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_4_2_2.yaml new file mode 100644 index 000000000..0572edb58 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_4_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/4/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 4 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_5_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_5_2_0.yaml new file mode 100644 index 000000000..5ba8814d9 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_5_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/5/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 5 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_5_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_5_2_1.yaml new file mode 100644 index 000000000..8823fb676 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_5_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/5/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 5 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_5_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_5_2_2.yaml new file mode 100644 index 000000000..56db17172 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_5_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/5/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 5 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_6_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_6_2_0.yaml new file mode 100644 index 000000000..1e0576355 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_6_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/6/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 6 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_6_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_6_2_1.yaml new file mode 100644 index 000000000..617f238fc --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_6_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/6/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 6 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_6_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_6_2_2.yaml new file mode 100644 index 000000000..c249407e5 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_6_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/6/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 6 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_7_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_7_2_0.yaml new file mode 100644 index 000000000..b781232c1 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_7_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/7/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 7 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_7_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_7_2_1.yaml new file mode 100644 index 000000000..7bdb87817 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_7_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/7/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 7 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_7_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_7_2_2.yaml new file mode 100644 index 000000000..48b1b9515 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_7_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/7/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 7 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_8_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_8_2_0.yaml new file mode 100644 index 000000000..839298339 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_8_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/8/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 8 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_8_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_8_2_1.yaml new file mode 100644 index 000000000..b8697eecd --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_8_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/8/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 8 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_8_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_8_2_2.yaml new file mode 100644 index 000000000..4fb857d31 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_8_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/8/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 8 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_9_2_0.yaml b/carps/configs/problem/BBOB/cfg_2_9_2_0.yaml new file mode 100644 index 000000000..9c9da23af --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_9_2_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/9/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 9 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_9_2_1.yaml b/carps/configs/problem/BBOB/cfg_2_9_2_1.yaml new file mode 100644 index 000000000..4419d07fb --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_9_2_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/9/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 9 + instance: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_2_9_2_2.yaml b/carps/configs/problem/BBOB/cfg_2_9_2_2.yaml new file mode 100644 index 000000000..65c6d0290 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_2_9_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/2/9/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 9 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_10_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_10_32_0.yaml new file mode 100644 index 000000000..718872cb2 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_10_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/10/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 10 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_10_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_10_32_1.yaml new file mode 100644 index 000000000..fbdc4c3e9 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_10_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/10/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 10 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_10_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_10_32_2.yaml new file mode 100644 index 000000000..709d98d7d --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_10_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/10/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 10 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_11_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_11_32_0.yaml new file mode 100644 index 000000000..57ae44544 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_11_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/11/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 11 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_11_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_11_32_1.yaml new file mode 100644 index 000000000..a3db55d6b --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_11_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/11/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 11 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_11_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_11_32_2.yaml new file mode 100644 index 000000000..846e76347 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_11_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/11/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 11 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_12_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_12_32_0.yaml new file mode 100644 index 000000000..5a00a212c --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_12_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/12/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 12 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_12_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_12_32_1.yaml new file mode 100644 index 000000000..77303fe7d --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_12_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/12/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 12 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_12_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_12_32_2.yaml new file mode 100644 index 000000000..9bce1862b --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_12_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/12/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 12 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_13_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_13_32_0.yaml new file mode 100644 index 000000000..e7d61c3dd --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_13_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/13/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 13 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_13_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_13_32_1.yaml new file mode 100644 index 000000000..da0d3804c --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_13_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/13/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 13 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_13_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_13_32_2.yaml new file mode 100644 index 000000000..a7103220b --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_13_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/13/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 13 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_14_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_14_32_0.yaml new file mode 100644 index 000000000..ac068844e --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_14_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/14/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 14 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_14_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_14_32_1.yaml new file mode 100644 index 000000000..300cfa06c --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_14_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/14/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 14 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_14_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_14_32_2.yaml new file mode 100644 index 000000000..f63f22a47 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_14_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/14/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 14 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_15_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_15_32_0.yaml new file mode 100644 index 000000000..e91694aec --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_15_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/15/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 15 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_15_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_15_32_1.yaml new file mode 100644 index 000000000..2187c1b06 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_15_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/15/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 15 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_15_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_15_32_2.yaml new file mode 100644 index 000000000..1c3d0f039 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_15_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/15/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 15 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_16_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_16_32_0.yaml new file mode 100644 index 000000000..9f55f6cba --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_16_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/16/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 16 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_16_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_16_32_1.yaml new file mode 100644 index 000000000..a37aef43a --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_16_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/16/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 16 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_16_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_16_32_2.yaml new file mode 100644 index 000000000..cc6fd7644 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_16_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/16/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 16 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_17_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_17_32_0.yaml new file mode 100644 index 000000000..84d1bfb32 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_17_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/17/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 17 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_17_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_17_32_1.yaml new file mode 100644 index 000000000..8d066c120 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_17_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/17/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 17 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_17_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_17_32_2.yaml new file mode 100644 index 000000000..c0974234d --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_17_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/17/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 17 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_18_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_18_32_0.yaml new file mode 100644 index 000000000..7741b7c97 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_18_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/18/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 18 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_18_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_18_32_1.yaml new file mode 100644 index 000000000..8ea160e29 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_18_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/18/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 18 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_18_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_18_32_2.yaml new file mode 100644 index 000000000..e0b298f66 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_18_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/18/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 18 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_19_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_19_32_0.yaml new file mode 100644 index 000000000..58ab09248 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_19_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/19/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 19 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_19_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_19_32_1.yaml new file mode 100644 index 000000000..525a18f1f --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_19_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/19/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 19 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_19_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_19_32_2.yaml new file mode 100644 index 000000000..70ae11696 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_19_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/19/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 19 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_1_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_1_32_0.yaml new file mode 100644 index 000000000..e92e1b8c1 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_1_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/1/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 1 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_1_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_1_32_1.yaml new file mode 100644 index 000000000..8377b3cf1 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_1_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/1/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 1 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_1_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_1_32_2.yaml new file mode 100644 index 000000000..7cd0158d3 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_1_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/1/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 1 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_20_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_20_32_0.yaml new file mode 100644 index 000000000..c9313e6d0 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_20_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/20/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 20 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_20_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_20_32_1.yaml new file mode 100644 index 000000000..3d805096f --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_20_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/20/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 20 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_20_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_20_32_2.yaml new file mode 100644 index 000000000..8b10c8927 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_20_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/20/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 20 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_21_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_21_32_0.yaml new file mode 100644 index 000000000..f9b0ba1a0 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_21_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/21/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 21 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_21_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_21_32_1.yaml new file mode 100644 index 000000000..8701d6db8 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_21_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/21/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 21 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_21_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_21_32_2.yaml new file mode 100644 index 000000000..b42d41d0f --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_21_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/21/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 21 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_22_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_22_32_0.yaml new file mode 100644 index 000000000..21be0fc46 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_22_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/22/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 22 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_22_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_22_32_1.yaml new file mode 100644 index 000000000..6ff092d87 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_22_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/22/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 22 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_22_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_22_32_2.yaml new file mode 100644 index 000000000..3f717c42a --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_22_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/22/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 22 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_23_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_23_32_0.yaml new file mode 100644 index 000000000..9650da242 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_23_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/23/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 23 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_23_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_23_32_1.yaml new file mode 100644 index 000000000..8749bcd65 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_23_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/23/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 23 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_23_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_23_32_2.yaml new file mode 100644 index 000000000..e82f8c33b --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_23_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/23/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 23 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_24_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_24_32_0.yaml new file mode 100644 index 000000000..a3c47585f --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_24_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/24/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 24 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_24_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_24_32_1.yaml new file mode 100644 index 000000000..5c949d1ad --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_24_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/24/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 24 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_24_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_24_32_2.yaml new file mode 100644 index 000000000..96dd12585 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_24_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/24/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 24 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_2_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_2_32_0.yaml new file mode 100644 index 000000000..62344f8c6 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_2_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/2/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 2 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_2_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_2_32_1.yaml new file mode 100644 index 000000000..44cd14e94 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_2_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/2/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 2 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_2_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_2_32_2.yaml new file mode 100644 index 000000000..f1033edd4 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_2_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/2/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 2 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_3_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_3_32_0.yaml new file mode 100644 index 000000000..39f5d2a90 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_3_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/3/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 3 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_3_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_3_32_1.yaml new file mode 100644 index 000000000..931e3563e --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_3_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/3/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 3 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_3_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_3_32_2.yaml new file mode 100644 index 000000000..dc17ca12d --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_3_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/3/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 3 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_4_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_4_32_0.yaml new file mode 100644 index 000000000..3578828a5 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_4_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/4/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 4 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_4_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_4_32_1.yaml new file mode 100644 index 000000000..e4939dbe4 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_4_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/4/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 4 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_4_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_4_32_2.yaml new file mode 100644 index 000000000..6d3894b2d --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_4_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/4/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 4 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_5_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_5_32_0.yaml new file mode 100644 index 000000000..c8b17196a --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_5_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/5/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 5 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_5_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_5_32_1.yaml new file mode 100644 index 000000000..f3bea3025 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_5_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/5/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 5 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_5_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_5_32_2.yaml new file mode 100644 index 000000000..3522e414d --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_5_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/5/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 5 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_6_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_6_32_0.yaml new file mode 100644 index 000000000..ab76d90e6 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_6_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/6/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 6 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_6_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_6_32_1.yaml new file mode 100644 index 000000000..41f947ffc --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_6_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/6/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 6 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_6_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_6_32_2.yaml new file mode 100644 index 000000000..17ed8095a --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_6_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/6/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 6 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_7_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_7_32_0.yaml new file mode 100644 index 000000000..09d724eb3 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_7_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/7/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 7 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_7_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_7_32_1.yaml new file mode 100644 index 000000000..e861d5f0a --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_7_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/7/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 7 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_7_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_7_32_2.yaml new file mode 100644 index 000000000..ac5336a25 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_7_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/7/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 7 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_8_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_8_32_0.yaml new file mode 100644 index 000000000..17093564a --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_8_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/8/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 8 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_8_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_8_32_1.yaml new file mode 100644 index 000000000..a3ed5847e --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_8_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/8/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 8 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_8_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_8_32_2.yaml new file mode 100644 index 000000000..9a95a8d13 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_8_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/8/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 8 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_9_32_0.yaml b/carps/configs/problem/BBOB/cfg_32_9_32_0.yaml new file mode 100644 index 000000000..033f1c010 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_9_32_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/9/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 9 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_9_32_1.yaml b/carps/configs/problem/BBOB/cfg_32_9_32_1.yaml new file mode 100644 index 000000000..81226712b --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_9_32_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/9/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 9 + instance: 1 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_32_9_32_2.yaml b/carps/configs/problem/BBOB/cfg_32_9_32_2.yaml new file mode 100644 index 000000000..24990086d --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_32_9_32_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/32/9/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 9 + instance: 2 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_10_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_10_4_0.yaml new file mode 100644 index 000000000..fdadfc4d6 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_10_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/10/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 10 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_10_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_10_4_1.yaml new file mode 100644 index 000000000..6e8678f88 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_10_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/10/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 10 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_10_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_10_4_2.yaml new file mode 100644 index 000000000..2b9514ba0 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_10_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/10/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 10 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_11_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_11_4_0.yaml new file mode 100644 index 000000000..b55fe87e6 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_11_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/11/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 11 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_11_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_11_4_1.yaml new file mode 100644 index 000000000..9485b53f8 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_11_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/11/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 11 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_11_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_11_4_2.yaml new file mode 100644 index 000000000..e46717361 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_11_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/11/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 11 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_12_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_12_4_0.yaml new file mode 100644 index 000000000..c6bcdc289 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_12_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/12/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 12 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_12_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_12_4_1.yaml new file mode 100644 index 000000000..bc864438c --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_12_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/12/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 12 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_12_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_12_4_2.yaml new file mode 100644 index 000000000..58837df91 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_12_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/12/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 12 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_13_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_13_4_0.yaml new file mode 100644 index 000000000..35efe1c24 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_13_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/13/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 13 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_13_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_13_4_1.yaml new file mode 100644 index 000000000..f2b1fa259 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_13_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/13/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 13 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_13_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_13_4_2.yaml new file mode 100644 index 000000000..bab9b8c5e --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_13_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/13/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 13 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_14_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_14_4_0.yaml new file mode 100644 index 000000000..842efe079 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_14_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/14/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 14 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_14_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_14_4_1.yaml new file mode 100644 index 000000000..1927c75b2 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_14_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/14/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 14 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_14_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_14_4_2.yaml new file mode 100644 index 000000000..4760e05b0 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_14_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/14/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 14 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_15_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_15_4_0.yaml new file mode 100644 index 000000000..ff3ca4690 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_15_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/15/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 15 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_15_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_15_4_1.yaml new file mode 100644 index 000000000..7b987ce81 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_15_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/15/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 15 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_15_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_15_4_2.yaml new file mode 100644 index 000000000..bde1df6c0 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_15_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/15/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 15 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_16_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_16_4_0.yaml new file mode 100644 index 000000000..085a23f70 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_16_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/16/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 16 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_16_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_16_4_1.yaml new file mode 100644 index 000000000..f66fa37ff --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_16_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/16/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 16 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_16_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_16_4_2.yaml new file mode 100644 index 000000000..c66164de7 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_16_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/16/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 16 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_17_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_17_4_0.yaml new file mode 100644 index 000000000..f8d7015c7 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_17_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/17/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 17 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_17_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_17_4_1.yaml new file mode 100644 index 000000000..5d82f2422 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_17_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/17/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 17 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_17_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_17_4_2.yaml new file mode 100644 index 000000000..a760a4851 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_17_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/17/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 17 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_18_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_18_4_0.yaml new file mode 100644 index 000000000..8aa718bb3 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_18_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/18/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 18 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_18_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_18_4_1.yaml new file mode 100644 index 000000000..dd9bc47d4 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_18_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/18/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 18 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_18_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_18_4_2.yaml new file mode 100644 index 000000000..e2604eadf --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_18_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/18/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 18 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_19_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_19_4_0.yaml new file mode 100644 index 000000000..707718e93 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_19_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/19/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 19 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_19_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_19_4_1.yaml new file mode 100644 index 000000000..8da6fe666 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_19_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/19/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 19 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_19_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_19_4_2.yaml new file mode 100644 index 000000000..1f19b1678 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_19_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/19/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 19 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_1_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_1_4_0.yaml new file mode 100644 index 000000000..e95dbbfec --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_1_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/1/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 1 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_1_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_1_4_1.yaml new file mode 100644 index 000000000..3907e57e9 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_1_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/1/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 1 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_1_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_1_4_2.yaml new file mode 100644 index 000000000..599eaff3b --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_1_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/1/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 1 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_20_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_20_4_0.yaml new file mode 100644 index 000000000..975da5412 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_20_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/20/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 20 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_20_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_20_4_1.yaml new file mode 100644 index 000000000..81f55bf5f --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_20_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/20/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 20 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_20_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_20_4_2.yaml new file mode 100644 index 000000000..19c000d7b --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_20_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/20/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 20 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_21_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_21_4_0.yaml new file mode 100644 index 000000000..731e37b9d --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_21_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/21/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 21 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_21_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_21_4_1.yaml new file mode 100644 index 000000000..52d2e082f --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_21_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/21/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 21 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_21_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_21_4_2.yaml new file mode 100644 index 000000000..485883f75 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_21_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/21/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 21 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_22_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_22_4_0.yaml new file mode 100644 index 000000000..2c68e7e0a --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_22_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/22/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 22 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_22_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_22_4_1.yaml new file mode 100644 index 000000000..7d7b069da --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_22_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/22/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 22 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_22_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_22_4_2.yaml new file mode 100644 index 000000000..bc1a8726d --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_22_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/22/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 22 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_23_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_23_4_0.yaml new file mode 100644 index 000000000..c68a17293 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_23_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/23/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 23 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_23_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_23_4_1.yaml new file mode 100644 index 000000000..3d04d6ccb --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_23_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/23/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 23 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_23_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_23_4_2.yaml new file mode 100644 index 000000000..612c21e33 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_23_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/23/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 23 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_24_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_24_4_0.yaml new file mode 100644 index 000000000..67533a3af --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_24_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/24/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 24 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_24_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_24_4_1.yaml new file mode 100644 index 000000000..c5823dbcc --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_24_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/24/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 24 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_24_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_24_4_2.yaml new file mode 100644 index 000000000..c4f9bcdd2 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_24_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/24/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 24 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_2_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_2_4_0.yaml new file mode 100644 index 000000000..f0c4deaa0 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_2_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/2/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 2 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_2_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_2_4_1.yaml new file mode 100644 index 000000000..57e9eab52 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_2_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/2/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 2 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_2_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_2_4_2.yaml new file mode 100644 index 000000000..5d1211130 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_2_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/2/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 2 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_3_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_3_4_0.yaml new file mode 100644 index 000000000..a108615d8 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_3_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/3/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 3 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_3_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_3_4_1.yaml new file mode 100644 index 000000000..657f6aed3 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_3_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/3/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 3 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_3_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_3_4_2.yaml new file mode 100644 index 000000000..54642ebc2 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_3_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/3/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 3 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_4_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_4_4_0.yaml new file mode 100644 index 000000000..24b32c5b3 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_4_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/4/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 4 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_4_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_4_4_1.yaml new file mode 100644 index 000000000..280617d3a --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_4_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/4/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 4 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_4_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_4_4_2.yaml new file mode 100644 index 000000000..28a09cbf5 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_4_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/4/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 4 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_5_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_5_4_0.yaml new file mode 100644 index 000000000..b491d261c --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_5_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/5/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 5 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_5_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_5_4_1.yaml new file mode 100644 index 000000000..33fcdea7e --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_5_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/5/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 5 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_5_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_5_4_2.yaml new file mode 100644 index 000000000..f5d6d48e2 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_5_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/5/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 5 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_6_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_6_4_0.yaml new file mode 100644 index 000000000..e677a6e15 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_6_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/6/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 6 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_6_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_6_4_1.yaml new file mode 100644 index 000000000..a13cbbec5 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_6_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/6/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 6 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_6_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_6_4_2.yaml new file mode 100644 index 000000000..7ab4c3d52 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_6_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/6/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 6 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_7_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_7_4_0.yaml new file mode 100644 index 000000000..66966a951 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_7_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/7/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 7 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_7_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_7_4_1.yaml new file mode 100644 index 000000000..92a25eee1 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_7_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/7/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 7 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_7_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_7_4_2.yaml new file mode 100644 index 000000000..d7713cf79 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_7_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/7/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 7 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_8_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_8_4_0.yaml new file mode 100644 index 000000000..8e840e3b0 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_8_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/8/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 8 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_8_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_8_4_1.yaml new file mode 100644 index 000000000..1b7490cca --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_8_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/8/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 8 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_8_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_8_4_2.yaml new file mode 100644 index 000000000..2feaccab5 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_8_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/8/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 8 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_9_4_0.yaml b/carps/configs/problem/BBOB/cfg_4_9_4_0.yaml new file mode 100644 index 000000000..8fe0e638f --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_9_4_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/9/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 9 + instance: 0 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_9_4_1.yaml b/carps/configs/problem/BBOB/cfg_4_9_4_1.yaml new file mode 100644 index 000000000..60de79868 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_9_4_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/9/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 9 + instance: 1 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_4_9_4_2.yaml b/carps/configs/problem/BBOB/cfg_4_9_4_2.yaml new file mode 100644 index 000000000..32429d632 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_4_9_4_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/4/9/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 4 + fid: 9 + instance: 2 + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_10_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_10_8_0.yaml new file mode 100644 index 000000000..47a86ade8 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_10_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/10/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 10 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_10_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_10_8_1.yaml new file mode 100644 index 000000000..64b38eb5a --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_10_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/10/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 10 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_10_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_10_8_2.yaml new file mode 100644 index 000000000..67b77e439 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_10_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/10/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 10 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_11_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_11_8_0.yaml new file mode 100644 index 000000000..dcb03c514 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_11_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/11/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 11 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_11_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_11_8_1.yaml new file mode 100644 index 000000000..df88558e8 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_11_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/11/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 11 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_11_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_11_8_2.yaml new file mode 100644 index 000000000..28ad6c8bf --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_11_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/11/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 11 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_12_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_12_8_0.yaml new file mode 100644 index 000000000..c0cd8d2b9 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_12_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/12/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 12 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_12_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_12_8_1.yaml new file mode 100644 index 000000000..849b9faa9 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_12_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/12/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 12 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_12_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_12_8_2.yaml new file mode 100644 index 000000000..f9036d4f5 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_12_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/12/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 12 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_13_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_13_8_0.yaml new file mode 100644 index 000000000..876584933 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_13_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/13/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 13 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_13_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_13_8_1.yaml new file mode 100644 index 000000000..2fd9f2e3f --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_13_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/13/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 13 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_13_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_13_8_2.yaml new file mode 100644 index 000000000..90eb5f14f --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_13_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/13/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 13 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_14_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_14_8_0.yaml new file mode 100644 index 000000000..03555e34e --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_14_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/14/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 14 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_14_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_14_8_1.yaml new file mode 100644 index 000000000..4be10935d --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_14_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/14/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 14 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_14_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_14_8_2.yaml new file mode 100644 index 000000000..9aa82314a --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_14_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/14/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 14 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_15_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_15_8_0.yaml new file mode 100644 index 000000000..a44bb8bd2 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_15_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/15/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 15 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_15_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_15_8_1.yaml new file mode 100644 index 000000000..97fc865cc --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_15_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/15/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 15 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_15_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_15_8_2.yaml new file mode 100644 index 000000000..b7ca0d9be --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_15_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/15/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 15 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_16_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_16_8_0.yaml new file mode 100644 index 000000000..5746ddf79 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_16_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/16/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 16 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_16_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_16_8_1.yaml new file mode 100644 index 000000000..de0bd5e85 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_16_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/16/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 16 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_16_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_16_8_2.yaml new file mode 100644 index 000000000..a5f16cbb4 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_16_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/16/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 16 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_17_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_17_8_0.yaml new file mode 100644 index 000000000..266b0c2bd --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_17_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/17/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 17 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_17_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_17_8_1.yaml new file mode 100644 index 000000000..5a6deab4a --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_17_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/17/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 17 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_17_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_17_8_2.yaml new file mode 100644 index 000000000..c26506f65 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_17_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/17/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 17 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_18_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_18_8_0.yaml new file mode 100644 index 000000000..08517d8e6 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_18_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/18/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 18 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_18_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_18_8_1.yaml new file mode 100644 index 000000000..eace80932 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_18_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/18/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 18 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_18_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_18_8_2.yaml new file mode 100644 index 000000000..30f98de03 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_18_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/18/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 18 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_19_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_19_8_0.yaml new file mode 100644 index 000000000..8a1dadd42 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_19_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/19/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 19 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_19_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_19_8_1.yaml new file mode 100644 index 000000000..0f3a12d81 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_19_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/19/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 19 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_19_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_19_8_2.yaml new file mode 100644 index 000000000..3942a825e --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_19_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/19/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 19 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_1_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_1_8_0.yaml new file mode 100644 index 000000000..d99acde74 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_1_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/1/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 1 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_1_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_1_8_1.yaml new file mode 100644 index 000000000..d9cb471df --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_1_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/1/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 1 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_1_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_1_8_2.yaml new file mode 100644 index 000000000..4486be874 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_1_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/1/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 1 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_20_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_20_8_0.yaml new file mode 100644 index 000000000..73fd2ef26 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_20_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/20/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 20 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_20_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_20_8_1.yaml new file mode 100644 index 000000000..e65116c27 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_20_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/20/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 20 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_20_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_20_8_2.yaml new file mode 100644 index 000000000..8576b58e3 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_20_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/20/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 20 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_21_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_21_8_0.yaml new file mode 100644 index 000000000..0a23b06ef --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_21_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/21/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 21 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_21_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_21_8_1.yaml new file mode 100644 index 000000000..9809e58d6 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_21_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/21/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 21 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_21_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_21_8_2.yaml new file mode 100644 index 000000000..ad483ea1f --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_21_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/21/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 21 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_22_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_22_8_0.yaml new file mode 100644 index 000000000..23aa2c74b --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_22_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/22/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 22 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_22_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_22_8_1.yaml new file mode 100644 index 000000000..4029aa3c3 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_22_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/22/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 22 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_22_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_22_8_2.yaml new file mode 100644 index 000000000..106e391d7 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_22_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/22/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 22 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_23_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_23_8_0.yaml new file mode 100644 index 000000000..bfe368c99 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_23_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/23/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 23 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_23_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_23_8_1.yaml new file mode 100644 index 000000000..f13ad30f3 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_23_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/23/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 23 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_23_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_23_8_2.yaml new file mode 100644 index 000000000..2bf4e3824 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_23_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/23/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 23 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_24_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_24_8_0.yaml new file mode 100644 index 000000000..750f36749 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_24_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/24/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 24 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_24_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_24_8_1.yaml new file mode 100644 index 000000000..1d2de9f83 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_24_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/24/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 24 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_24_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_24_8_2.yaml new file mode 100644 index 000000000..a8f4efb05 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_24_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/24/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 24 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_2_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_2_8_0.yaml new file mode 100644 index 000000000..c7f3b87c4 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_2_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/2/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 2 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_2_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_2_8_1.yaml new file mode 100644 index 000000000..ef2fe055a --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_2_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/2/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 2 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_2_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_2_8_2.yaml new file mode 100644 index 000000000..52c846593 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_2_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/2/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 2 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_3_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_3_8_0.yaml new file mode 100644 index 000000000..8946cc99f --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_3_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/3/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 3 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_3_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_3_8_1.yaml new file mode 100644 index 000000000..74eae488d --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_3_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/3/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 3 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_3_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_3_8_2.yaml new file mode 100644 index 000000000..ddda40b8e --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_3_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/3/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 3 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_4_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_4_8_0.yaml new file mode 100644 index 000000000..1006168a0 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_4_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/4/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 4 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_4_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_4_8_1.yaml new file mode 100644 index 000000000..774f8f4ad --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_4_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/4/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 4 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_4_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_4_8_2.yaml new file mode 100644 index 000000000..21f1bd022 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_4_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/4/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 4 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_5_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_5_8_0.yaml new file mode 100644 index 000000000..62e87dd7a --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_5_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/5/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 5 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_5_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_5_8_1.yaml new file mode 100644 index 000000000..1e557148e --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_5_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/5/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 5 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_5_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_5_8_2.yaml new file mode 100644 index 000000000..bc6d74822 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_5_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/5/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 5 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_6_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_6_8_0.yaml new file mode 100644 index 000000000..a75760ca8 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_6_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/6/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 6 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_6_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_6_8_1.yaml new file mode 100644 index 000000000..e1a1380bb --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_6_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/6/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 6 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_6_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_6_8_2.yaml new file mode 100644 index 000000000..c7967af64 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_6_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/6/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 6 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_7_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_7_8_0.yaml new file mode 100644 index 000000000..07ca2d63a --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_7_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/7/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 7 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_7_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_7_8_1.yaml new file mode 100644 index 000000000..a9ce19599 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_7_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/7/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 7 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_7_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_7_8_2.yaml new file mode 100644 index 000000000..59e53506f --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_7_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/7/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 7 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_8_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_8_8_0.yaml new file mode 100644 index 000000000..fb8e4ad4f --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_8_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/8/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 8 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_8_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_8_8_1.yaml new file mode 100644 index 000000000..ea2ba6b87 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_8_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/8/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 8 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_8_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_8_8_2.yaml new file mode 100644 index 000000000..6612c9292 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_8_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/8/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 8 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_9_8_0.yaml b/carps/configs/problem/BBOB/cfg_8_9_8_0.yaml new file mode 100644 index 000000000..8df51ad07 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_9_8_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/9/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 9 + instance: 0 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_9_8_1.yaml b/carps/configs/problem/BBOB/cfg_8_9_8_1.yaml new file mode 100644 index 000000000..6658c6d80 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_9_8_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/9/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 9 + instance: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/BBOB/cfg_8_9_8_2.yaml b/carps/configs/problem/BBOB/cfg_8_9_8_2.yaml new file mode 100644 index 000000000..ee2051130 --- /dev/null +++ b/carps/configs/problem/BBOB/cfg_8_9_8_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: bbob/noiseless/8/9/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 8 + fid: 9 + instance: 2 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/DUMMY/config.yaml b/carps/configs/problem/DUMMY/config.yaml new file mode 100644 index 000000000..e4348659d --- /dev/null +++ b/carps/configs/problem/DUMMY/config.yaml @@ -0,0 +1,13 @@ +# @package _global_ +benchmark_id: DUMMY_Problem +problem_id: dummy +problem: + _target_: carps.benchmarks.dummy_problem.DummyProblem + return_value: 42 + budget_type: epochs +task: + n_trials: 10 + n_objectives: 1 + min_budget: 1 + max_budget: 10 + time_budget: null diff --git a/carps/configs/problem/HPOB/all/cfg_124_41.yaml b/carps/configs/problem/HPOB/all/cfg_124_41.yaml new file mode 100644 index 000000000..2c0d48fe6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_124_41.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/124/41 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '124' + dataset_id: '41' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_124_59.yaml b/carps/configs/problem/HPOB/all/cfg_124_59.yaml new file mode 100644 index 000000000..77a801d58 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_124_59.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/124/59 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '124' + dataset_id: '59' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_151_12.yaml b/carps/configs/problem/HPOB/all/cfg_151_12.yaml new file mode 100644 index 000000000..58b90ef07 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_151_12.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/151/12 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '151' + dataset_id: '12' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_151_20.yaml b/carps/configs/problem/HPOB/all/cfg_151_20.yaml new file mode 100644 index 000000000..22636d74e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_151_20.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/151/20 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '151' + dataset_id: '20' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_151_28.yaml b/carps/configs/problem/HPOB/all/cfg_151_28.yaml new file mode 100644 index 000000000..2d98197f4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_151_28.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/151/28 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '151' + dataset_id: '28' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_151_59.yaml b/carps/configs/problem/HPOB/all/cfg_151_59.yaml new file mode 100644 index 000000000..1747088e2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_151_59.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/151/59 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '151' + dataset_id: '59' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_151_6.yaml b/carps/configs/problem/HPOB/all/cfg_151_6.yaml new file mode 100644 index 000000000..7bfaba882 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_151_6.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/151/6 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '151' + dataset_id: '6' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_153_59.yaml b/carps/configs/problem/HPOB/all/cfg_153_59.yaml new file mode 100644 index 000000000..8237ffb8f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_153_59.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/153/59 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '153' + dataset_id: '59' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_158_2079.yaml b/carps/configs/problem/HPOB/all/cfg_158_2079.yaml new file mode 100644 index 000000000..02dcad5e0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_158_2079.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/158/2079 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '158' + dataset_id: '2079' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_189_22.yaml b/carps/configs/problem/HPOB/all/cfg_189_22.yaml new file mode 100644 index 000000000..8541e29cc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_189_22.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/189/22 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '189' + dataset_id: '22' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_189_42.yaml b/carps/configs/problem/HPOB/all/cfg_189_42.yaml new file mode 100644 index 000000000..e7f87596a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_189_42.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/189/42 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '189' + dataset_id: '42' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_2010_125966.yaml b/carps/configs/problem/HPOB/all/cfg_2010_125966.yaml new file mode 100644 index 000000000..7eced5b3e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_2010_125966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/2010/125966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2010' + dataset_id: '125966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_2039_125966.yaml b/carps/configs/problem/HPOB/all/cfg_2039_125966.yaml new file mode 100644 index 000000000..39c402b91 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_2039_125966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/2039/125966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2039' + dataset_id: '125966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 14 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 14 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_2039_125968.yaml b/carps/configs/problem/HPOB/all/cfg_2039_125968.yaml new file mode 100644 index 000000000..01baa2f56 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_2039_125968.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/2039/125968 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2039' + dataset_id: '125968' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 14 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 14 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_2073_125966.yaml b/carps/configs/problem/HPOB/all/cfg_2073_125966.yaml new file mode 100644 index 000000000..b071f71e0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_2073_125966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/2073/125966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2073' + dataset_id: '125966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_2073_125968.yaml b/carps/configs/problem/HPOB/all/cfg_2073_125968.yaml new file mode 100644 index 000000000..245a49c8a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_2073_125968.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/2073/125968 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2073' + dataset_id: '125968' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_2073_125969.yaml b/carps/configs/problem/HPOB/all/cfg_2073_125969.yaml new file mode 100644 index 000000000..0a28d7773 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_2073_125969.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/2073/125969 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2073' + dataset_id: '125969' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_214_58.yaml b/carps/configs/problem/HPOB/all/cfg_214_58.yaml new file mode 100644 index 000000000..7bb91ad31 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_214_58.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/214/58 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '214' + dataset_id: '58' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_2277_125966.yaml b/carps/configs/problem/HPOB/all/cfg_2277_125966.yaml new file mode 100644 index 000000000..088d3bd72 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_2277_125966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/2277/125966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2277' + dataset_id: '125966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_2277_125968.yaml b/carps/configs/problem/HPOB/all/cfg_2277_125968.yaml new file mode 100644 index 000000000..69535ae7c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_2277_125968.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/2277/125968 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2277' + dataset_id: '125968' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_2277_125969.yaml b/carps/configs/problem/HPOB/all/cfg_2277_125969.yaml new file mode 100644 index 000000000..acf0112bb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_2277_125969.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/2277/125969 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2277' + dataset_id: '125969' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_243_59.yaml b/carps/configs/problem/HPOB/all/cfg_243_59.yaml new file mode 100644 index 000000000..ece2ccadb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_243_59.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/243/59 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '243' + dataset_id: '59' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_245_59.yaml b/carps/configs/problem/HPOB/all/cfg_245_59.yaml new file mode 100644 index 000000000..e5fde5066 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_245_59.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/245/59 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '245' + dataset_id: '59' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_246_59.yaml b/carps/configs/problem/HPOB/all/cfg_246_59.yaml new file mode 100644 index 000000000..a464e107d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_246_59.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/246/59 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '246' + dataset_id: '59' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_247_59.yaml b/carps/configs/problem/HPOB/all/cfg_247_59.yaml new file mode 100644 index 000000000..2234a2486 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_247_59.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/247/59 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '247' + dataset_id: '59' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_248_59.yaml b/carps/configs/problem/HPOB/all/cfg_248_59.yaml new file mode 100644 index 000000000..a36024ef5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_248_59.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/248/59 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '248' + dataset_id: '59' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_2553_3.yaml b/carps/configs/problem/HPOB/all/cfg_2553_3.yaml new file mode 100644 index 000000000..eec3c24b2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_2553_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/2553/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2553' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_2566_3647.yaml b/carps/configs/problem/HPOB/all/cfg_2566_3647.yaml new file mode 100644 index 000000000..99e074726 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_2566_3647.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/2566/3647 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2566' + dataset_id: '3647' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_2614_3954.yaml b/carps/configs/problem/HPOB/all/cfg_2614_3954.yaml new file mode 100644 index 000000000..898433c46 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_2614_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/2614/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2614' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_2629_14951.yaml b/carps/configs/problem/HPOB/all/cfg_2629_14951.yaml new file mode 100644 index 000000000..4776f704f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_2629_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/2629/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2629' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_2793_14951.yaml b/carps/configs/problem/HPOB/all/cfg_2793_14951.yaml new file mode 100644 index 000000000..869096b1d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_2793_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/2793/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2793' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 12 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 12 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_2799_14951.yaml b/carps/configs/problem/HPOB/all/cfg_2799_14951.yaml new file mode 100644 index 000000000..6fbc80e20 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_2799_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/2799/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2799' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 7 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_2823_14951.yaml b/carps/configs/problem/HPOB/all/cfg_2823_14951.yaml new file mode 100644 index 000000000..59bc56b7c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_2823_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/2823/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2823' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 11 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 11 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3414_14951.yaml b/carps/configs/problem/HPOB/all/cfg_3414_14951.yaml new file mode 100644 index 000000000..8682506fc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3414_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3414/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3414' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3425_14951.yaml b/carps/configs/problem/HPOB/all/cfg_3425_14951.yaml new file mode 100644 index 000000000..7c5140ab1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3425_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3425/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3425' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3434_14951.yaml b/carps/configs/problem/HPOB/all/cfg_3434_14951.yaml new file mode 100644 index 000000000..388403576 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3434_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3434/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3434' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3439_14951.yaml b/carps/configs/problem/HPOB/all/cfg_3439_14951.yaml new file mode 100644 index 000000000..3155dd4df --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3439_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3439/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3439' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3442_14951.yaml b/carps/configs/problem/HPOB/all/cfg_3442_14951.yaml new file mode 100644 index 000000000..436e3c3b8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3442_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3442/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3442' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 5 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3489_125966.yaml b/carps/configs/problem/HPOB/all/cfg_3489_125966.yaml new file mode 100644 index 000000000..6d95247a8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3489_125966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3489/125966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3489' + dataset_id: '125966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 12 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 12 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3489_125968.yaml b/carps/configs/problem/HPOB/all/cfg_3489_125968.yaml new file mode 100644 index 000000000..174995464 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3489_125968.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3489/125968 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3489' + dataset_id: '125968' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 12 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 12 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3489_125969.yaml b/carps/configs/problem/HPOB/all/cfg_3489_125969.yaml new file mode 100644 index 000000000..2b03a009b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3489_125969.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3489/125969 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3489' + dataset_id: '125969' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 12 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 12 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3490_125966.yaml b/carps/configs/problem/HPOB/all/cfg_3490_125966.yaml new file mode 100644 index 000000000..559aeec8a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3490_125966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3490/125966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3490' + dataset_id: '125966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 29 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 29 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3490_125968.yaml b/carps/configs/problem/HPOB/all/cfg_3490_125968.yaml new file mode 100644 index 000000000..5b5ee6968 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3490_125968.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3490/125968 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3490' + dataset_id: '125968' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 29 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 29 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3490_125969.yaml b/carps/configs/problem/HPOB/all/cfg_3490_125969.yaml new file mode 100644 index 000000000..3a4df2b84 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3490_125969.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3490/125969 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3490' + dataset_id: '125969' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 29 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 29 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3502_125966.yaml b/carps/configs/problem/HPOB/all/cfg_3502_125966.yaml new file mode 100644 index 000000000..6c074223c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3502_125966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3502/125966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3502' + dataset_id: '125966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3502_125969.yaml b/carps/configs/problem/HPOB/all/cfg_3502_125969.yaml new file mode 100644 index 000000000..1fceb0142 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3502_125969.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3502/125969 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3502' + dataset_id: '125969' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3737_3736.yaml b/carps/configs/problem/HPOB/all/cfg_3737_3736.yaml new file mode 100644 index 000000000..51bf7ffdb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3737_3736.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3737/3736 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3737' + dataset_id: '3736' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3894_3577.yaml b/carps/configs/problem/HPOB/all/cfg_3894_3577.yaml new file mode 100644 index 000000000..ef267acec --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3894_3577.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3894/3577 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3894' + dataset_id: '3577' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3894_3647.yaml b/carps/configs/problem/HPOB/all/cfg_3894_3647.yaml new file mode 100644 index 000000000..1c32c03ae --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3894_3647.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3894/3647 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3894' + dataset_id: '3647' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3894_3729.yaml b/carps/configs/problem/HPOB/all/cfg_3894_3729.yaml new file mode 100644 index 000000000..b17d43fb3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3894_3729.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3894/3729 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3894' + dataset_id: '3729' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3894_3731.yaml b/carps/configs/problem/HPOB/all/cfg_3894_3731.yaml new file mode 100644 index 000000000..b93d0558b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3894_3731.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3894/3731 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3894' + dataset_id: '3731' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3960_125966.yaml b/carps/configs/problem/HPOB/all/cfg_3960_125966.yaml new file mode 100644 index 000000000..339ba6d98 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3960_125966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3960/125966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3960' + dataset_id: '125966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3994_10093.yaml b/carps/configs/problem/HPOB/all/cfg_3994_10093.yaml new file mode 100644 index 000000000..40a18fe87 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3994_10093.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3994/10093 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3994' + dataset_id: '10093' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3994_10101.yaml b/carps/configs/problem/HPOB/all/cfg_3994_10101.yaml new file mode 100644 index 000000000..a3bd1238d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3994_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3994/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3994' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3994_9903.yaml b/carps/configs/problem/HPOB/all/cfg_3994_9903.yaml new file mode 100644 index 000000000..83b7cf0e5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3994_9903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3994/9903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3994' + dataset_id: '9903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3994_9905.yaml b/carps/configs/problem/HPOB/all/cfg_3994_9905.yaml new file mode 100644 index 000000000..93210189f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3994_9905.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3994/9905 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3994' + dataset_id: '9905' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_3994_9971.yaml b/carps/configs/problem/HPOB/all/cfg_3994_9971.yaml new file mode 100644 index 000000000..1c65c8d56 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_3994_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/3994/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '3994' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4006_3.yaml b/carps/configs/problem/HPOB/all/cfg_4006_3.yaml new file mode 100644 index 000000000..42d456a96 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4006_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4006/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4006' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4006_57.yaml b/carps/configs/problem/HPOB/all/cfg_4006_57.yaml new file mode 100644 index 000000000..b76d5c7cf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4006_57.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4006/57 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4006' + dataset_id: '57' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_423_29.yaml b/carps/configs/problem/HPOB/all/cfg_423_29.yaml new file mode 100644 index 000000000..ebf92ec5c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_423_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/423/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '423' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_423_59.yaml b/carps/configs/problem/HPOB/all/cfg_423_59.yaml new file mode 100644 index 000000000..2b8ac1a12 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_423_59.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/423/59 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '423' + dataset_id: '59' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4289_125966.yaml b/carps/configs/problem/HPOB/all/cfg_4289_125966.yaml new file mode 100644 index 000000000..6141869d9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4289_125966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4289/125966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4289' + dataset_id: '125966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_10093.yaml b/carps/configs/problem/HPOB/all/cfg_4796_10093.yaml new file mode 100644 index 000000000..26227c1c9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_10093.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/10093 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '10093' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_10101.yaml b/carps/configs/problem/HPOB/all/cfg_4796_10101.yaml new file mode 100644 index 000000000..c8af18edf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_11.yaml b/carps/configs/problem/HPOB/all/cfg_4796_11.yaml new file mode 100644 index 000000000..b6a1ca9fc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_11.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/11 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '11' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_14964.yaml b/carps/configs/problem/HPOB/all/cfg_4796_14964.yaml new file mode 100644 index 000000000..fa14c4cd6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_14964.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/14964 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '14964' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_14968.yaml b/carps/configs/problem/HPOB/all/cfg_4796_14968.yaml new file mode 100644 index 000000000..1f116cec3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_14968.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/14968 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '14968' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_15.yaml b/carps/configs/problem/HPOB/all/cfg_4796_15.yaml new file mode 100644 index 000000000..c5041c53b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_15.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/15 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '15' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_18.yaml b/carps/configs/problem/HPOB/all/cfg_4796_18.yaml new file mode 100644 index 000000000..854ac1601 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_18.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/18 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '18' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_2.yaml b/carps/configs/problem/HPOB/all/cfg_4796_2.yaml new file mode 100644 index 000000000..3f7571f31 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_2.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/2 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '2' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_2079.yaml b/carps/configs/problem/HPOB/all/cfg_4796_2079.yaml new file mode 100644 index 000000000..a7f4022d8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_2079.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/2079 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '2079' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_21.yaml b/carps/configs/problem/HPOB/all/cfg_4796_21.yaml new file mode 100644 index 000000000..d15282de9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_21.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/21 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '21' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_23.yaml b/carps/configs/problem/HPOB/all/cfg_4796_23.yaml new file mode 100644 index 000000000..58f7b97fa --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_23.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/23 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '23' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_29.yaml b/carps/configs/problem/HPOB/all/cfg_4796_29.yaml new file mode 100644 index 000000000..16620763a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_3022.yaml b/carps/configs/problem/HPOB/all/cfg_4796_3022.yaml new file mode 100644 index 000000000..03c737a77 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_3022.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/3022 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '3022' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_31.yaml b/carps/configs/problem/HPOB/all/cfg_4796_31.yaml new file mode 100644 index 000000000..cadfc8081 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_3492.yaml b/carps/configs/problem/HPOB/all/cfg_4796_3492.yaml new file mode 100644 index 000000000..e96c2819d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_3492.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/3492 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '3492' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_3493.yaml b/carps/configs/problem/HPOB/all/cfg_4796_3493.yaml new file mode 100644 index 000000000..bfbec744c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_3494.yaml b/carps/configs/problem/HPOB/all/cfg_4796_3494.yaml new file mode 100644 index 000000000..488d59459 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_3512.yaml b/carps/configs/problem/HPOB/all/cfg_4796_3512.yaml new file mode 100644 index 000000000..f9ec1d31f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_3512.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/3512 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '3512' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_3543.yaml b/carps/configs/problem/HPOB/all/cfg_4796_3543.yaml new file mode 100644 index 000000000..fd6411414 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_3543.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/3543 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '3543' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_3549.yaml b/carps/configs/problem/HPOB/all/cfg_4796_3549.yaml new file mode 100644 index 000000000..575b003a2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_3549.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/3549 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '3549' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_3560.yaml b/carps/configs/problem/HPOB/all/cfg_4796_3560.yaml new file mode 100644 index 000000000..d4a394bf3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_3560.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/3560 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '3560' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_3561.yaml b/carps/configs/problem/HPOB/all/cfg_4796_3561.yaml new file mode 100644 index 000000000..5a76e53c9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_3561.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/3561 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '3561' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_3567.yaml b/carps/configs/problem/HPOB/all/cfg_4796_3567.yaml new file mode 100644 index 000000000..0596e326d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_3567.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/3567 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '3567' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_36.yaml b/carps/configs/problem/HPOB/all/cfg_4796_36.yaml new file mode 100644 index 000000000..82f301cf5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_36.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/36 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '36' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_37.yaml b/carps/configs/problem/HPOB/all/cfg_4796_37.yaml new file mode 100644 index 000000000..061e483da --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_3902.yaml b/carps/configs/problem/HPOB/all/cfg_4796_3902.yaml new file mode 100644 index 000000000..64ff5dd2c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_3903.yaml b/carps/configs/problem/HPOB/all/cfg_4796_3903.yaml new file mode 100644 index 000000000..2ad48caf2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_3903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/3903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '3903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_3913.yaml b/carps/configs/problem/HPOB/all/cfg_4796_3913.yaml new file mode 100644 index 000000000..40758bbb4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_3917.yaml b/carps/configs/problem/HPOB/all/cfg_4796_3917.yaml new file mode 100644 index 000000000..77432ec30 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_3918.yaml b/carps/configs/problem/HPOB/all/cfg_4796_3918.yaml new file mode 100644 index 000000000..3f3beac79 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_3918.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/3918 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '3918' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_41.yaml b/carps/configs/problem/HPOB/all/cfg_4796_41.yaml new file mode 100644 index 000000000..39e150cb9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_41.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/41 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '41' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_49.yaml b/carps/configs/problem/HPOB/all/cfg_4796_49.yaml new file mode 100644 index 000000000..a42fb44a4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_53.yaml b/carps/configs/problem/HPOB/all/cfg_4796_53.yaml new file mode 100644 index 000000000..4a20d1327 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_53.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/53 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '53' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_9903.yaml b/carps/configs/problem/HPOB/all/cfg_4796_9903.yaml new file mode 100644 index 000000000..91646eaa3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_9903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/9903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '9903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_9905.yaml b/carps/configs/problem/HPOB/all/cfg_4796_9905.yaml new file mode 100644 index 000000000..d254f59ad --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_9905.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/9905 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '9905' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_9906.yaml b/carps/configs/problem/HPOB/all/cfg_4796_9906.yaml new file mode 100644 index 000000000..e741a139e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_9906.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/9906 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '9906' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_9914.yaml b/carps/configs/problem/HPOB/all/cfg_4796_9914.yaml new file mode 100644 index 000000000..07d5a645c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_9946.yaml b/carps/configs/problem/HPOB/all/cfg_4796_9946.yaml new file mode 100644 index 000000000..7e3a65d76 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_9946.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/9946 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '9946' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_9952.yaml b/carps/configs/problem/HPOB/all/cfg_4796_9952.yaml new file mode 100644 index 000000000..3803acae9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_9957.yaml b/carps/configs/problem/HPOB/all/cfg_4796_9957.yaml new file mode 100644 index 000000000..f95d25f77 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_9967.yaml b/carps/configs/problem/HPOB/all/cfg_4796_9967.yaml new file mode 100644 index 000000000..902d73df6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_9967.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/9967 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '9967' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_9971.yaml b/carps/configs/problem/HPOB/all/cfg_4796_9971.yaml new file mode 100644 index 000000000..192d5fe55 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_9979.yaml b/carps/configs/problem/HPOB/all/cfg_4796_9979.yaml new file mode 100644 index 000000000..66b64734a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_9979.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/9979 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '9979' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4796_9980.yaml b/carps/configs/problem/HPOB/all/cfg_4796_9980.yaml new file mode 100644 index 000000000..2a7667d71 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4796_9980.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4796/9980 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4796' + dataset_id: '9980' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_4828_57.yaml b/carps/configs/problem/HPOB/all/cfg_4828_57.yaml new file mode 100644 index 000000000..9935acf94 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_4828_57.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/4828/57 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '4828' + dataset_id: '57' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_506_1.yaml b/carps/configs/problem/HPOB/all/cfg_506_1.yaml new file mode 100644 index 000000000..7382349e3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_506_1.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/506/1 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '506' + dataset_id: '1' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_506_15.yaml b/carps/configs/problem/HPOB/all/cfg_506_15.yaml new file mode 100644 index 000000000..9d2e3482f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_506_15.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/506/15 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '506' + dataset_id: '15' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_506_1793.yaml b/carps/configs/problem/HPOB/all/cfg_506_1793.yaml new file mode 100644 index 000000000..79c1200e6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_506_1793.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/506/1793 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '506' + dataset_id: '1793' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_506_257.yaml b/carps/configs/problem/HPOB/all/cfg_506_257.yaml new file mode 100644 index 000000000..26405cdcd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_506_257.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/506/257 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '506' + dataset_id: '257' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_506_269.yaml b/carps/configs/problem/HPOB/all/cfg_506_269.yaml new file mode 100644 index 000000000..8646ce0a6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_506_269.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/506/269 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '506' + dataset_id: '269' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_506_34.yaml b/carps/configs/problem/HPOB/all/cfg_506_34.yaml new file mode 100644 index 000000000..3ff8763fb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_506_34.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/506/34 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '506' + dataset_id: '34' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_506_3658.yaml b/carps/configs/problem/HPOB/all/cfg_506_3658.yaml new file mode 100644 index 000000000..4d912939d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_506_3658.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/506/3658 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '506' + dataset_id: '3658' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_506_3949.yaml b/carps/configs/problem/HPOB/all/cfg_506_3949.yaml new file mode 100644 index 000000000..408d6ebbd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_506_3949.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/506/3949 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '506' + dataset_id: '3949' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_506_59.yaml b/carps/configs/problem/HPOB/all/cfg_506_59.yaml new file mode 100644 index 000000000..806446e35 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_506_59.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/506/59 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '506' + dataset_id: '59' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5218_125966.yaml b/carps/configs/problem/HPOB/all/cfg_5218_125966.yaml new file mode 100644 index 000000000..651129fc2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5218_125966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5218/125966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5218' + dataset_id: '125966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5237_125966.yaml b/carps/configs/problem/HPOB/all/cfg_5237_125966.yaml new file mode 100644 index 000000000..c8194f9ba --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5237_125966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5237/125966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5237' + dataset_id: '125966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5253_125966.yaml b/carps/configs/problem/HPOB/all/cfg_5253_125966.yaml new file mode 100644 index 000000000..7dbbe2b1f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5253_125966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5253/125966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5253' + dataset_id: '125966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5295_125966.yaml b/carps/configs/problem/HPOB/all/cfg_5295_125966.yaml new file mode 100644 index 000000000..34b538725 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5295_125966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5295/125966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5295' + dataset_id: '125966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5301_125966.yaml b/carps/configs/problem/HPOB/all/cfg_5301_125966.yaml new file mode 100644 index 000000000..363ba6105 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5301_125966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5301/125966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5301' + dataset_id: '125966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5315_125966.yaml b/carps/configs/problem/HPOB/all/cfg_5315_125966.yaml new file mode 100644 index 000000000..953898bbe --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5315_125966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5315/125966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5315' + dataset_id: '125966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_10.yaml b/carps/configs/problem/HPOB/all/cfg_534_10.yaml new file mode 100644 index 000000000..7fe094ab4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_10.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/10 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '10' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_11.yaml b/carps/configs/problem/HPOB/all/cfg_534_11.yaml new file mode 100644 index 000000000..d4acd4b0a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_11.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/11 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '11' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_12.yaml b/carps/configs/problem/HPOB/all/cfg_534_12.yaml new file mode 100644 index 000000000..90deda0ae --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_12.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/12 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '12' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_15.yaml b/carps/configs/problem/HPOB/all/cfg_534_15.yaml new file mode 100644 index 000000000..00ab9613f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_15.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/15 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '15' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_16.yaml b/carps/configs/problem/HPOB/all/cfg_534_16.yaml new file mode 100644 index 000000000..9083598c8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_16.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/16 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '16' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_1793.yaml b/carps/configs/problem/HPOB/all/cfg_534_1793.yaml new file mode 100644 index 000000000..8ff919173 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_1793.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/1793 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '1793' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_18.yaml b/carps/configs/problem/HPOB/all/cfg_534_18.yaml new file mode 100644 index 000000000..453351bfd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_18.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/18 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '18' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_20.yaml b/carps/configs/problem/HPOB/all/cfg_534_20.yaml new file mode 100644 index 000000000..f5249001f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_20.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/20 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '20' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_2073.yaml b/carps/configs/problem/HPOB/all/cfg_534_2073.yaml new file mode 100644 index 000000000..3d14b3464 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_2073.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/2073 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '2073' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_2075.yaml b/carps/configs/problem/HPOB/all/cfg_534_2075.yaml new file mode 100644 index 000000000..7c112ed7e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_2075.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/2075 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '2075' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_23.yaml b/carps/configs/problem/HPOB/all/cfg_534_23.yaml new file mode 100644 index 000000000..b855161d7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_23.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/23 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '23' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_269.yaml b/carps/configs/problem/HPOB/all/cfg_534_269.yaml new file mode 100644 index 000000000..77cb0ea32 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_269.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/269 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '269' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_272.yaml b/carps/configs/problem/HPOB/all/cfg_534_272.yaml new file mode 100644 index 000000000..b312bfd32 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_272.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/272 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '272' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_29.yaml b/carps/configs/problem/HPOB/all/cfg_534_29.yaml new file mode 100644 index 000000000..09330cdd8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3011.yaml b/carps/configs/problem/HPOB/all/cfg_534_3011.yaml new file mode 100644 index 000000000..6a98454d4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3011.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3011 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3011' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3021.yaml b/carps/configs/problem/HPOB/all/cfg_534_3021.yaml new file mode 100644 index 000000000..875a21de5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3021.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3021 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3021' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_34.yaml b/carps/configs/problem/HPOB/all/cfg_534_34.yaml new file mode 100644 index 000000000..bd52f1dee --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_34.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/34 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '34' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3481.yaml b/carps/configs/problem/HPOB/all/cfg_534_3481.yaml new file mode 100644 index 000000000..45d75f57d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3481.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3481 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3481' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3493.yaml b/carps/configs/problem/HPOB/all/cfg_534_3493.yaml new file mode 100644 index 000000000..3f1cc6c19 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3494.yaml b/carps/configs/problem/HPOB/all/cfg_534_3494.yaml new file mode 100644 index 000000000..157d9d432 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3497.yaml b/carps/configs/problem/HPOB/all/cfg_534_3497.yaml new file mode 100644 index 000000000..8c016a5bd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3497.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3497 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3497' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3510.yaml b/carps/configs/problem/HPOB/all/cfg_534_3510.yaml new file mode 100644 index 000000000..1a25e0013 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3510.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3510 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3510' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3542.yaml b/carps/configs/problem/HPOB/all/cfg_534_3542.yaml new file mode 100644 index 000000000..ad03fe825 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3542.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3542 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3542' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3549.yaml b/carps/configs/problem/HPOB/all/cfg_534_3549.yaml new file mode 100644 index 000000000..1bc02cc99 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3549.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3549 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3549' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3550.yaml b/carps/configs/problem/HPOB/all/cfg_534_3550.yaml new file mode 100644 index 000000000..f1d056430 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3550.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3550 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3550' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3555.yaml b/carps/configs/problem/HPOB/all/cfg_534_3555.yaml new file mode 100644 index 000000000..65178b336 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3555.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3555 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3555' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3560.yaml b/carps/configs/problem/HPOB/all/cfg_534_3560.yaml new file mode 100644 index 000000000..7167c1fb6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3560.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3560 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3560' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3561.yaml b/carps/configs/problem/HPOB/all/cfg_534_3561.yaml new file mode 100644 index 000000000..ac31b1fe8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3561.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3561 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3561' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3570.yaml b/carps/configs/problem/HPOB/all/cfg_534_3570.yaml new file mode 100644 index 000000000..98537eab4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3570.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3570 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3570' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3577.yaml b/carps/configs/problem/HPOB/all/cfg_534_3577.yaml new file mode 100644 index 000000000..8e9db3b69 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3577.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3577 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3577' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3578.yaml b/carps/configs/problem/HPOB/all/cfg_534_3578.yaml new file mode 100644 index 000000000..d6643ef60 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3578.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3578 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3578' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3580.yaml b/carps/configs/problem/HPOB/all/cfg_534_3580.yaml new file mode 100644 index 000000000..d6dd3a52b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3580.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3580 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3580' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3585.yaml b/carps/configs/problem/HPOB/all/cfg_534_3585.yaml new file mode 100644 index 000000000..5a4efc631 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3585.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3585 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3585' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3591.yaml b/carps/configs/problem/HPOB/all/cfg_534_3591.yaml new file mode 100644 index 000000000..26514a198 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3591.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3591 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3591' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3599.yaml b/carps/configs/problem/HPOB/all/cfg_534_3599.yaml new file mode 100644 index 000000000..696631f52 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3599.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3599 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3599' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_36.yaml b/carps/configs/problem/HPOB/all/cfg_534_36.yaml new file mode 100644 index 000000000..b24f538ae --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_36.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/36 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '36' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3613.yaml b/carps/configs/problem/HPOB/all/cfg_534_3613.yaml new file mode 100644 index 000000000..f1209f4dd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3613.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3613 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3613' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3614.yaml b/carps/configs/problem/HPOB/all/cfg_534_3614.yaml new file mode 100644 index 000000000..cf6cae036 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3614.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3614 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3614' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3620.yaml b/carps/configs/problem/HPOB/all/cfg_534_3620.yaml new file mode 100644 index 000000000..28535b861 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3620.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3620 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3620' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3709.yaml b/carps/configs/problem/HPOB/all/cfg_534_3709.yaml new file mode 100644 index 000000000..418d7d55e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3709.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3709 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3709' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3713.yaml b/carps/configs/problem/HPOB/all/cfg_534_3713.yaml new file mode 100644 index 000000000..117a38ce8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3713.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3713 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3713' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3724.yaml b/carps/configs/problem/HPOB/all/cfg_534_3724.yaml new file mode 100644 index 000000000..dfbd04534 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3724.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3724 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3724' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3731.yaml b/carps/configs/problem/HPOB/all/cfg_534_3731.yaml new file mode 100644 index 000000000..74680eb54 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3731.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3731 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3731' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3736.yaml b/carps/configs/problem/HPOB/all/cfg_534_3736.yaml new file mode 100644 index 000000000..cb424de67 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3736.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3736 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3736' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3758.yaml b/carps/configs/problem/HPOB/all/cfg_534_3758.yaml new file mode 100644 index 000000000..5575304df --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3758.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3758 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3758' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3763.yaml b/carps/configs/problem/HPOB/all/cfg_534_3763.yaml new file mode 100644 index 000000000..fb652fd39 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3763.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3763 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3763' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3765.yaml b/carps/configs/problem/HPOB/all/cfg_534_3765.yaml new file mode 100644 index 000000000..2cc6a703e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3765.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3765 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3765' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3784.yaml b/carps/configs/problem/HPOB/all/cfg_534_3784.yaml new file mode 100644 index 000000000..21a08ff4a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3784.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3784 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3784' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3799.yaml b/carps/configs/problem/HPOB/all/cfg_534_3799.yaml new file mode 100644 index 000000000..32e006886 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3799.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3799 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3799' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3818.yaml b/carps/configs/problem/HPOB/all/cfg_534_3818.yaml new file mode 100644 index 000000000..161036418 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3818.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3818 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3818' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3820.yaml b/carps/configs/problem/HPOB/all/cfg_534_3820.yaml new file mode 100644 index 000000000..952461661 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3820.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3820 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3820' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3837.yaml b/carps/configs/problem/HPOB/all/cfg_534_3837.yaml new file mode 100644 index 000000000..ba74fee50 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3837.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3837 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3837' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3846.yaml b/carps/configs/problem/HPOB/all/cfg_534_3846.yaml new file mode 100644 index 000000000..dc30c45a2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3846.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3846 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3846' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3849.yaml b/carps/configs/problem/HPOB/all/cfg_534_3849.yaml new file mode 100644 index 000000000..a2f188ca2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3849.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3849 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3849' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3854.yaml b/carps/configs/problem/HPOB/all/cfg_534_3854.yaml new file mode 100644 index 000000000..82e5400e7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3854.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3854 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3854' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3859.yaml b/carps/configs/problem/HPOB/all/cfg_534_3859.yaml new file mode 100644 index 000000000..de6b92454 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3859.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3859 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3859' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3896.yaml b/carps/configs/problem/HPOB/all/cfg_534_3896.yaml new file mode 100644 index 000000000..7a5f0a792 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3902.yaml b/carps/configs/problem/HPOB/all/cfg_534_3902.yaml new file mode 100644 index 000000000..ed3d227b9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_3919.yaml b/carps/configs/problem/HPOB/all/cfg_534_3919.yaml new file mode 100644 index 000000000..bee221cab --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_3919.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/3919 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '3919' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_41.yaml b/carps/configs/problem/HPOB/all/cfg_534_41.yaml new file mode 100644 index 000000000..7ef1e720a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_41.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/41 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '41' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_43.yaml b/carps/configs/problem/HPOB/all/cfg_534_43.yaml new file mode 100644 index 000000000..be511de58 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_49.yaml b/carps/configs/problem/HPOB/all/cfg_534_49.yaml new file mode 100644 index 000000000..1938885ad --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_50.yaml b/carps/configs/problem/HPOB/all/cfg_534_50.yaml new file mode 100644 index 000000000..10a61a221 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_50.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/50 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '50' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_53.yaml b/carps/configs/problem/HPOB/all/cfg_534_53.yaml new file mode 100644 index 000000000..85c556b26 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_53.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/53 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '53' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_534_59.yaml b/carps/configs/problem/HPOB/all/cfg_534_59.yaml new file mode 100644 index 000000000..77e337676 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_534_59.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/534/59 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '534' + dataset_id: '59' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5435_125920.yaml b/carps/configs/problem/HPOB/all/cfg_5435_125920.yaml new file mode 100644 index 000000000..5d1addda0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5435_125920.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5435/125920 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5435' + dataset_id: '125920' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5435_125921.yaml b/carps/configs/problem/HPOB/all/cfg_5435_125921.yaml new file mode 100644 index 000000000..6da6f4b95 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5435_125921.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5435/125921 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5435' + dataset_id: '125921' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5435_125922.yaml b/carps/configs/problem/HPOB/all/cfg_5435_125922.yaml new file mode 100644 index 000000000..eb9cba401 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5435_125922.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5435/125922 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5435' + dataset_id: '125922' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5435_125923.yaml b/carps/configs/problem/HPOB/all/cfg_5435_125923.yaml new file mode 100644 index 000000000..04d01247c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5435_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5435/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5435' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5458_3011.yaml b/carps/configs/problem/HPOB/all/cfg_5458_3011.yaml new file mode 100644 index 000000000..5146b325a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5458_3011.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5458/3011 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5458' + dataset_id: '3011' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5458_3021.yaml b/carps/configs/problem/HPOB/all/cfg_5458_3021.yaml new file mode 100644 index 000000000..a185ca79c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5458_3021.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5458/3021 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5458' + dataset_id: '3021' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5458_34.yaml b/carps/configs/problem/HPOB/all/cfg_5458_34.yaml new file mode 100644 index 000000000..2966e126b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5458_34.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5458/34 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5458' + dataset_id: '34' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5458_3820.yaml b/carps/configs/problem/HPOB/all/cfg_5458_3820.yaml new file mode 100644 index 000000000..97e19ea49 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5458_3820.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5458/3820 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5458' + dataset_id: '3820' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5489_3011.yaml b/carps/configs/problem/HPOB/all/cfg_5489_3011.yaml new file mode 100644 index 000000000..222b765c7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5489_3011.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5489/3011 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5489' + dataset_id: '3011' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 14 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 14 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5489_34.yaml b/carps/configs/problem/HPOB/all/cfg_5489_34.yaml new file mode 100644 index 000000000..dbbbd5d83 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5489_34.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5489/34 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5489' + dataset_id: '34' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 14 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 14 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5489_3849.yaml b/carps/configs/problem/HPOB/all/cfg_5489_3849.yaml new file mode 100644 index 000000000..fbaa2811e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5489_3849.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5489/3849 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5489' + dataset_id: '3849' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 14 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 14 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5489_3866.yaml b/carps/configs/problem/HPOB/all/cfg_5489_3866.yaml new file mode 100644 index 000000000..43acfae59 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5489_3866.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5489/3866 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5489' + dataset_id: '3866' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 14 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 14 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5489_50.yaml b/carps/configs/problem/HPOB/all/cfg_5489_50.yaml new file mode 100644 index 000000000..a9e4992b8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5489_50.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5489/50 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5489' + dataset_id: '50' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 14 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 14 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5499_11.yaml b/carps/configs/problem/HPOB/all/cfg_5499_11.yaml new file mode 100644 index 000000000..67526e4bf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5499_11.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5499/11 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5499' + dataset_id: '11' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 12 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 12 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5499_145677.yaml b/carps/configs/problem/HPOB/all/cfg_5499_145677.yaml new file mode 100644 index 000000000..3c615a093 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5499_145677.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5499/145677 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5499' + dataset_id: '145677' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 12 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 12 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5502_145677.yaml b/carps/configs/problem/HPOB/all/cfg_5502_145677.yaml new file mode 100644 index 000000000..85547891d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5502_145677.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5502/145677 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5502' + dataset_id: '145677' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5503_145677.yaml b/carps/configs/problem/HPOB/all/cfg_5503_145677.yaml new file mode 100644 index 000000000..2fda1831b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5503_145677.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5503/145677 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5503' + dataset_id: '145677' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5503_14951.yaml b/carps/configs/problem/HPOB/all/cfg_5503_14951.yaml new file mode 100644 index 000000000..abfafcd40 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5503_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5503/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5503' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5521_145677.yaml b/carps/configs/problem/HPOB/all/cfg_5521_145677.yaml new file mode 100644 index 000000000..4f1165bec --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5521_145677.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5521/145677 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5521' + dataset_id: '145677' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5526_145833.yaml b/carps/configs/problem/HPOB/all/cfg_5526_145833.yaml new file mode 100644 index 000000000..841030903 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5526_145833.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5526/145833 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5526' + dataset_id: '145833' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5526_145834.yaml b/carps/configs/problem/HPOB/all/cfg_5526_145834.yaml new file mode 100644 index 000000000..773636ed9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5526_145834.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5526/145834 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5526' + dataset_id: '145834' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5526_3.yaml b/carps/configs/problem/HPOB/all/cfg_5526_3.yaml new file mode 100644 index 000000000..a21e55389 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5526_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5526/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5526' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5526_31.yaml b/carps/configs/problem/HPOB/all/cfg_5526_31.yaml new file mode 100644 index 000000000..b9fcfb6ec --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5526_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5526/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5526' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5526_3494.yaml b/carps/configs/problem/HPOB/all/cfg_5526_3494.yaml new file mode 100644 index 000000000..fa88bf8ba --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5526_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5526/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5526' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5526_3899.yaml b/carps/configs/problem/HPOB/all/cfg_5526_3899.yaml new file mode 100644 index 000000000..449b27d73 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5526_3899.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5526/3899 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5526' + dataset_id: '3899' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5526_7295.yaml b/carps/configs/problem/HPOB/all/cfg_5526_7295.yaml new file mode 100644 index 000000000..3a785ab70 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5526_7295.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5526/7295 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5526' + dataset_id: '7295' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_10101.yaml b/carps/configs/problem/HPOB/all/cfg_5527_10101.yaml new file mode 100644 index 000000000..3d9cfe22c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_125923.yaml b/carps/configs/problem/HPOB/all/cfg_5527_125923.yaml new file mode 100644 index 000000000..d5ba10a3c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_145804.yaml b/carps/configs/problem/HPOB/all/cfg_5527_145804.yaml new file mode 100644 index 000000000..31c9f0566 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_145804.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/145804 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '145804' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_145833.yaml b/carps/configs/problem/HPOB/all/cfg_5527_145833.yaml new file mode 100644 index 000000000..5476de7fe --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_145833.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/145833 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '145833' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_145834.yaml b/carps/configs/problem/HPOB/all/cfg_5527_145834.yaml new file mode 100644 index 000000000..1a219f788 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_145834.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/145834 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '145834' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_145836.yaml b/carps/configs/problem/HPOB/all/cfg_5527_145836.yaml new file mode 100644 index 000000000..400a25ec4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_145836.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/145836 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '145836' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_145847.yaml b/carps/configs/problem/HPOB/all/cfg_5527_145847.yaml new file mode 100644 index 000000000..28f73dcf5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_145847.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/145847 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '145847' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_145853.yaml b/carps/configs/problem/HPOB/all/cfg_5527_145853.yaml new file mode 100644 index 000000000..4ef392db4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_145853.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/145853 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '145853' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_145854.yaml b/carps/configs/problem/HPOB/all/cfg_5527_145854.yaml new file mode 100644 index 000000000..60cf8a417 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_145854.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/145854 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '145854' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_145855.yaml b/carps/configs/problem/HPOB/all/cfg_5527_145855.yaml new file mode 100644 index 000000000..f35744fb4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_145855.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/145855 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '145855' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_145857.yaml b/carps/configs/problem/HPOB/all/cfg_5527_145857.yaml new file mode 100644 index 000000000..b3264a9c0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_145857.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/145857 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '145857' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_145862.yaml b/carps/configs/problem/HPOB/all/cfg_5527_145862.yaml new file mode 100644 index 000000000..a438efa3a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_145862.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/145862 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '145862' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_145872.yaml b/carps/configs/problem/HPOB/all/cfg_5527_145872.yaml new file mode 100644 index 000000000..fa7efa4fd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_145872.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/145872 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '145872' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_145878.yaml b/carps/configs/problem/HPOB/all/cfg_5527_145878.yaml new file mode 100644 index 000000000..c3a4e4c01 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_145878.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/145878 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '145878' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_145953.yaml b/carps/configs/problem/HPOB/all/cfg_5527_145953.yaml new file mode 100644 index 000000000..8474af829 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_145953.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/145953 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '145953' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_145972.yaml b/carps/configs/problem/HPOB/all/cfg_5527_145972.yaml new file mode 100644 index 000000000..5ccd15322 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_145972.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/145972 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '145972' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_145976.yaml b/carps/configs/problem/HPOB/all/cfg_5527_145976.yaml new file mode 100644 index 000000000..eaff1633a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_145976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/145976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '145976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_145979.yaml b/carps/configs/problem/HPOB/all/cfg_5527_145979.yaml new file mode 100644 index 000000000..55aaf0a20 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_145979.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/145979 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '145979' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_146012.yaml b/carps/configs/problem/HPOB/all/cfg_5527_146012.yaml new file mode 100644 index 000000000..4be4b39ba --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_146012.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/146012 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '146012' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_146064.yaml b/carps/configs/problem/HPOB/all/cfg_5527_146064.yaml new file mode 100644 index 000000000..ec8f2a2ff --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_146064.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/146064 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '146064' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_146065.yaml b/carps/configs/problem/HPOB/all/cfg_5527_146065.yaml new file mode 100644 index 000000000..76b4dfad4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_146065.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/146065 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '146065' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_146066.yaml b/carps/configs/problem/HPOB/all/cfg_5527_146066.yaml new file mode 100644 index 000000000..c09f825d5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_146066.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/146066 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '146066' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_146082.yaml b/carps/configs/problem/HPOB/all/cfg_5527_146082.yaml new file mode 100644 index 000000000..0233d9fdb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_146082.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/146082 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '146082' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_146085.yaml b/carps/configs/problem/HPOB/all/cfg_5527_146085.yaml new file mode 100644 index 000000000..6d331b5e3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_146085.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/146085 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '146085' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_14951.yaml b/carps/configs/problem/HPOB/all/cfg_5527_14951.yaml new file mode 100644 index 000000000..6f5dd4f1a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_14965.yaml b/carps/configs/problem/HPOB/all/cfg_5527_14965.yaml new file mode 100644 index 000000000..d85f5d2da --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_14965.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/14965 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '14965' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_14971.yaml b/carps/configs/problem/HPOB/all/cfg_5527_14971.yaml new file mode 100644 index 000000000..e72c7b05d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_14971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/14971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '14971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_219.yaml b/carps/configs/problem/HPOB/all/cfg_5527_219.yaml new file mode 100644 index 000000000..a0c71eb7a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_3.yaml b/carps/configs/problem/HPOB/all/cfg_5527_3.yaml new file mode 100644 index 000000000..0f7ec9d49 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_31.yaml b/carps/configs/problem/HPOB/all/cfg_5527_31.yaml new file mode 100644 index 000000000..cd16e081c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_34536.yaml b/carps/configs/problem/HPOB/all/cfg_5527_34536.yaml new file mode 100644 index 000000000..117fead87 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_34536.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/34536 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '34536' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_3485.yaml b/carps/configs/problem/HPOB/all/cfg_5527_3485.yaml new file mode 100644 index 000000000..8362e87f5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_3485.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/3485 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '3485' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_3492.yaml b/carps/configs/problem/HPOB/all/cfg_5527_3492.yaml new file mode 100644 index 000000000..76b4318bd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_3492.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/3492 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '3492' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_3493.yaml b/carps/configs/problem/HPOB/all/cfg_5527_3493.yaml new file mode 100644 index 000000000..f3d9e0b87 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_3494.yaml b/carps/configs/problem/HPOB/all/cfg_5527_3494.yaml new file mode 100644 index 000000000..3d9befe08 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_37.yaml b/carps/configs/problem/HPOB/all/cfg_5527_37.yaml new file mode 100644 index 000000000..98d6e2840 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_3889.yaml b/carps/configs/problem/HPOB/all/cfg_5527_3889.yaml new file mode 100644 index 000000000..74427fa12 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_3889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/3889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '3889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_3891.yaml b/carps/configs/problem/HPOB/all/cfg_5527_3891.yaml new file mode 100644 index 000000000..50f54653b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_3891.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/3891 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '3891' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_3896.yaml b/carps/configs/problem/HPOB/all/cfg_5527_3896.yaml new file mode 100644 index 000000000..2093d1e18 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_3899.yaml b/carps/configs/problem/HPOB/all/cfg_5527_3899.yaml new file mode 100644 index 000000000..b173026eb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_3899.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/3899 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '3899' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_3902.yaml b/carps/configs/problem/HPOB/all/cfg_5527_3902.yaml new file mode 100644 index 000000000..e8356ec0f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_3903.yaml b/carps/configs/problem/HPOB/all/cfg_5527_3903.yaml new file mode 100644 index 000000000..830460a8b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_3903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/3903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '3903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_3913.yaml b/carps/configs/problem/HPOB/all/cfg_5527_3913.yaml new file mode 100644 index 000000000..e09492adf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_3917.yaml b/carps/configs/problem/HPOB/all/cfg_5527_3917.yaml new file mode 100644 index 000000000..1eb7ab0af --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_3918.yaml b/carps/configs/problem/HPOB/all/cfg_5527_3918.yaml new file mode 100644 index 000000000..2db78d841 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_3918.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/3918 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '3918' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_3950.yaml b/carps/configs/problem/HPOB/all/cfg_5527_3950.yaml new file mode 100644 index 000000000..d3be315bb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_3950.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/3950 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '3950' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_3954.yaml b/carps/configs/problem/HPOB/all/cfg_5527_3954.yaml new file mode 100644 index 000000000..2e8842a23 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_43.yaml b/carps/configs/problem/HPOB/all/cfg_5527_43.yaml new file mode 100644 index 000000000..b98637d0b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_49.yaml b/carps/configs/problem/HPOB/all/cfg_5527_49.yaml new file mode 100644 index 000000000..07a22c37a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_6566.yaml b/carps/configs/problem/HPOB/all/cfg_5527_6566.yaml new file mode 100644 index 000000000..3dfe00d79 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_6566.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/6566 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '6566' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_7295.yaml b/carps/configs/problem/HPOB/all/cfg_5527_7295.yaml new file mode 100644 index 000000000..940de3bd9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_7295.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/7295 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '7295' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_9889.yaml b/carps/configs/problem/HPOB/all/cfg_5527_9889.yaml new file mode 100644 index 000000000..717b7e601 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_9914.yaml b/carps/configs/problem/HPOB/all/cfg_5527_9914.yaml new file mode 100644 index 000000000..9a564f2e4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_9946.yaml b/carps/configs/problem/HPOB/all/cfg_5527_9946.yaml new file mode 100644 index 000000000..772430788 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_9946.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/9946 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '9946' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_9952.yaml b/carps/configs/problem/HPOB/all/cfg_5527_9952.yaml new file mode 100644 index 000000000..608d071ad --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_9957.yaml b/carps/configs/problem/HPOB/all/cfg_5527_9957.yaml new file mode 100644 index 000000000..fee7bf5db --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_9967.yaml b/carps/configs/problem/HPOB/all/cfg_5527_9967.yaml new file mode 100644 index 000000000..cd423625e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_9967.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/9967 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '9967' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_9970.yaml b/carps/configs/problem/HPOB/all/cfg_5527_9970.yaml new file mode 100644 index 000000000..b2e6bcef0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_9970.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/9970 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '9970' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_9971.yaml b/carps/configs/problem/HPOB/all/cfg_5527_9971.yaml new file mode 100644 index 000000000..354d92ffe --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_9976.yaml b/carps/configs/problem/HPOB/all/cfg_5527_9976.yaml new file mode 100644 index 000000000..0e67cdf24 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_9976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/9976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '9976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_9977.yaml b/carps/configs/problem/HPOB/all/cfg_5527_9977.yaml new file mode 100644 index 000000000..40331939f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_9977.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/9977 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '9977' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_9978.yaml b/carps/configs/problem/HPOB/all/cfg_5527_9978.yaml new file mode 100644 index 000000000..492b0dd64 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_9978.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/9978 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '9978' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5527_9980.yaml b/carps/configs/problem/HPOB/all/cfg_5527_9980.yaml new file mode 100644 index 000000000..b0dabef02 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5527_9980.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5527/9980 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5527' + dataset_id: '9980' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5584_18.yaml b/carps/configs/problem/HPOB/all/cfg_5584_18.yaml new file mode 100644 index 000000000..072d40a2e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5584_18.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5584/18 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5584' + dataset_id: '18' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5584_47.yaml b/carps/configs/problem/HPOB/all/cfg_5584_47.yaml new file mode 100644 index 000000000..9dfb513e7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5584_47.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5584/47 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5584' + dataset_id: '47' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5604_145677.yaml b/carps/configs/problem/HPOB/all/cfg_5604_145677.yaml new file mode 100644 index 000000000..2b837d1f1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5604_145677.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5604/145677 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5604' + dataset_id: '145677' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 12 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 12 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5623_146085.yaml b/carps/configs/problem/HPOB/all/cfg_5623_146085.yaml new file mode 100644 index 000000000..24a7c5b3d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5623_146085.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5623/146085 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5623' + dataset_id: '146085' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5623_272.yaml b/carps/configs/problem/HPOB/all/cfg_5623_272.yaml new file mode 100644 index 000000000..4a29d2a6b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5623_272.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5623/272 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5623' + dataset_id: '272' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5623_282.yaml b/carps/configs/problem/HPOB/all/cfg_5623_282.yaml new file mode 100644 index 000000000..977de6756 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5623_282.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5623/282 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5623' + dataset_id: '282' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5624_219.yaml b/carps/configs/problem/HPOB/all/cfg_5624_219.yaml new file mode 100644 index 000000000..2c6f638c8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5624_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5624/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5624' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 7 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5624_272.yaml b/carps/configs/problem/HPOB/all/cfg_5624_272.yaml new file mode 100644 index 000000000..bfd85e9bf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5624_272.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5624/272 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5624' + dataset_id: '272' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 7 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5624_282.yaml b/carps/configs/problem/HPOB/all/cfg_5624_282.yaml new file mode 100644 index 000000000..7b9b406f3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5624_282.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5624/282 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5624' + dataset_id: '282' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 7 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5624_3954.yaml b/carps/configs/problem/HPOB/all/cfg_5624_3954.yaml new file mode 100644 index 000000000..10619f1c1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5624_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5624/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5624' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 7 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5624_43.yaml b/carps/configs/problem/HPOB/all/cfg_5624_43.yaml new file mode 100644 index 000000000..e3bf45535 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5624_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5624/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5624' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 7 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5626_145677.yaml b/carps/configs/problem/HPOB/all/cfg_5626_145677.yaml new file mode 100644 index 000000000..2771dd9ed --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5626_145677.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5626/145677 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5626' + dataset_id: '145677' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5626_23.yaml b/carps/configs/problem/HPOB/all/cfg_5626_23.yaml new file mode 100644 index 000000000..676531973 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5626_23.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5626/23 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5626' + dataset_id: '23' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5626_36.yaml b/carps/configs/problem/HPOB/all/cfg_5626_36.yaml new file mode 100644 index 000000000..43d191378 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5626_36.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5626/36 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5626' + dataset_id: '36' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_10093.yaml b/carps/configs/problem/HPOB/all/cfg_5636_10093.yaml new file mode 100644 index 000000000..83302d662 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_10093.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/10093 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '10093' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_10101.yaml b/carps/configs/problem/HPOB/all/cfg_5636_10101.yaml new file mode 100644 index 000000000..794009118 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_125923.yaml b/carps/configs/problem/HPOB/all/cfg_5636_125923.yaml new file mode 100644 index 000000000..a39929209 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_145804.yaml b/carps/configs/problem/HPOB/all/cfg_5636_145804.yaml new file mode 100644 index 000000000..f1145a20e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_145804.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/145804 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '145804' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_145833.yaml b/carps/configs/problem/HPOB/all/cfg_5636_145833.yaml new file mode 100644 index 000000000..0df602ed5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_145833.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/145833 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '145833' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_145834.yaml b/carps/configs/problem/HPOB/all/cfg_5636_145834.yaml new file mode 100644 index 000000000..da8600d4d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_145834.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/145834 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '145834' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_145836.yaml b/carps/configs/problem/HPOB/all/cfg_5636_145836.yaml new file mode 100644 index 000000000..f04a88611 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_145836.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/145836 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '145836' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_145839.yaml b/carps/configs/problem/HPOB/all/cfg_5636_145839.yaml new file mode 100644 index 000000000..3c1e638d6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_145839.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/145839 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '145839' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_145847.yaml b/carps/configs/problem/HPOB/all/cfg_5636_145847.yaml new file mode 100644 index 000000000..8ce94708c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_145847.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/145847 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '145847' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_145848.yaml b/carps/configs/problem/HPOB/all/cfg_5636_145848.yaml new file mode 100644 index 000000000..69f2056be --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_145848.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/145848 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '145848' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_145853.yaml b/carps/configs/problem/HPOB/all/cfg_5636_145853.yaml new file mode 100644 index 000000000..7d0b22c9e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_145853.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/145853 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '145853' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_145854.yaml b/carps/configs/problem/HPOB/all/cfg_5636_145854.yaml new file mode 100644 index 000000000..fffd2d147 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_145854.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/145854 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '145854' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_145855.yaml b/carps/configs/problem/HPOB/all/cfg_5636_145855.yaml new file mode 100644 index 000000000..b06dfa37a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_145855.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/145855 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '145855' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_145857.yaml b/carps/configs/problem/HPOB/all/cfg_5636_145857.yaml new file mode 100644 index 000000000..ab94a8b56 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_145857.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/145857 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '145857' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_145862.yaml b/carps/configs/problem/HPOB/all/cfg_5636_145862.yaml new file mode 100644 index 000000000..9e0adcf0e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_145862.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/145862 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '145862' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_145872.yaml b/carps/configs/problem/HPOB/all/cfg_5636_145872.yaml new file mode 100644 index 000000000..d5704c1f1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_145872.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/145872 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '145872' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_145878.yaml b/carps/configs/problem/HPOB/all/cfg_5636_145878.yaml new file mode 100644 index 000000000..44adce668 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_145878.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/145878 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '145878' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_145953.yaml b/carps/configs/problem/HPOB/all/cfg_5636_145953.yaml new file mode 100644 index 000000000..d1c22502e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_145953.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/145953 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '145953' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_145972.yaml b/carps/configs/problem/HPOB/all/cfg_5636_145972.yaml new file mode 100644 index 000000000..db303ccc9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_145972.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/145972 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '145972' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_145976.yaml b/carps/configs/problem/HPOB/all/cfg_5636_145976.yaml new file mode 100644 index 000000000..e494869f7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_145976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/145976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '145976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_145979.yaml b/carps/configs/problem/HPOB/all/cfg_5636_145979.yaml new file mode 100644 index 000000000..63491ec40 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_145979.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/145979 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '145979' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_146012.yaml b/carps/configs/problem/HPOB/all/cfg_5636_146012.yaml new file mode 100644 index 000000000..2aa9cb7d3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_146012.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/146012 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '146012' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_146064.yaml b/carps/configs/problem/HPOB/all/cfg_5636_146064.yaml new file mode 100644 index 000000000..c0be4ce45 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_146064.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/146064 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '146064' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_146065.yaml b/carps/configs/problem/HPOB/all/cfg_5636_146065.yaml new file mode 100644 index 000000000..63516670b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_146065.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/146065 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '146065' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_146066.yaml b/carps/configs/problem/HPOB/all/cfg_5636_146066.yaml new file mode 100644 index 000000000..7e96e83d9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_146066.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/146066 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '146066' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_146082.yaml b/carps/configs/problem/HPOB/all/cfg_5636_146082.yaml new file mode 100644 index 000000000..6f6619e11 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_146082.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/146082 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '146082' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_146085.yaml b/carps/configs/problem/HPOB/all/cfg_5636_146085.yaml new file mode 100644 index 000000000..b98e5411b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_146085.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/146085 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '146085' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_14951.yaml b/carps/configs/problem/HPOB/all/cfg_5636_14951.yaml new file mode 100644 index 000000000..c798e9548 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_14965.yaml b/carps/configs/problem/HPOB/all/cfg_5636_14965.yaml new file mode 100644 index 000000000..9349f45cb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_14965.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/14965 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '14965' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_14971.yaml b/carps/configs/problem/HPOB/all/cfg_5636_14971.yaml new file mode 100644 index 000000000..7e50a114e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_14971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/14971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '14971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_219.yaml b/carps/configs/problem/HPOB/all/cfg_5636_219.yaml new file mode 100644 index 000000000..100a5282f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_272.yaml b/carps/configs/problem/HPOB/all/cfg_5636_272.yaml new file mode 100644 index 000000000..9e8245625 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_272.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/272 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '272' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_282.yaml b/carps/configs/problem/HPOB/all/cfg_5636_282.yaml new file mode 100644 index 000000000..daa7e0bdc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_282.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/282 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '282' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_3.yaml b/carps/configs/problem/HPOB/all/cfg_5636_3.yaml new file mode 100644 index 000000000..b96503f08 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_31.yaml b/carps/configs/problem/HPOB/all/cfg_5636_31.yaml new file mode 100644 index 000000000..ebd1df786 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_34536.yaml b/carps/configs/problem/HPOB/all/cfg_5636_34536.yaml new file mode 100644 index 000000000..e850d116a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_34536.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/34536 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '34536' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_3485.yaml b/carps/configs/problem/HPOB/all/cfg_5636_3485.yaml new file mode 100644 index 000000000..9b97eeb04 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_3485.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/3485 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '3485' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_3492.yaml b/carps/configs/problem/HPOB/all/cfg_5636_3492.yaml new file mode 100644 index 000000000..c8dbcc58d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_3492.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/3492 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '3492' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_3493.yaml b/carps/configs/problem/HPOB/all/cfg_5636_3493.yaml new file mode 100644 index 000000000..e268f4b8b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_3494.yaml b/carps/configs/problem/HPOB/all/cfg_5636_3494.yaml new file mode 100644 index 000000000..b40ff1cbd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_37.yaml b/carps/configs/problem/HPOB/all/cfg_5636_37.yaml new file mode 100644 index 000000000..86e0d7b09 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_3889.yaml b/carps/configs/problem/HPOB/all/cfg_5636_3889.yaml new file mode 100644 index 000000000..393db1e5a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_3889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/3889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '3889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_3891.yaml b/carps/configs/problem/HPOB/all/cfg_5636_3891.yaml new file mode 100644 index 000000000..9569eb4ed --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_3891.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/3891 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '3891' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_3896.yaml b/carps/configs/problem/HPOB/all/cfg_5636_3896.yaml new file mode 100644 index 000000000..256d61ecf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_3899.yaml b/carps/configs/problem/HPOB/all/cfg_5636_3899.yaml new file mode 100644 index 000000000..daa25a8cb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_3899.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/3899 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '3899' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_3902.yaml b/carps/configs/problem/HPOB/all/cfg_5636_3902.yaml new file mode 100644 index 000000000..99a489ac3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_3903.yaml b/carps/configs/problem/HPOB/all/cfg_5636_3903.yaml new file mode 100644 index 000000000..9272c161a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_3903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/3903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '3903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_3913.yaml b/carps/configs/problem/HPOB/all/cfg_5636_3913.yaml new file mode 100644 index 000000000..222ca45d4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_3917.yaml b/carps/configs/problem/HPOB/all/cfg_5636_3917.yaml new file mode 100644 index 000000000..387360eb7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_3918.yaml b/carps/configs/problem/HPOB/all/cfg_5636_3918.yaml new file mode 100644 index 000000000..6e43b2b2a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_3918.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/3918 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '3918' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_3950.yaml b/carps/configs/problem/HPOB/all/cfg_5636_3950.yaml new file mode 100644 index 000000000..817c29f8f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_3950.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/3950 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '3950' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_3954.yaml b/carps/configs/problem/HPOB/all/cfg_5636_3954.yaml new file mode 100644 index 000000000..95ed180ac --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_43.yaml b/carps/configs/problem/HPOB/all/cfg_5636_43.yaml new file mode 100644 index 000000000..1279c1e60 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_6566.yaml b/carps/configs/problem/HPOB/all/cfg_5636_6566.yaml new file mode 100644 index 000000000..13d4d6ff3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_6566.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/6566 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '6566' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_7295.yaml b/carps/configs/problem/HPOB/all/cfg_5636_7295.yaml new file mode 100644 index 000000000..89b380060 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_7295.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/7295 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '7295' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_9889.yaml b/carps/configs/problem/HPOB/all/cfg_5636_9889.yaml new file mode 100644 index 000000000..eedde1564 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_9914.yaml b/carps/configs/problem/HPOB/all/cfg_5636_9914.yaml new file mode 100644 index 000000000..462667f78 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_9946.yaml b/carps/configs/problem/HPOB/all/cfg_5636_9946.yaml new file mode 100644 index 000000000..2bff5f164 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_9946.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/9946 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '9946' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_9952.yaml b/carps/configs/problem/HPOB/all/cfg_5636_9952.yaml new file mode 100644 index 000000000..3c8d7344a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_9957.yaml b/carps/configs/problem/HPOB/all/cfg_5636_9957.yaml new file mode 100644 index 000000000..172ed9495 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_9967.yaml b/carps/configs/problem/HPOB/all/cfg_5636_9967.yaml new file mode 100644 index 000000000..e8c228ff1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_9967.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/9967 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '9967' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_9970.yaml b/carps/configs/problem/HPOB/all/cfg_5636_9970.yaml new file mode 100644 index 000000000..57054354a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_9970.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/9970 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '9970' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_9971.yaml b/carps/configs/problem/HPOB/all/cfg_5636_9971.yaml new file mode 100644 index 000000000..3adb94dd8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_9976.yaml b/carps/configs/problem/HPOB/all/cfg_5636_9976.yaml new file mode 100644 index 000000000..ea0f2e629 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_9976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/9976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '9976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_9977.yaml b/carps/configs/problem/HPOB/all/cfg_5636_9977.yaml new file mode 100644 index 000000000..ec259940d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_9977.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/9977 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '9977' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_9980.yaml b/carps/configs/problem/HPOB/all/cfg_5636_9980.yaml new file mode 100644 index 000000000..16f012fa7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_9980.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/9980 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '9980' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5636_9983.yaml b/carps/configs/problem/HPOB/all/cfg_5636_9983.yaml new file mode 100644 index 000000000..1e1e82a3f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5636_9983.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5636/9983 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5636' + dataset_id: '9983' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5704_145677.yaml b/carps/configs/problem/HPOB/all/cfg_5704_145677.yaml new file mode 100644 index 000000000..93db24047 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5704_145677.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5704/145677 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5704' + dataset_id: '145677' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5788_145677.yaml b/carps/configs/problem/HPOB/all/cfg_5788_145677.yaml new file mode 100644 index 000000000..9ceb4349c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5788_145677.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5788/145677 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5788' + dataset_id: '145677' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5813_145677.yaml b/carps/configs/problem/HPOB/all/cfg_5813_145677.yaml new file mode 100644 index 000000000..4597bf377 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5813_145677.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5813/145677 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5813' + dataset_id: '145677' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_10093.yaml b/carps/configs/problem/HPOB/all/cfg_5859_10093.yaml new file mode 100644 index 000000000..d2c9df218 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_10093.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/10093 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '10093' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_10101.yaml b/carps/configs/problem/HPOB/all/cfg_5859_10101.yaml new file mode 100644 index 000000000..e70d8fd51 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_125923.yaml b/carps/configs/problem/HPOB/all/cfg_5859_125923.yaml new file mode 100644 index 000000000..cc05a7d54 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_145677.yaml b/carps/configs/problem/HPOB/all/cfg_5859_145677.yaml new file mode 100644 index 000000000..33bbb3ce6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_145677.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/145677 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '145677' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_145833.yaml b/carps/configs/problem/HPOB/all/cfg_5859_145833.yaml new file mode 100644 index 000000000..abadea286 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_145833.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/145833 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '145833' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_145834.yaml b/carps/configs/problem/HPOB/all/cfg_5859_145834.yaml new file mode 100644 index 000000000..13ca03640 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_145834.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/145834 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '145834' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_145836.yaml b/carps/configs/problem/HPOB/all/cfg_5859_145836.yaml new file mode 100644 index 000000000..e41858d62 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_145836.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/145836 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '145836' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_145839.yaml b/carps/configs/problem/HPOB/all/cfg_5859_145839.yaml new file mode 100644 index 000000000..c66cd31ba --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_145839.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/145839 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '145839' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_145848.yaml b/carps/configs/problem/HPOB/all/cfg_5859_145848.yaml new file mode 100644 index 000000000..b49924fb7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_145848.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/145848 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '145848' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_145853.yaml b/carps/configs/problem/HPOB/all/cfg_5859_145853.yaml new file mode 100644 index 000000000..6bf62625b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_145853.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/145853 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '145853' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_145854.yaml b/carps/configs/problem/HPOB/all/cfg_5859_145854.yaml new file mode 100644 index 000000000..82696ed13 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_145854.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/145854 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '145854' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_145855.yaml b/carps/configs/problem/HPOB/all/cfg_5859_145855.yaml new file mode 100644 index 000000000..8af73d196 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_145855.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/145855 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '145855' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_145862.yaml b/carps/configs/problem/HPOB/all/cfg_5859_145862.yaml new file mode 100644 index 000000000..bbc22696b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_145862.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/145862 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '145862' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_145872.yaml b/carps/configs/problem/HPOB/all/cfg_5859_145872.yaml new file mode 100644 index 000000000..d35b42fb0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_145872.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/145872 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '145872' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_145878.yaml b/carps/configs/problem/HPOB/all/cfg_5859_145878.yaml new file mode 100644 index 000000000..7e910888f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_145878.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/145878 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '145878' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_145972.yaml b/carps/configs/problem/HPOB/all/cfg_5859_145972.yaml new file mode 100644 index 000000000..fa788af48 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_145972.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/145972 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '145972' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_145979.yaml b/carps/configs/problem/HPOB/all/cfg_5859_145979.yaml new file mode 100644 index 000000000..83e4fea34 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_145979.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/145979 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '145979' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_146064.yaml b/carps/configs/problem/HPOB/all/cfg_5859_146064.yaml new file mode 100644 index 000000000..72fa246ba --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_146064.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/146064 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '146064' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_146065.yaml b/carps/configs/problem/HPOB/all/cfg_5859_146065.yaml new file mode 100644 index 000000000..60d36eadd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_146065.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/146065 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '146065' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_146066.yaml b/carps/configs/problem/HPOB/all/cfg_5859_146066.yaml new file mode 100644 index 000000000..e589b0068 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_146066.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/146066 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '146066' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_146082.yaml b/carps/configs/problem/HPOB/all/cfg_5859_146082.yaml new file mode 100644 index 000000000..afcfc006f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_146082.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/146082 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '146082' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_14951.yaml b/carps/configs/problem/HPOB/all/cfg_5859_14951.yaml new file mode 100644 index 000000000..f801ab60c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_14952.yaml b/carps/configs/problem/HPOB/all/cfg_5859_14952.yaml new file mode 100644 index 000000000..ab12e9a9b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_14952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/14952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '14952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_14965.yaml b/carps/configs/problem/HPOB/all/cfg_5859_14965.yaml new file mode 100644 index 000000000..7e7514df8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_14965.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/14965 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '14965' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_14966.yaml b/carps/configs/problem/HPOB/all/cfg_5859_14966.yaml new file mode 100644 index 000000000..e7e438b77 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_14966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/14966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '14966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_14971.yaml b/carps/configs/problem/HPOB/all/cfg_5859_14971.yaml new file mode 100644 index 000000000..51e3edcfa --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_14971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/14971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '14971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_219.yaml b/carps/configs/problem/HPOB/all/cfg_5859_219.yaml new file mode 100644 index 000000000..a557ed04d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_272.yaml b/carps/configs/problem/HPOB/all/cfg_5859_272.yaml new file mode 100644 index 000000000..2610d9911 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_272.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/272 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '272' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_282.yaml b/carps/configs/problem/HPOB/all/cfg_5859_282.yaml new file mode 100644 index 000000000..8264df0fe --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_282.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/282 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '282' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_3.yaml b/carps/configs/problem/HPOB/all/cfg_5859_3.yaml new file mode 100644 index 000000000..03a78fb59 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_31.yaml b/carps/configs/problem/HPOB/all/cfg_5859_31.yaml new file mode 100644 index 000000000..373be1232 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_34536.yaml b/carps/configs/problem/HPOB/all/cfg_5859_34536.yaml new file mode 100644 index 000000000..e013781b9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_34536.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/34536 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '34536' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_34537.yaml b/carps/configs/problem/HPOB/all/cfg_5859_34537.yaml new file mode 100644 index 000000000..d9f1e48ad --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_34537.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/34537 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '34537' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_34539.yaml b/carps/configs/problem/HPOB/all/cfg_5859_34539.yaml new file mode 100644 index 000000000..f6964cdf7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_34539.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/34539 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '34539' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_3485.yaml b/carps/configs/problem/HPOB/all/cfg_5859_3485.yaml new file mode 100644 index 000000000..d1e571545 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_3485.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/3485 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '3485' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_3492.yaml b/carps/configs/problem/HPOB/all/cfg_5859_3492.yaml new file mode 100644 index 000000000..4f8b5bdf4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_3492.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/3492 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '3492' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_3493.yaml b/carps/configs/problem/HPOB/all/cfg_5859_3493.yaml new file mode 100644 index 000000000..0af6e2498 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_3494.yaml b/carps/configs/problem/HPOB/all/cfg_5859_3494.yaml new file mode 100644 index 000000000..ec2984515 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_37.yaml b/carps/configs/problem/HPOB/all/cfg_5859_37.yaml new file mode 100644 index 000000000..9fdb96558 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_3889.yaml b/carps/configs/problem/HPOB/all/cfg_5859_3889.yaml new file mode 100644 index 000000000..021b15f87 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_3889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/3889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '3889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_3891.yaml b/carps/configs/problem/HPOB/all/cfg_5859_3891.yaml new file mode 100644 index 000000000..c6ca6e465 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_3891.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/3891 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '3891' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_3896.yaml b/carps/configs/problem/HPOB/all/cfg_5859_3896.yaml new file mode 100644 index 000000000..a5b4acc43 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_3899.yaml b/carps/configs/problem/HPOB/all/cfg_5859_3899.yaml new file mode 100644 index 000000000..54f42fc6b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_3899.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/3899 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '3899' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_3902.yaml b/carps/configs/problem/HPOB/all/cfg_5859_3902.yaml new file mode 100644 index 000000000..0da3ae405 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_3903.yaml b/carps/configs/problem/HPOB/all/cfg_5859_3903.yaml new file mode 100644 index 000000000..4d01f8baa --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_3903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/3903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '3903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_3913.yaml b/carps/configs/problem/HPOB/all/cfg_5859_3913.yaml new file mode 100644 index 000000000..6157a861f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_3917.yaml b/carps/configs/problem/HPOB/all/cfg_5859_3917.yaml new file mode 100644 index 000000000..4eb04898c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_3918.yaml b/carps/configs/problem/HPOB/all/cfg_5859_3918.yaml new file mode 100644 index 000000000..af4e1b17d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_3918.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/3918 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '3918' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_3950.yaml b/carps/configs/problem/HPOB/all/cfg_5859_3950.yaml new file mode 100644 index 000000000..c77d281b7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_3950.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/3950 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '3950' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_3954.yaml b/carps/configs/problem/HPOB/all/cfg_5859_3954.yaml new file mode 100644 index 000000000..928a134d7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_43.yaml b/carps/configs/problem/HPOB/all/cfg_5859_43.yaml new file mode 100644 index 000000000..92509e7ff --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_49.yaml b/carps/configs/problem/HPOB/all/cfg_5859_49.yaml new file mode 100644 index 000000000..49b4788c9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_6566.yaml b/carps/configs/problem/HPOB/all/cfg_5859_6566.yaml new file mode 100644 index 000000000..04568ea58 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_6566.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/6566 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '6566' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_7295.yaml b/carps/configs/problem/HPOB/all/cfg_5859_7295.yaml new file mode 100644 index 000000000..83eecf082 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_7295.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/7295 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '7295' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_9889.yaml b/carps/configs/problem/HPOB/all/cfg_5859_9889.yaml new file mode 100644 index 000000000..8f93dd308 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_9910.yaml b/carps/configs/problem/HPOB/all/cfg_5859_9910.yaml new file mode 100644 index 000000000..13efd257b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_9910.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/9910 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '9910' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_9911.yaml b/carps/configs/problem/HPOB/all/cfg_5859_9911.yaml new file mode 100644 index 000000000..868a726f3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_9911.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/9911 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '9911' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_9914.yaml b/carps/configs/problem/HPOB/all/cfg_5859_9914.yaml new file mode 100644 index 000000000..6b8424ebf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_9946.yaml b/carps/configs/problem/HPOB/all/cfg_5859_9946.yaml new file mode 100644 index 000000000..78105fe68 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_9946.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/9946 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '9946' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_9952.yaml b/carps/configs/problem/HPOB/all/cfg_5859_9952.yaml new file mode 100644 index 000000000..325302484 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_9957.yaml b/carps/configs/problem/HPOB/all/cfg_5859_9957.yaml new file mode 100644 index 000000000..09f603fdd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_9967.yaml b/carps/configs/problem/HPOB/all/cfg_5859_9967.yaml new file mode 100644 index 000000000..64a72d404 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_9967.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/9967 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '9967' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_9970.yaml b/carps/configs/problem/HPOB/all/cfg_5859_9970.yaml new file mode 100644 index 000000000..05efac7d1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_9970.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/9970 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '9970' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_9971.yaml b/carps/configs/problem/HPOB/all/cfg_5859_9971.yaml new file mode 100644 index 000000000..e078d5ed2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_9976.yaml b/carps/configs/problem/HPOB/all/cfg_5859_9976.yaml new file mode 100644 index 000000000..b0fbdd064 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_9976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/9976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '9976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_9977.yaml b/carps/configs/problem/HPOB/all/cfg_5859_9977.yaml new file mode 100644 index 000000000..c6c3ea4bf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_9977.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/9977 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '9977' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_9978.yaml b/carps/configs/problem/HPOB/all/cfg_5859_9978.yaml new file mode 100644 index 000000000..63fd3aecf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_9978.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/9978 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '9978' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_9980.yaml b/carps/configs/problem/HPOB/all/cfg_5859_9980.yaml new file mode 100644 index 000000000..400cd95dc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_9980.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/9980 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '9980' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5859_9983.yaml b/carps/configs/problem/HPOB/all/cfg_5859_9983.yaml new file mode 100644 index 000000000..dcea392eb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5859_9983.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5859/9983 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5859' + dataset_id: '9983' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_10101.yaml b/carps/configs/problem/HPOB/all/cfg_5860_10101.yaml new file mode 100644 index 000000000..c91c0c3e6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_125923.yaml b/carps/configs/problem/HPOB/all/cfg_5860_125923.yaml new file mode 100644 index 000000000..3c91cb90f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_14951.yaml b/carps/configs/problem/HPOB/all/cfg_5860_14951.yaml new file mode 100644 index 000000000..32f22c2a9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_14965.yaml b/carps/configs/problem/HPOB/all/cfg_5860_14965.yaml new file mode 100644 index 000000000..c1afdc5c3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_14965.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/14965 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '14965' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_14971.yaml b/carps/configs/problem/HPOB/all/cfg_5860_14971.yaml new file mode 100644 index 000000000..e82d5a135 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_14971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/14971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '14971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_272.yaml b/carps/configs/problem/HPOB/all/cfg_5860_272.yaml new file mode 100644 index 000000000..b843ca9b8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_272.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/272 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '272' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_282.yaml b/carps/configs/problem/HPOB/all/cfg_5860_282.yaml new file mode 100644 index 000000000..c02b1ce0f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_282.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/282 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '282' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_3.yaml b/carps/configs/problem/HPOB/all/cfg_5860_3.yaml new file mode 100644 index 000000000..46d7767fb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_3485.yaml b/carps/configs/problem/HPOB/all/cfg_5860_3485.yaml new file mode 100644 index 000000000..bdbbf5521 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_3485.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/3485 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '3485' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_3492.yaml b/carps/configs/problem/HPOB/all/cfg_5860_3492.yaml new file mode 100644 index 000000000..5d4173625 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_3492.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/3492 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '3492' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_3493.yaml b/carps/configs/problem/HPOB/all/cfg_5860_3493.yaml new file mode 100644 index 000000000..4fd4df8ed --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_37.yaml b/carps/configs/problem/HPOB/all/cfg_5860_37.yaml new file mode 100644 index 000000000..eb681e7f7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_3889.yaml b/carps/configs/problem/HPOB/all/cfg_5860_3889.yaml new file mode 100644 index 000000000..60fe85fb6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_3889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/3889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '3889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_3891.yaml b/carps/configs/problem/HPOB/all/cfg_5860_3891.yaml new file mode 100644 index 000000000..efde6f9ba --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_3891.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/3891 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '3891' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_3896.yaml b/carps/configs/problem/HPOB/all/cfg_5860_3896.yaml new file mode 100644 index 000000000..abbd2083c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_3899.yaml b/carps/configs/problem/HPOB/all/cfg_5860_3899.yaml new file mode 100644 index 000000000..7b467dc01 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_3899.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/3899 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '3899' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_3902.yaml b/carps/configs/problem/HPOB/all/cfg_5860_3902.yaml new file mode 100644 index 000000000..47df74dcd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_3903.yaml b/carps/configs/problem/HPOB/all/cfg_5860_3903.yaml new file mode 100644 index 000000000..30b3e7d12 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_3903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/3903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '3903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_3917.yaml b/carps/configs/problem/HPOB/all/cfg_5860_3917.yaml new file mode 100644 index 000000000..07a2640b8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_3950.yaml b/carps/configs/problem/HPOB/all/cfg_5860_3950.yaml new file mode 100644 index 000000000..01f0b9532 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_3950.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/3950 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '3950' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_3954.yaml b/carps/configs/problem/HPOB/all/cfg_5860_3954.yaml new file mode 100644 index 000000000..313f1048d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_49.yaml b/carps/configs/problem/HPOB/all/cfg_5860_49.yaml new file mode 100644 index 000000000..d8640364c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_6566.yaml b/carps/configs/problem/HPOB/all/cfg_5860_6566.yaml new file mode 100644 index 000000000..a8d1fb27c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_6566.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/6566 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '6566' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_7295.yaml b/carps/configs/problem/HPOB/all/cfg_5860_7295.yaml new file mode 100644 index 000000000..a248dc2b3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_7295.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/7295 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '7295' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_9889.yaml b/carps/configs/problem/HPOB/all/cfg_5860_9889.yaml new file mode 100644 index 000000000..e9e64e163 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_9952.yaml b/carps/configs/problem/HPOB/all/cfg_5860_9952.yaml new file mode 100644 index 000000000..a2570daf8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_9957.yaml b/carps/configs/problem/HPOB/all/cfg_5860_9957.yaml new file mode 100644 index 000000000..1de12fd67 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_9967.yaml b/carps/configs/problem/HPOB/all/cfg_5860_9967.yaml new file mode 100644 index 000000000..54b49e240 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_9967.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/9967 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '9967' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_9970.yaml b/carps/configs/problem/HPOB/all/cfg_5860_9970.yaml new file mode 100644 index 000000000..e36266760 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_9970.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/9970 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '9970' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_9976.yaml b/carps/configs/problem/HPOB/all/cfg_5860_9976.yaml new file mode 100644 index 000000000..3f1e833d4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_9976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/9976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '9976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_9977.yaml b/carps/configs/problem/HPOB/all/cfg_5860_9977.yaml new file mode 100644 index 000000000..5810348f5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_9977.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/9977 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '9977' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_9978.yaml b/carps/configs/problem/HPOB/all/cfg_5860_9978.yaml new file mode 100644 index 000000000..f36e3a141 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_9978.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/9978 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '9978' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5860_9980.yaml b/carps/configs/problem/HPOB/all/cfg_5860_9980.yaml new file mode 100644 index 000000000..013bab3e0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5860_9980.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5860/9980 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '9980' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_11.yaml b/carps/configs/problem/HPOB/all/cfg_5886_11.yaml new file mode 100644 index 000000000..695bf0954 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_11.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/11 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '11' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_12.yaml b/carps/configs/problem/HPOB/all/cfg_5886_12.yaml new file mode 100644 index 000000000..df679a406 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_12.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/12 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '12' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_14.yaml b/carps/configs/problem/HPOB/all/cfg_5886_14.yaml new file mode 100644 index 000000000..7b514b299 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_14.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/14 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '14' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_145685.yaml b/carps/configs/problem/HPOB/all/cfg_5886_145685.yaml new file mode 100644 index 000000000..2daaa3f64 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_145685.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/145685 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '145685' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_18.yaml b/carps/configs/problem/HPOB/all/cfg_5886_18.yaml new file mode 100644 index 000000000..511036414 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_18.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/18 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '18' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_2068.yaml b/carps/configs/problem/HPOB/all/cfg_5886_2068.yaml new file mode 100644 index 000000000..83a19bbd3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_2068.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/2068 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '2068' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_2071.yaml b/carps/configs/problem/HPOB/all/cfg_5886_2071.yaml new file mode 100644 index 000000000..80558f764 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_2071.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/2071 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '2071' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_2073.yaml b/carps/configs/problem/HPOB/all/cfg_5886_2073.yaml new file mode 100644 index 000000000..a6b1fafe2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_2073.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/2073 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '2073' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_2074.yaml b/carps/configs/problem/HPOB/all/cfg_5886_2074.yaml new file mode 100644 index 000000000..21b2047ad --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_2074.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/2074 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '2074' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_2075.yaml b/carps/configs/problem/HPOB/all/cfg_5886_2075.yaml new file mode 100644 index 000000000..d18c39c7d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_2075.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/2075 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '2075' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_2076.yaml b/carps/configs/problem/HPOB/all/cfg_5886_2076.yaml new file mode 100644 index 000000000..7c5b9f7d0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_2076.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/2076 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '2076' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_2077.yaml b/carps/configs/problem/HPOB/all/cfg_5886_2077.yaml new file mode 100644 index 000000000..372ac2e5d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_2077.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/2077 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '2077' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_2079.yaml b/carps/configs/problem/HPOB/all/cfg_5886_2079.yaml new file mode 100644 index 000000000..32a8093d9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_2079.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/2079 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '2079' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_219.yaml b/carps/configs/problem/HPOB/all/cfg_5886_219.yaml new file mode 100644 index 000000000..7620aa8a0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_22.yaml b/carps/configs/problem/HPOB/all/cfg_5886_22.yaml new file mode 100644 index 000000000..d9aebfec2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_22.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/22 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '22' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_23.yaml b/carps/configs/problem/HPOB/all/cfg_5886_23.yaml new file mode 100644 index 000000000..7f4b854b3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_23.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/23 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '23' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_24.yaml b/carps/configs/problem/HPOB/all/cfg_5886_24.yaml new file mode 100644 index 000000000..c64322b87 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_24.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/24 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '24' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_26.yaml b/carps/configs/problem/HPOB/all/cfg_5886_26.yaml new file mode 100644 index 000000000..2cfcb6f29 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_26.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/26 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '26' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_28.yaml b/carps/configs/problem/HPOB/all/cfg_5886_28.yaml new file mode 100644 index 000000000..b0168c0c5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_28.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/28 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '28' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_29.yaml b/carps/configs/problem/HPOB/all/cfg_5886_29.yaml new file mode 100644 index 000000000..0913ee0ea --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_30.yaml b/carps/configs/problem/HPOB/all/cfg_5886_30.yaml new file mode 100644 index 000000000..9b2c82947 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_30.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/30 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '30' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_31.yaml b/carps/configs/problem/HPOB/all/cfg_5886_31.yaml new file mode 100644 index 000000000..609790ad7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_32.yaml b/carps/configs/problem/HPOB/all/cfg_5886_32.yaml new file mode 100644 index 000000000..24d7baf64 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_32.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/32 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '32' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_33.yaml b/carps/configs/problem/HPOB/all/cfg_5886_33.yaml new file mode 100644 index 000000000..ed7ed9b45 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_33.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/33 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '33' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_36.yaml b/carps/configs/problem/HPOB/all/cfg_5886_36.yaml new file mode 100644 index 000000000..a5bf7ac1f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_36.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/36 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '36' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_37.yaml b/carps/configs/problem/HPOB/all/cfg_5886_37.yaml new file mode 100644 index 000000000..50fcdc15c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_3951.yaml b/carps/configs/problem/HPOB/all/cfg_5886_3951.yaml new file mode 100644 index 000000000..ddc2ce94f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_3951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/3951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '3951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_41.yaml b/carps/configs/problem/HPOB/all/cfg_5886_41.yaml new file mode 100644 index 000000000..3cbdd5297 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_41.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/41 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '41' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_45.yaml b/carps/configs/problem/HPOB/all/cfg_5886_45.yaml new file mode 100644 index 000000000..9682ebf8d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_45.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/45 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '45' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_49.yaml b/carps/configs/problem/HPOB/all/cfg_5886_49.yaml new file mode 100644 index 000000000..c02c1d809 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_53.yaml b/carps/configs/problem/HPOB/all/cfg_5886_53.yaml new file mode 100644 index 000000000..eff3944ac --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_53.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/53 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '53' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_58.yaml b/carps/configs/problem/HPOB/all/cfg_5886_58.yaml new file mode 100644 index 000000000..7a68db321 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_58.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/58 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '58' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5886_6.yaml b/carps/configs/problem/HPOB/all/cfg_5886_6.yaml new file mode 100644 index 000000000..aeb899b56 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5886_6.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5886/6 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '6' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_10101.yaml b/carps/configs/problem/HPOB/all/cfg_5889_10101.yaml new file mode 100644 index 000000000..b69faae6e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_125923.yaml b/carps/configs/problem/HPOB/all/cfg_5889_125923.yaml new file mode 100644 index 000000000..bb47e0a60 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_14971.yaml b/carps/configs/problem/HPOB/all/cfg_5889_14971.yaml new file mode 100644 index 000000000..a242907df --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_14971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/14971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '14971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_31.yaml b/carps/configs/problem/HPOB/all/cfg_5889_31.yaml new file mode 100644 index 000000000..b8bb9d254 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_3493.yaml b/carps/configs/problem/HPOB/all/cfg_5889_3493.yaml new file mode 100644 index 000000000..f27feabef --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_3494.yaml b/carps/configs/problem/HPOB/all/cfg_5889_3494.yaml new file mode 100644 index 000000000..99c43d21a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_3889.yaml b/carps/configs/problem/HPOB/all/cfg_5889_3889.yaml new file mode 100644 index 000000000..d16e6f243 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_3889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/3889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '3889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_3891.yaml b/carps/configs/problem/HPOB/all/cfg_5889_3891.yaml new file mode 100644 index 000000000..d9c653d16 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_3891.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/3891 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '3891' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_3913.yaml b/carps/configs/problem/HPOB/all/cfg_5889_3913.yaml new file mode 100644 index 000000000..74b92c621 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_3917.yaml b/carps/configs/problem/HPOB/all/cfg_5889_3917.yaml new file mode 100644 index 000000000..6e6c40773 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_3918.yaml b/carps/configs/problem/HPOB/all/cfg_5889_3918.yaml new file mode 100644 index 000000000..2d567e6e0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_3918.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/3918 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '3918' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_3950.yaml b/carps/configs/problem/HPOB/all/cfg_5889_3950.yaml new file mode 100644 index 000000000..c34e20eff --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_3950.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/3950 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '3950' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_3954.yaml b/carps/configs/problem/HPOB/all/cfg_5889_3954.yaml new file mode 100644 index 000000000..2c4d94679 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_49.yaml b/carps/configs/problem/HPOB/all/cfg_5889_49.yaml new file mode 100644 index 000000000..d8035c96c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_6566.yaml b/carps/configs/problem/HPOB/all/cfg_5889_6566.yaml new file mode 100644 index 000000000..a6d1540a1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_6566.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/6566 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '6566' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_7295.yaml b/carps/configs/problem/HPOB/all/cfg_5889_7295.yaml new file mode 100644 index 000000000..9307e5c1c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_7295.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/7295 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '7295' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_9946.yaml b/carps/configs/problem/HPOB/all/cfg_5889_9946.yaml new file mode 100644 index 000000000..870dc03e8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_9946.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/9946 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '9946' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_9957.yaml b/carps/configs/problem/HPOB/all/cfg_5889_9957.yaml new file mode 100644 index 000000000..388d6b373 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_9970.yaml b/carps/configs/problem/HPOB/all/cfg_5889_9970.yaml new file mode 100644 index 000000000..8f2119a0f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_9970.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/9970 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '9970' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_9971.yaml b/carps/configs/problem/HPOB/all/cfg_5889_9971.yaml new file mode 100644 index 000000000..b71f6c769 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_9977.yaml b/carps/configs/problem/HPOB/all/cfg_5889_9977.yaml new file mode 100644 index 000000000..14195f800 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_9977.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/9977 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '9977' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_9978.yaml b/carps/configs/problem/HPOB/all/cfg_5889_9978.yaml new file mode 100644 index 000000000..8bbf7f268 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_9978.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/9978 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '9978' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_9980.yaml b/carps/configs/problem/HPOB/all/cfg_5889_9980.yaml new file mode 100644 index 000000000..5628e66be --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_9980.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/9980 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '9980' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5889_9983.yaml b/carps/configs/problem/HPOB/all/cfg_5889_9983.yaml new file mode 100644 index 000000000..4ab36d4b2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5889_9983.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5889/9983 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5889' + dataset_id: '9983' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_125923.yaml b/carps/configs/problem/HPOB/all/cfg_5890_125923.yaml new file mode 100644 index 000000000..a99b95f87 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_145677.yaml b/carps/configs/problem/HPOB/all/cfg_5890_145677.yaml new file mode 100644 index 000000000..4cd0a604d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_145677.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/145677 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '145677' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_145804.yaml b/carps/configs/problem/HPOB/all/cfg_5890_145804.yaml new file mode 100644 index 000000000..e9f33542e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_145804.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/145804 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '145804' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_145833.yaml b/carps/configs/problem/HPOB/all/cfg_5890_145833.yaml new file mode 100644 index 000000000..c04ad86e4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_145833.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/145833 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '145833' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_145834.yaml b/carps/configs/problem/HPOB/all/cfg_5890_145834.yaml new file mode 100644 index 000000000..ea805a5c5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_145834.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/145834 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '145834' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_145836.yaml b/carps/configs/problem/HPOB/all/cfg_5890_145836.yaml new file mode 100644 index 000000000..9e63bd690 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_145836.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/145836 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '145836' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_145839.yaml b/carps/configs/problem/HPOB/all/cfg_5890_145839.yaml new file mode 100644 index 000000000..f2764f790 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_145839.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/145839 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '145839' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_145847.yaml b/carps/configs/problem/HPOB/all/cfg_5890_145847.yaml new file mode 100644 index 000000000..b62f96ceb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_145847.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/145847 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '145847' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_145853.yaml b/carps/configs/problem/HPOB/all/cfg_5890_145853.yaml new file mode 100644 index 000000000..bb3c87a4f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_145853.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/145853 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '145853' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_145854.yaml b/carps/configs/problem/HPOB/all/cfg_5890_145854.yaml new file mode 100644 index 000000000..d5e8f1550 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_145854.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/145854 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '145854' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_145855.yaml b/carps/configs/problem/HPOB/all/cfg_5890_145855.yaml new file mode 100644 index 000000000..804e6f0ea --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_145855.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/145855 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '145855' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_145857.yaml b/carps/configs/problem/HPOB/all/cfg_5890_145857.yaml new file mode 100644 index 000000000..49f59712c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_145857.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/145857 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '145857' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_145862.yaml b/carps/configs/problem/HPOB/all/cfg_5890_145862.yaml new file mode 100644 index 000000000..bb195b77d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_145862.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/145862 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '145862' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_145872.yaml b/carps/configs/problem/HPOB/all/cfg_5890_145872.yaml new file mode 100644 index 000000000..411a4a160 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_145872.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/145872 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '145872' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_145878.yaml b/carps/configs/problem/HPOB/all/cfg_5890_145878.yaml new file mode 100644 index 000000000..cd47c01a7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_145878.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/145878 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '145878' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_145953.yaml b/carps/configs/problem/HPOB/all/cfg_5890_145953.yaml new file mode 100644 index 000000000..27626ec11 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_145953.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/145953 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '145953' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_145972.yaml b/carps/configs/problem/HPOB/all/cfg_5890_145972.yaml new file mode 100644 index 000000000..3d1348dda --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_145972.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/145972 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '145972' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_145976.yaml b/carps/configs/problem/HPOB/all/cfg_5890_145976.yaml new file mode 100644 index 000000000..395c6e6c7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_145976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/145976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '145976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_145979.yaml b/carps/configs/problem/HPOB/all/cfg_5890_145979.yaml new file mode 100644 index 000000000..80a93de86 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_145979.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/145979 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '145979' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_146012.yaml b/carps/configs/problem/HPOB/all/cfg_5890_146012.yaml new file mode 100644 index 000000000..d35c32e2f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_146012.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/146012 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '146012' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_146064.yaml b/carps/configs/problem/HPOB/all/cfg_5890_146064.yaml new file mode 100644 index 000000000..f6293237d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_146064.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/146064 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '146064' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_146065.yaml b/carps/configs/problem/HPOB/all/cfg_5890_146065.yaml new file mode 100644 index 000000000..03cfc045f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_146065.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/146065 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '146065' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_146066.yaml b/carps/configs/problem/HPOB/all/cfg_5890_146066.yaml new file mode 100644 index 000000000..be7d86640 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_146066.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/146066 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '146066' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_146082.yaml b/carps/configs/problem/HPOB/all/cfg_5890_146082.yaml new file mode 100644 index 000000000..f82f41b58 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_146082.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/146082 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '146082' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_146085.yaml b/carps/configs/problem/HPOB/all/cfg_5890_146085.yaml new file mode 100644 index 000000000..206ab9cd1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_146085.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/146085 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '146085' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_14951.yaml b/carps/configs/problem/HPOB/all/cfg_5890_14951.yaml new file mode 100644 index 000000000..0b3c98fbc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_14965.yaml b/carps/configs/problem/HPOB/all/cfg_5890_14965.yaml new file mode 100644 index 000000000..b8758d17f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_14965.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/14965 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '14965' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_14966.yaml b/carps/configs/problem/HPOB/all/cfg_5890_14966.yaml new file mode 100644 index 000000000..2a09bc329 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_14966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/14966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '14966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_14971.yaml b/carps/configs/problem/HPOB/all/cfg_5890_14971.yaml new file mode 100644 index 000000000..155f632cf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_14971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/14971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '14971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_219.yaml b/carps/configs/problem/HPOB/all/cfg_5890_219.yaml new file mode 100644 index 000000000..b535564f0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_3.yaml b/carps/configs/problem/HPOB/all/cfg_5890_3.yaml new file mode 100644 index 000000000..7e79c7f59 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_31.yaml b/carps/configs/problem/HPOB/all/cfg_5890_31.yaml new file mode 100644 index 000000000..edd212640 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_34536.yaml b/carps/configs/problem/HPOB/all/cfg_5890_34536.yaml new file mode 100644 index 000000000..9c8366137 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_34536.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/34536 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '34536' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_34537.yaml b/carps/configs/problem/HPOB/all/cfg_5890_34537.yaml new file mode 100644 index 000000000..417a9bee2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_34537.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/34537 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '34537' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_3485.yaml b/carps/configs/problem/HPOB/all/cfg_5890_3485.yaml new file mode 100644 index 000000000..de969cd3b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_3485.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/3485 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '3485' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_3492.yaml b/carps/configs/problem/HPOB/all/cfg_5890_3492.yaml new file mode 100644 index 000000000..561df76a2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_3492.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/3492 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '3492' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_3493.yaml b/carps/configs/problem/HPOB/all/cfg_5890_3493.yaml new file mode 100644 index 000000000..135335a0d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_3494.yaml b/carps/configs/problem/HPOB/all/cfg_5890_3494.yaml new file mode 100644 index 000000000..8f9b30e9d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_37.yaml b/carps/configs/problem/HPOB/all/cfg_5890_37.yaml new file mode 100644 index 000000000..7e55ccebf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_3889.yaml b/carps/configs/problem/HPOB/all/cfg_5890_3889.yaml new file mode 100644 index 000000000..f3cae2f06 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_3889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/3889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '3889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_3891.yaml b/carps/configs/problem/HPOB/all/cfg_5890_3891.yaml new file mode 100644 index 000000000..6cda8dded --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_3891.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/3891 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '3891' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_3896.yaml b/carps/configs/problem/HPOB/all/cfg_5890_3896.yaml new file mode 100644 index 000000000..4dc9fdaa2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_3899.yaml b/carps/configs/problem/HPOB/all/cfg_5890_3899.yaml new file mode 100644 index 000000000..74805c6b9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_3899.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/3899 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '3899' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_3902.yaml b/carps/configs/problem/HPOB/all/cfg_5890_3902.yaml new file mode 100644 index 000000000..3c85727a5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_3903.yaml b/carps/configs/problem/HPOB/all/cfg_5890_3903.yaml new file mode 100644 index 000000000..80f0d1b54 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_3903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/3903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '3903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_3913.yaml b/carps/configs/problem/HPOB/all/cfg_5890_3913.yaml new file mode 100644 index 000000000..edb08fdfb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_3917.yaml b/carps/configs/problem/HPOB/all/cfg_5890_3917.yaml new file mode 100644 index 000000000..a2566f1fe --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_3918.yaml b/carps/configs/problem/HPOB/all/cfg_5890_3918.yaml new file mode 100644 index 000000000..633293344 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_3918.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/3918 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '3918' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_3950.yaml b/carps/configs/problem/HPOB/all/cfg_5890_3950.yaml new file mode 100644 index 000000000..f511a4e0c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_3950.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/3950 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '3950' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_3954.yaml b/carps/configs/problem/HPOB/all/cfg_5890_3954.yaml new file mode 100644 index 000000000..08386221f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_43.yaml b/carps/configs/problem/HPOB/all/cfg_5890_43.yaml new file mode 100644 index 000000000..3c730d734 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_49.yaml b/carps/configs/problem/HPOB/all/cfg_5890_49.yaml new file mode 100644 index 000000000..a349cf1f6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_6566.yaml b/carps/configs/problem/HPOB/all/cfg_5890_6566.yaml new file mode 100644 index 000000000..eb9c6fbe0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_6566.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/6566 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '6566' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_7295.yaml b/carps/configs/problem/HPOB/all/cfg_5890_7295.yaml new file mode 100644 index 000000000..2a37784a1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_7295.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/7295 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '7295' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_9889.yaml b/carps/configs/problem/HPOB/all/cfg_5890_9889.yaml new file mode 100644 index 000000000..728bafcf9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_9910.yaml b/carps/configs/problem/HPOB/all/cfg_5890_9910.yaml new file mode 100644 index 000000000..5a6bc0697 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_9910.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/9910 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '9910' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_9971.yaml b/carps/configs/problem/HPOB/all/cfg_5890_9971.yaml new file mode 100644 index 000000000..a85f82443 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5890_9976.yaml b/carps/configs/problem/HPOB/all/cfg_5890_9976.yaml new file mode 100644 index 000000000..af05da568 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5890_9976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5890/9976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5890' + dataset_id: '9976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_10093.yaml b/carps/configs/problem/HPOB/all/cfg_5891_10093.yaml new file mode 100644 index 000000000..6548865a2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_10093.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/10093 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '10093' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_10101.yaml b/carps/configs/problem/HPOB/all/cfg_5891_10101.yaml new file mode 100644 index 000000000..86c2c2135 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_125923.yaml b/carps/configs/problem/HPOB/all/cfg_5891_125923.yaml new file mode 100644 index 000000000..903a4bd3f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_145677.yaml b/carps/configs/problem/HPOB/all/cfg_5891_145677.yaml new file mode 100644 index 000000000..b3687c395 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_145677.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/145677 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '145677' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_145834.yaml b/carps/configs/problem/HPOB/all/cfg_5891_145834.yaml new file mode 100644 index 000000000..a94944107 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_145834.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/145834 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '145834' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_145839.yaml b/carps/configs/problem/HPOB/all/cfg_5891_145839.yaml new file mode 100644 index 000000000..c60fcb9bf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_145839.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/145839 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '145839' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_145848.yaml b/carps/configs/problem/HPOB/all/cfg_5891_145848.yaml new file mode 100644 index 000000000..d1b8f50f0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_145848.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/145848 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '145848' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_145855.yaml b/carps/configs/problem/HPOB/all/cfg_5891_145855.yaml new file mode 100644 index 000000000..5efb3ab2c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_145855.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/145855 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '145855' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_145857.yaml b/carps/configs/problem/HPOB/all/cfg_5891_145857.yaml new file mode 100644 index 000000000..0fbb1e792 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_145857.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/145857 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '145857' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_145862.yaml b/carps/configs/problem/HPOB/all/cfg_5891_145862.yaml new file mode 100644 index 000000000..62dade39f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_145862.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/145862 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '145862' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_145872.yaml b/carps/configs/problem/HPOB/all/cfg_5891_145872.yaml new file mode 100644 index 000000000..9be4971e7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_145872.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/145872 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '145872' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_145878.yaml b/carps/configs/problem/HPOB/all/cfg_5891_145878.yaml new file mode 100644 index 000000000..3a75d1332 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_145878.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/145878 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '145878' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_145953.yaml b/carps/configs/problem/HPOB/all/cfg_5891_145953.yaml new file mode 100644 index 000000000..6aee08117 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_145953.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/145953 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '145953' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_145972.yaml b/carps/configs/problem/HPOB/all/cfg_5891_145972.yaml new file mode 100644 index 000000000..f39beba9c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_145972.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/145972 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '145972' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_145979.yaml b/carps/configs/problem/HPOB/all/cfg_5891_145979.yaml new file mode 100644 index 000000000..0c472c8fe --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_145979.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/145979 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '145979' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_146012.yaml b/carps/configs/problem/HPOB/all/cfg_5891_146012.yaml new file mode 100644 index 000000000..12bcc7ac2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_146012.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/146012 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '146012' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_146064.yaml b/carps/configs/problem/HPOB/all/cfg_5891_146064.yaml new file mode 100644 index 000000000..408332cdb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_146064.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/146064 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '146064' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_146066.yaml b/carps/configs/problem/HPOB/all/cfg_5891_146066.yaml new file mode 100644 index 000000000..927dcf6ad --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_146066.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/146066 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '146066' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_146082.yaml b/carps/configs/problem/HPOB/all/cfg_5891_146082.yaml new file mode 100644 index 000000000..63bae36e3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_146082.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/146082 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '146082' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_14951.yaml b/carps/configs/problem/HPOB/all/cfg_5891_14951.yaml new file mode 100644 index 000000000..1d7ef9773 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_14952.yaml b/carps/configs/problem/HPOB/all/cfg_5891_14952.yaml new file mode 100644 index 000000000..c00218f0c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_14952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/14952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '14952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_14965.yaml b/carps/configs/problem/HPOB/all/cfg_5891_14965.yaml new file mode 100644 index 000000000..606322798 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_14965.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/14965 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '14965' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_14966.yaml b/carps/configs/problem/HPOB/all/cfg_5891_14966.yaml new file mode 100644 index 000000000..aec0c8a4c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_14966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/14966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '14966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_14971.yaml b/carps/configs/problem/HPOB/all/cfg_5891_14971.yaml new file mode 100644 index 000000000..218dbd265 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_14971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/14971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '14971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_219.yaml b/carps/configs/problem/HPOB/all/cfg_5891_219.yaml new file mode 100644 index 000000000..f5742dd12 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_3.yaml b/carps/configs/problem/HPOB/all/cfg_5891_3.yaml new file mode 100644 index 000000000..505206e9e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_31.yaml b/carps/configs/problem/HPOB/all/cfg_5891_31.yaml new file mode 100644 index 000000000..b9938732e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_34536.yaml b/carps/configs/problem/HPOB/all/cfg_5891_34536.yaml new file mode 100644 index 000000000..67458c168 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_34536.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/34536 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '34536' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_34537.yaml b/carps/configs/problem/HPOB/all/cfg_5891_34537.yaml new file mode 100644 index 000000000..bb2e297d6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_34537.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/34537 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '34537' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_3485.yaml b/carps/configs/problem/HPOB/all/cfg_5891_3485.yaml new file mode 100644 index 000000000..030fd53cf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_3485.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/3485 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3485' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_3492.yaml b/carps/configs/problem/HPOB/all/cfg_5891_3492.yaml new file mode 100644 index 000000000..7c0e711d0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_3492.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/3492 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3492' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_3493.yaml b/carps/configs/problem/HPOB/all/cfg_5891_3493.yaml new file mode 100644 index 000000000..f2b8cc864 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_3494.yaml b/carps/configs/problem/HPOB/all/cfg_5891_3494.yaml new file mode 100644 index 000000000..077594f2c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_37.yaml b/carps/configs/problem/HPOB/all/cfg_5891_37.yaml new file mode 100644 index 000000000..10d12afb6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_3889.yaml b/carps/configs/problem/HPOB/all/cfg_5891_3889.yaml new file mode 100644 index 000000000..0bc8233d5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_3889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/3889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_3891.yaml b/carps/configs/problem/HPOB/all/cfg_5891_3891.yaml new file mode 100644 index 000000000..b42b64076 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_3891.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/3891 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3891' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_3896.yaml b/carps/configs/problem/HPOB/all/cfg_5891_3896.yaml new file mode 100644 index 000000000..72930b123 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_3899.yaml b/carps/configs/problem/HPOB/all/cfg_5891_3899.yaml new file mode 100644 index 000000000..5f87078a9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_3899.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/3899 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3899' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_3902.yaml b/carps/configs/problem/HPOB/all/cfg_5891_3902.yaml new file mode 100644 index 000000000..42bfe3fc1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_3903.yaml b/carps/configs/problem/HPOB/all/cfg_5891_3903.yaml new file mode 100644 index 000000000..2aa85cfb2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_3903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/3903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_3913.yaml b/carps/configs/problem/HPOB/all/cfg_5891_3913.yaml new file mode 100644 index 000000000..a92e8fa85 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_3917.yaml b/carps/configs/problem/HPOB/all/cfg_5891_3917.yaml new file mode 100644 index 000000000..71c9df7b9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_3918.yaml b/carps/configs/problem/HPOB/all/cfg_5891_3918.yaml new file mode 100644 index 000000000..47ffb1f1e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_3918.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/3918 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3918' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_3950.yaml b/carps/configs/problem/HPOB/all/cfg_5891_3950.yaml new file mode 100644 index 000000000..d99fd18dc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_3950.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/3950 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3950' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_3954.yaml b/carps/configs/problem/HPOB/all/cfg_5891_3954.yaml new file mode 100644 index 000000000..629277bec --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_43.yaml b/carps/configs/problem/HPOB/all/cfg_5891_43.yaml new file mode 100644 index 000000000..833018fc9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_49.yaml b/carps/configs/problem/HPOB/all/cfg_5891_49.yaml new file mode 100644 index 000000000..56a917350 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_6566.yaml b/carps/configs/problem/HPOB/all/cfg_5891_6566.yaml new file mode 100644 index 000000000..e45e1f4f9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_6566.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/6566 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '6566' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_7295.yaml b/carps/configs/problem/HPOB/all/cfg_5891_7295.yaml new file mode 100644 index 000000000..25e9f1bc7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_7295.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/7295 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '7295' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_9889.yaml b/carps/configs/problem/HPOB/all/cfg_5891_9889.yaml new file mode 100644 index 000000000..512660045 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_9910.yaml b/carps/configs/problem/HPOB/all/cfg_5891_9910.yaml new file mode 100644 index 000000000..fc0da7a76 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_9910.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/9910 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '9910' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_9914.yaml b/carps/configs/problem/HPOB/all/cfg_5891_9914.yaml new file mode 100644 index 000000000..4ee269001 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_9946.yaml b/carps/configs/problem/HPOB/all/cfg_5891_9946.yaml new file mode 100644 index 000000000..234fa037b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_9946.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/9946 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '9946' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_9952.yaml b/carps/configs/problem/HPOB/all/cfg_5891_9952.yaml new file mode 100644 index 000000000..f667ebe33 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_9957.yaml b/carps/configs/problem/HPOB/all/cfg_5891_9957.yaml new file mode 100644 index 000000000..dac8d6223 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_9967.yaml b/carps/configs/problem/HPOB/all/cfg_5891_9967.yaml new file mode 100644 index 000000000..23f377457 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_9967.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/9967 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '9967' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_9970.yaml b/carps/configs/problem/HPOB/all/cfg_5891_9970.yaml new file mode 100644 index 000000000..763ab37d5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_9970.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/9970 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '9970' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_9971.yaml b/carps/configs/problem/HPOB/all/cfg_5891_9971.yaml new file mode 100644 index 000000000..8eebb5850 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_9976.yaml b/carps/configs/problem/HPOB/all/cfg_5891_9976.yaml new file mode 100644 index 000000000..fbea3dc1a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_9976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/9976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '9976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_9977.yaml b/carps/configs/problem/HPOB/all/cfg_5891_9977.yaml new file mode 100644 index 000000000..f0ab0c78c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_9977.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/9977 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '9977' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_9978.yaml b/carps/configs/problem/HPOB/all/cfg_5891_9978.yaml new file mode 100644 index 000000000..9999818bd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_9978.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/9978 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '9978' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_9980.yaml b/carps/configs/problem/HPOB/all/cfg_5891_9980.yaml new file mode 100644 index 000000000..269ce431b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_9980.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/9980 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '9980' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5891_9983.yaml b/carps/configs/problem/HPOB/all/cfg_5891_9983.yaml new file mode 100644 index 000000000..4eba9c5cf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5891_9983.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5891/9983 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '9983' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_125923.yaml b/carps/configs/problem/HPOB/all/cfg_5906_125923.yaml new file mode 100644 index 000000000..8929b52ef --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_14951.yaml b/carps/configs/problem/HPOB/all/cfg_5906_14951.yaml new file mode 100644 index 000000000..ee3f6ce0f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_14965.yaml b/carps/configs/problem/HPOB/all/cfg_5906_14965.yaml new file mode 100644 index 000000000..ab3b7bb9c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_14965.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/14965 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '14965' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_3.yaml b/carps/configs/problem/HPOB/all/cfg_5906_3.yaml new file mode 100644 index 000000000..ef7fd3e85 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_31.yaml b/carps/configs/problem/HPOB/all/cfg_5906_31.yaml new file mode 100644 index 000000000..eab63d02d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_3492.yaml b/carps/configs/problem/HPOB/all/cfg_5906_3492.yaml new file mode 100644 index 000000000..fbd011fa3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_3492.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/3492 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '3492' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_3493.yaml b/carps/configs/problem/HPOB/all/cfg_5906_3493.yaml new file mode 100644 index 000000000..5f1247ca6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_3494.yaml b/carps/configs/problem/HPOB/all/cfg_5906_3494.yaml new file mode 100644 index 000000000..ec0f3d7e6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_37.yaml b/carps/configs/problem/HPOB/all/cfg_5906_37.yaml new file mode 100644 index 000000000..9611185f0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_3889.yaml b/carps/configs/problem/HPOB/all/cfg_5906_3889.yaml new file mode 100644 index 000000000..d974d2554 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_3889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/3889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '3889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_3891.yaml b/carps/configs/problem/HPOB/all/cfg_5906_3891.yaml new file mode 100644 index 000000000..d1d3ddc85 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_3891.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/3891 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '3891' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_3896.yaml b/carps/configs/problem/HPOB/all/cfg_5906_3896.yaml new file mode 100644 index 000000000..746f06b1e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_3902.yaml b/carps/configs/problem/HPOB/all/cfg_5906_3902.yaml new file mode 100644 index 000000000..f9b501bad --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_3917.yaml b/carps/configs/problem/HPOB/all/cfg_5906_3917.yaml new file mode 100644 index 000000000..35bf996e7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_3918.yaml b/carps/configs/problem/HPOB/all/cfg_5906_3918.yaml new file mode 100644 index 000000000..9c607535f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_3918.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/3918 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '3918' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_3954.yaml b/carps/configs/problem/HPOB/all/cfg_5906_3954.yaml new file mode 100644 index 000000000..1b250265d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_49.yaml b/carps/configs/problem/HPOB/all/cfg_5906_49.yaml new file mode 100644 index 000000000..18ecb8210 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_6566.yaml b/carps/configs/problem/HPOB/all/cfg_5906_6566.yaml new file mode 100644 index 000000000..829d19317 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_6566.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/6566 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '6566' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_7295.yaml b/carps/configs/problem/HPOB/all/cfg_5906_7295.yaml new file mode 100644 index 000000000..aee3da174 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_7295.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/7295 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '7295' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_9889.yaml b/carps/configs/problem/HPOB/all/cfg_5906_9889.yaml new file mode 100644 index 000000000..9c6f5ae38 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_9914.yaml b/carps/configs/problem/HPOB/all/cfg_5906_9914.yaml new file mode 100644 index 000000000..db201dc71 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_9952.yaml b/carps/configs/problem/HPOB/all/cfg_5906_9952.yaml new file mode 100644 index 000000000..94e345ec5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_9957.yaml b/carps/configs/problem/HPOB/all/cfg_5906_9957.yaml new file mode 100644 index 000000000..e98ea8f00 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_9967.yaml b/carps/configs/problem/HPOB/all/cfg_5906_9967.yaml new file mode 100644 index 000000000..272b5fae2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_9967.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/9967 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '9967' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_9970.yaml b/carps/configs/problem/HPOB/all/cfg_5906_9970.yaml new file mode 100644 index 000000000..ee1ac4f5a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_9970.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/9970 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '9970' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_9971.yaml b/carps/configs/problem/HPOB/all/cfg_5906_9971.yaml new file mode 100644 index 000000000..60c2704c8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_9977.yaml b/carps/configs/problem/HPOB/all/cfg_5906_9977.yaml new file mode 100644 index 000000000..f0613fe19 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_9977.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/9977 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '9977' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_9978.yaml b/carps/configs/problem/HPOB/all/cfg_5906_9978.yaml new file mode 100644 index 000000000..37c26b96b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_9978.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/9978 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '9978' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5906_9983.yaml b/carps/configs/problem/HPOB/all/cfg_5906_9983.yaml new file mode 100644 index 000000000..9a5ab0fa8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5906_9983.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5906/9983 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5906' + dataset_id: '9983' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_11.yaml b/carps/configs/problem/HPOB/all/cfg_5918_11.yaml new file mode 100644 index 000000000..e11d2b85e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_11.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/11 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '11' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_12.yaml b/carps/configs/problem/HPOB/all/cfg_5918_12.yaml new file mode 100644 index 000000000..f968080bb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_12.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/12 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '12' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_14.yaml b/carps/configs/problem/HPOB/all/cfg_5918_14.yaml new file mode 100644 index 000000000..1dd51c36e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_14.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/14 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '14' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_15.yaml b/carps/configs/problem/HPOB/all/cfg_5918_15.yaml new file mode 100644 index 000000000..e8d2286b8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_15.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/15 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '15' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_18.yaml b/carps/configs/problem/HPOB/all/cfg_5918_18.yaml new file mode 100644 index 000000000..ed8898b1a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_18.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/18 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '18' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_20.yaml b/carps/configs/problem/HPOB/all/cfg_5918_20.yaml new file mode 100644 index 000000000..4595571e8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_20.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/20 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '20' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_2068.yaml b/carps/configs/problem/HPOB/all/cfg_5918_2068.yaml new file mode 100644 index 000000000..1d0e4f68b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_2068.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/2068 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '2068' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_2071.yaml b/carps/configs/problem/HPOB/all/cfg_5918_2071.yaml new file mode 100644 index 000000000..1c0e8e75b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_2071.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/2071 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '2071' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_2074.yaml b/carps/configs/problem/HPOB/all/cfg_5918_2074.yaml new file mode 100644 index 000000000..06be9f5f2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_2074.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/2074 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '2074' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_2075.yaml b/carps/configs/problem/HPOB/all/cfg_5918_2075.yaml new file mode 100644 index 000000000..f02ed2c70 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_2075.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/2075 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '2075' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_2076.yaml b/carps/configs/problem/HPOB/all/cfg_5918_2076.yaml new file mode 100644 index 000000000..33fbfb182 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_2076.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/2076 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '2076' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_2077.yaml b/carps/configs/problem/HPOB/all/cfg_5918_2077.yaml new file mode 100644 index 000000000..d4fac8873 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_2077.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/2077 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '2077' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_2079.yaml b/carps/configs/problem/HPOB/all/cfg_5918_2079.yaml new file mode 100644 index 000000000..55f00a2ad --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_2079.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/2079 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '2079' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_21.yaml b/carps/configs/problem/HPOB/all/cfg_5918_21.yaml new file mode 100644 index 000000000..508cc8ebe --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_21.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/21 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '21' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_219.yaml b/carps/configs/problem/HPOB/all/cfg_5918_219.yaml new file mode 100644 index 000000000..1ebf555f5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_22.yaml b/carps/configs/problem/HPOB/all/cfg_5918_22.yaml new file mode 100644 index 000000000..885e463dc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_22.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/22 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '22' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_23.yaml b/carps/configs/problem/HPOB/all/cfg_5918_23.yaml new file mode 100644 index 000000000..32874388f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_23.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/23 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '23' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_24.yaml b/carps/configs/problem/HPOB/all/cfg_5918_24.yaml new file mode 100644 index 000000000..87f7e1566 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_24.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/24 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '24' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_29.yaml b/carps/configs/problem/HPOB/all/cfg_5918_29.yaml new file mode 100644 index 000000000..4899db00a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_3.yaml b/carps/configs/problem/HPOB/all/cfg_5918_3.yaml new file mode 100644 index 000000000..0b181de4c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_30.yaml b/carps/configs/problem/HPOB/all/cfg_5918_30.yaml new file mode 100644 index 000000000..d1b9b3949 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_30.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/30 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '30' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_31.yaml b/carps/configs/problem/HPOB/all/cfg_5918_31.yaml new file mode 100644 index 000000000..8dd65b87a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_33.yaml b/carps/configs/problem/HPOB/all/cfg_5918_33.yaml new file mode 100644 index 000000000..7b28dfc53 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_33.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/33 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '33' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_36.yaml b/carps/configs/problem/HPOB/all/cfg_5918_36.yaml new file mode 100644 index 000000000..26c36fb04 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_36.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/36 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '36' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_37.yaml b/carps/configs/problem/HPOB/all/cfg_5918_37.yaml new file mode 100644 index 000000000..ae7400942 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_41.yaml b/carps/configs/problem/HPOB/all/cfg_5918_41.yaml new file mode 100644 index 000000000..e2937f3ac --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_41.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/41 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '41' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_43.yaml b/carps/configs/problem/HPOB/all/cfg_5918_43.yaml new file mode 100644 index 000000000..6589cb562 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_45.yaml b/carps/configs/problem/HPOB/all/cfg_5918_45.yaml new file mode 100644 index 000000000..002ed6420 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_45.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/45 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '45' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_49.yaml b/carps/configs/problem/HPOB/all/cfg_5918_49.yaml new file mode 100644 index 000000000..8aaa61b64 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_53.yaml b/carps/configs/problem/HPOB/all/cfg_5918_53.yaml new file mode 100644 index 000000000..c79c72a30 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_53.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/53 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '53' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_58.yaml b/carps/configs/problem/HPOB/all/cfg_5918_58.yaml new file mode 100644 index 000000000..844aa2dfa --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_58.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/58 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '58' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5918_6.yaml b/carps/configs/problem/HPOB/all/cfg_5918_6.yaml new file mode 100644 index 000000000..b751062e5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5918_6.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5918/6 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '6' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5919_145682.yaml b/carps/configs/problem/HPOB/all/cfg_5919_145682.yaml new file mode 100644 index 000000000..e37f6becc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5919_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5919/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5919' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 5 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_11.yaml b/carps/configs/problem/HPOB/all/cfg_5920_11.yaml new file mode 100644 index 000000000..43c594f29 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_11.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/11 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '11' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_12.yaml b/carps/configs/problem/HPOB/all/cfg_5920_12.yaml new file mode 100644 index 000000000..3ed03e84e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_12.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/12 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '12' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_15.yaml b/carps/configs/problem/HPOB/all/cfg_5920_15.yaml new file mode 100644 index 000000000..732dc3ebd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_15.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/15 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '15' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_16.yaml b/carps/configs/problem/HPOB/all/cfg_5920_16.yaml new file mode 100644 index 000000000..5e4aec715 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_16.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/16 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '16' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_2068.yaml b/carps/configs/problem/HPOB/all/cfg_5920_2068.yaml new file mode 100644 index 000000000..30c3d6b1b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_2068.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/2068 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '2068' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_2073.yaml b/carps/configs/problem/HPOB/all/cfg_5920_2073.yaml new file mode 100644 index 000000000..63f4f2ec9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_2073.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/2073 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '2073' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_2074.yaml b/carps/configs/problem/HPOB/all/cfg_5920_2074.yaml new file mode 100644 index 000000000..fca2974a8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_2074.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/2074 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '2074' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_2075.yaml b/carps/configs/problem/HPOB/all/cfg_5920_2075.yaml new file mode 100644 index 000000000..7af43b717 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_2075.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/2075 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '2075' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_2076.yaml b/carps/configs/problem/HPOB/all/cfg_5920_2076.yaml new file mode 100644 index 000000000..778326aeb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_2076.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/2076 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '2076' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_2077.yaml b/carps/configs/problem/HPOB/all/cfg_5920_2077.yaml new file mode 100644 index 000000000..a6fa3f669 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_2077.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/2077 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '2077' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_2079.yaml b/carps/configs/problem/HPOB/all/cfg_5920_2079.yaml new file mode 100644 index 000000000..df2187754 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_2079.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/2079 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '2079' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_21.yaml b/carps/configs/problem/HPOB/all/cfg_5920_21.yaml new file mode 100644 index 000000000..49b9ca35b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_21.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/21 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '21' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_219.yaml b/carps/configs/problem/HPOB/all/cfg_5920_219.yaml new file mode 100644 index 000000000..1bfc23ed0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_23.yaml b/carps/configs/problem/HPOB/all/cfg_5920_23.yaml new file mode 100644 index 000000000..7cf83be1f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_23.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/23 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '23' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_24.yaml b/carps/configs/problem/HPOB/all/cfg_5920_24.yaml new file mode 100644 index 000000000..865f05a5d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_24.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/24 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '24' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_26.yaml b/carps/configs/problem/HPOB/all/cfg_5920_26.yaml new file mode 100644 index 000000000..99a9e8a6e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_26.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/26 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '26' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_28.yaml b/carps/configs/problem/HPOB/all/cfg_5920_28.yaml new file mode 100644 index 000000000..7a4de28ef --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_28.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/28 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '28' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_29.yaml b/carps/configs/problem/HPOB/all/cfg_5920_29.yaml new file mode 100644 index 000000000..495eba081 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_3.yaml b/carps/configs/problem/HPOB/all/cfg_5920_3.yaml new file mode 100644 index 000000000..37e0a903f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_30.yaml b/carps/configs/problem/HPOB/all/cfg_5920_30.yaml new file mode 100644 index 000000000..1ec732bf1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_30.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/30 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '30' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_32.yaml b/carps/configs/problem/HPOB/all/cfg_5920_32.yaml new file mode 100644 index 000000000..fbd54d6fe --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_32.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/32 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '32' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_36.yaml b/carps/configs/problem/HPOB/all/cfg_5920_36.yaml new file mode 100644 index 000000000..1d1ccf111 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_36.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/36 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '36' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_37.yaml b/carps/configs/problem/HPOB/all/cfg_5920_37.yaml new file mode 100644 index 000000000..d7d2ef91b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_3951.yaml b/carps/configs/problem/HPOB/all/cfg_5920_3951.yaml new file mode 100644 index 000000000..7af41b37d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_3951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/3951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '3951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_41.yaml b/carps/configs/problem/HPOB/all/cfg_5920_41.yaml new file mode 100644 index 000000000..11d64c2c5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_41.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/41 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '41' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_43.yaml b/carps/configs/problem/HPOB/all/cfg_5920_43.yaml new file mode 100644 index 000000000..befb44d87 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_49.yaml b/carps/configs/problem/HPOB/all/cfg_5920_49.yaml new file mode 100644 index 000000000..3e1b4e12f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_53.yaml b/carps/configs/problem/HPOB/all/cfg_5920_53.yaml new file mode 100644 index 000000000..61720a64b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_53.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/53 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '53' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5920_58.yaml b/carps/configs/problem/HPOB/all/cfg_5920_58.yaml new file mode 100644 index 000000000..675218004 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5920_58.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5920/58 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5920' + dataset_id: '58' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5921_145682.yaml b/carps/configs/problem/HPOB/all/cfg_5921_145682.yaml new file mode 100644 index 000000000..0c51b4ede --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5921_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5921/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5921' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5922_145682.yaml b/carps/configs/problem/HPOB/all/cfg_5922_145682.yaml new file mode 100644 index 000000000..8f68a6bd0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5922_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5922/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5922' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_11.yaml b/carps/configs/problem/HPOB/all/cfg_5923_11.yaml new file mode 100644 index 000000000..b07c4e5c9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_11.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/11 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '11' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_12.yaml b/carps/configs/problem/HPOB/all/cfg_5923_12.yaml new file mode 100644 index 000000000..c4020a006 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_12.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/12 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '12' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_14.yaml b/carps/configs/problem/HPOB/all/cfg_5923_14.yaml new file mode 100644 index 000000000..149530178 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_14.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/14 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '14' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_15.yaml b/carps/configs/problem/HPOB/all/cfg_5923_15.yaml new file mode 100644 index 000000000..c11dd59eb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_15.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/15 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '15' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_16.yaml b/carps/configs/problem/HPOB/all/cfg_5923_16.yaml new file mode 100644 index 000000000..adb43c967 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_16.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/16 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '16' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_18.yaml b/carps/configs/problem/HPOB/all/cfg_5923_18.yaml new file mode 100644 index 000000000..5a37806ca --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_18.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/18 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '18' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_2.yaml b/carps/configs/problem/HPOB/all/cfg_5923_2.yaml new file mode 100644 index 000000000..05861b8ac --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_2.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/2 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '2' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_20.yaml b/carps/configs/problem/HPOB/all/cfg_5923_20.yaml new file mode 100644 index 000000000..5b4df4b34 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_20.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/20 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '20' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_2068.yaml b/carps/configs/problem/HPOB/all/cfg_5923_2068.yaml new file mode 100644 index 000000000..8e98b4a10 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_2068.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/2068 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '2068' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_2071.yaml b/carps/configs/problem/HPOB/all/cfg_5923_2071.yaml new file mode 100644 index 000000000..eeebf77ca --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_2071.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/2071 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '2071' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_2074.yaml b/carps/configs/problem/HPOB/all/cfg_5923_2074.yaml new file mode 100644 index 000000000..c57ab4f38 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_2074.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/2074 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '2074' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_2075.yaml b/carps/configs/problem/HPOB/all/cfg_5923_2075.yaml new file mode 100644 index 000000000..e1736bbf9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_2075.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/2075 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '2075' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_2076.yaml b/carps/configs/problem/HPOB/all/cfg_5923_2076.yaml new file mode 100644 index 000000000..64992575e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_2076.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/2076 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '2076' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_2077.yaml b/carps/configs/problem/HPOB/all/cfg_5923_2077.yaml new file mode 100644 index 000000000..9e47a2666 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_2077.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/2077 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '2077' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_2079.yaml b/carps/configs/problem/HPOB/all/cfg_5923_2079.yaml new file mode 100644 index 000000000..040f63e86 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_2079.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/2079 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '2079' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_21.yaml b/carps/configs/problem/HPOB/all/cfg_5923_21.yaml new file mode 100644 index 000000000..ee19dcae3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_21.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/21 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '21' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_219.yaml b/carps/configs/problem/HPOB/all/cfg_5923_219.yaml new file mode 100644 index 000000000..980f60b60 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_22.yaml b/carps/configs/problem/HPOB/all/cfg_5923_22.yaml new file mode 100644 index 000000000..43eb673dd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_22.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/22 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '22' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_23.yaml b/carps/configs/problem/HPOB/all/cfg_5923_23.yaml new file mode 100644 index 000000000..ff2bd55c0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_23.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/23 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '23' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_24.yaml b/carps/configs/problem/HPOB/all/cfg_5923_24.yaml new file mode 100644 index 000000000..416709a37 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_24.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/24 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '24' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_26.yaml b/carps/configs/problem/HPOB/all/cfg_5923_26.yaml new file mode 100644 index 000000000..c11974ef1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_26.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/26 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '26' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_29.yaml b/carps/configs/problem/HPOB/all/cfg_5923_29.yaml new file mode 100644 index 000000000..cc3f9a8e3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_3.yaml b/carps/configs/problem/HPOB/all/cfg_5923_3.yaml new file mode 100644 index 000000000..9c0385050 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_31.yaml b/carps/configs/problem/HPOB/all/cfg_5923_31.yaml new file mode 100644 index 000000000..621814fcd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_32.yaml b/carps/configs/problem/HPOB/all/cfg_5923_32.yaml new file mode 100644 index 000000000..19a19cb47 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_32.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/32 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '32' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_33.yaml b/carps/configs/problem/HPOB/all/cfg_5923_33.yaml new file mode 100644 index 000000000..8f3c3cba2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_33.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/33 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '33' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_37.yaml b/carps/configs/problem/HPOB/all/cfg_5923_37.yaml new file mode 100644 index 000000000..3a28108b3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_45.yaml b/carps/configs/problem/HPOB/all/cfg_5923_45.yaml new file mode 100644 index 000000000..537ff34e4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_45.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/45 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '45' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_49.yaml b/carps/configs/problem/HPOB/all/cfg_5923_49.yaml new file mode 100644 index 000000000..921842f08 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_53.yaml b/carps/configs/problem/HPOB/all/cfg_5923_53.yaml new file mode 100644 index 000000000..771129c07 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_53.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/53 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '53' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_58.yaml b/carps/configs/problem/HPOB/all/cfg_5923_58.yaml new file mode 100644 index 000000000..43f022a20 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_58.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/58 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '58' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5923_6.yaml b/carps/configs/problem/HPOB/all/cfg_5923_6.yaml new file mode 100644 index 000000000..d54774ed6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5923_6.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5923/6 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5923' + dataset_id: '6' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_14.yaml b/carps/configs/problem/HPOB/all/cfg_5926_14.yaml new file mode 100644 index 000000000..489af5523 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_14.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/14 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '14' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_15.yaml b/carps/configs/problem/HPOB/all/cfg_5926_15.yaml new file mode 100644 index 000000000..00e195c25 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_15.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/15 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '15' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_16.yaml b/carps/configs/problem/HPOB/all/cfg_5926_16.yaml new file mode 100644 index 000000000..570e8366e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_16.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/16 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '16' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_2.yaml b/carps/configs/problem/HPOB/all/cfg_5926_2.yaml new file mode 100644 index 000000000..23ebb4976 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_2.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/2 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '2' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_20.yaml b/carps/configs/problem/HPOB/all/cfg_5926_20.yaml new file mode 100644 index 000000000..8707ec309 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_20.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/20 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '20' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_2068.yaml b/carps/configs/problem/HPOB/all/cfg_5926_2068.yaml new file mode 100644 index 000000000..12757820c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_2068.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/2068 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '2068' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_2073.yaml b/carps/configs/problem/HPOB/all/cfg_5926_2073.yaml new file mode 100644 index 000000000..87fbd83df --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_2073.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/2073 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '2073' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_2074.yaml b/carps/configs/problem/HPOB/all/cfg_5926_2074.yaml new file mode 100644 index 000000000..905b3d890 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_2074.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/2074 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '2074' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_2075.yaml b/carps/configs/problem/HPOB/all/cfg_5926_2075.yaml new file mode 100644 index 000000000..2c4bf92a7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_2075.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/2075 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '2075' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_2076.yaml b/carps/configs/problem/HPOB/all/cfg_5926_2076.yaml new file mode 100644 index 000000000..856d19f7d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_2076.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/2076 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '2076' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_2077.yaml b/carps/configs/problem/HPOB/all/cfg_5926_2077.yaml new file mode 100644 index 000000000..8d5b4fef1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_2077.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/2077 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '2077' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_2079.yaml b/carps/configs/problem/HPOB/all/cfg_5926_2079.yaml new file mode 100644 index 000000000..4f32db187 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_2079.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/2079 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '2079' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_21.yaml b/carps/configs/problem/HPOB/all/cfg_5926_21.yaml new file mode 100644 index 000000000..4077a6206 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_21.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/21 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '21' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_219.yaml b/carps/configs/problem/HPOB/all/cfg_5926_219.yaml new file mode 100644 index 000000000..8c3a72db8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_23.yaml b/carps/configs/problem/HPOB/all/cfg_5926_23.yaml new file mode 100644 index 000000000..a949fbcac --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_23.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/23 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '23' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_24.yaml b/carps/configs/problem/HPOB/all/cfg_5926_24.yaml new file mode 100644 index 000000000..01d239109 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_24.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/24 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '24' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_26.yaml b/carps/configs/problem/HPOB/all/cfg_5926_26.yaml new file mode 100644 index 000000000..9d5015743 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_26.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/26 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '26' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_28.yaml b/carps/configs/problem/HPOB/all/cfg_5926_28.yaml new file mode 100644 index 000000000..9584fb498 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_28.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/28 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '28' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_29.yaml b/carps/configs/problem/HPOB/all/cfg_5926_29.yaml new file mode 100644 index 000000000..23af897e9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_3.yaml b/carps/configs/problem/HPOB/all/cfg_5926_3.yaml new file mode 100644 index 000000000..5416e53fb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_30.yaml b/carps/configs/problem/HPOB/all/cfg_5926_30.yaml new file mode 100644 index 000000000..9987b3942 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_30.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/30 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '30' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_31.yaml b/carps/configs/problem/HPOB/all/cfg_5926_31.yaml new file mode 100644 index 000000000..e63d922d8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_32.yaml b/carps/configs/problem/HPOB/all/cfg_5926_32.yaml new file mode 100644 index 000000000..bc0c872fe --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_32.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/32 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '32' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_33.yaml b/carps/configs/problem/HPOB/all/cfg_5926_33.yaml new file mode 100644 index 000000000..ae2298f6f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_33.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/33 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '33' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_36.yaml b/carps/configs/problem/HPOB/all/cfg_5926_36.yaml new file mode 100644 index 000000000..c27d29c5f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_36.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/36 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '36' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_37.yaml b/carps/configs/problem/HPOB/all/cfg_5926_37.yaml new file mode 100644 index 000000000..c1dadcf22 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_41.yaml b/carps/configs/problem/HPOB/all/cfg_5926_41.yaml new file mode 100644 index 000000000..9585f3fb1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_41.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/41 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '41' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_43.yaml b/carps/configs/problem/HPOB/all/cfg_5926_43.yaml new file mode 100644 index 000000000..5fef5eb6c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_45.yaml b/carps/configs/problem/HPOB/all/cfg_5926_45.yaml new file mode 100644 index 000000000..78bfbca7f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_45.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/45 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '45' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_53.yaml b/carps/configs/problem/HPOB/all/cfg_5926_53.yaml new file mode 100644 index 000000000..45731728b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_53.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/53 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '53' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_58.yaml b/carps/configs/problem/HPOB/all/cfg_5926_58.yaml new file mode 100644 index 000000000..d4e0e966c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_58.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/58 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '58' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5926_6.yaml b/carps/configs/problem/HPOB/all/cfg_5926_6.yaml new file mode 100644 index 000000000..5a511f3c6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5926_6.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5926/6 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5926' + dataset_id: '6' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5960_145682.yaml b/carps/configs/problem/HPOB/all/cfg_5960_145682.yaml new file mode 100644 index 000000000..67c2377f0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5960_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5960/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5960' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 7 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5963_34536.yaml b/carps/configs/problem/HPOB/all/cfg_5963_34536.yaml new file mode 100644 index 000000000..140aa2404 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5963_34536.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5963/34536 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5963' + dataset_id: '34536' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5963_3917.yaml b/carps/configs/problem/HPOB/all/cfg_5963_3917.yaml new file mode 100644 index 000000000..a1060b625 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5963_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5963/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5963' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5964_9889.yaml b/carps/configs/problem/HPOB/all/cfg_5964_9889.yaml new file mode 100644 index 000000000..e1e166b12 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5964_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5964/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5964' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5964_9946.yaml b/carps/configs/problem/HPOB/all/cfg_5964_9946.yaml new file mode 100644 index 000000000..b52201669 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5964_9946.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5964/9946 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5964' + dataset_id: '9946' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_10093.yaml b/carps/configs/problem/HPOB/all/cfg_5965_10093.yaml new file mode 100644 index 000000000..c3769fcc7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_10093.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/10093 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '10093' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_10101.yaml b/carps/configs/problem/HPOB/all/cfg_5965_10101.yaml new file mode 100644 index 000000000..6e0f4a953 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_125923.yaml b/carps/configs/problem/HPOB/all/cfg_5965_125923.yaml new file mode 100644 index 000000000..730aa978d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_145677.yaml b/carps/configs/problem/HPOB/all/cfg_5965_145677.yaml new file mode 100644 index 000000000..55398a1f1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_145677.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/145677 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '145677' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_145804.yaml b/carps/configs/problem/HPOB/all/cfg_5965_145804.yaml new file mode 100644 index 000000000..17c6c1ca9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_145804.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/145804 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '145804' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_145833.yaml b/carps/configs/problem/HPOB/all/cfg_5965_145833.yaml new file mode 100644 index 000000000..9add09fad --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_145833.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/145833 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '145833' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_145834.yaml b/carps/configs/problem/HPOB/all/cfg_5965_145834.yaml new file mode 100644 index 000000000..101eadbcd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_145834.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/145834 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '145834' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_145836.yaml b/carps/configs/problem/HPOB/all/cfg_5965_145836.yaml new file mode 100644 index 000000000..cb45d93e5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_145836.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/145836 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '145836' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_145839.yaml b/carps/configs/problem/HPOB/all/cfg_5965_145839.yaml new file mode 100644 index 000000000..c1f3ee21e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_145839.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/145839 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '145839' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_145847.yaml b/carps/configs/problem/HPOB/all/cfg_5965_145847.yaml new file mode 100644 index 000000000..9340850f8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_145847.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/145847 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '145847' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_145848.yaml b/carps/configs/problem/HPOB/all/cfg_5965_145848.yaml new file mode 100644 index 000000000..3e627081b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_145848.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/145848 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '145848' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_145853.yaml b/carps/configs/problem/HPOB/all/cfg_5965_145853.yaml new file mode 100644 index 000000000..ef19aa174 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_145853.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/145853 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '145853' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_145854.yaml b/carps/configs/problem/HPOB/all/cfg_5965_145854.yaml new file mode 100644 index 000000000..536276ac1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_145854.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/145854 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '145854' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_145855.yaml b/carps/configs/problem/HPOB/all/cfg_5965_145855.yaml new file mode 100644 index 000000000..c3125a52f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_145855.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/145855 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '145855' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_145857.yaml b/carps/configs/problem/HPOB/all/cfg_5965_145857.yaml new file mode 100644 index 000000000..4787ee72e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_145857.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/145857 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '145857' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_145862.yaml b/carps/configs/problem/HPOB/all/cfg_5965_145862.yaml new file mode 100644 index 000000000..4db852648 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_145862.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/145862 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '145862' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_145872.yaml b/carps/configs/problem/HPOB/all/cfg_5965_145872.yaml new file mode 100644 index 000000000..4cfebfc32 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_145872.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/145872 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '145872' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_145878.yaml b/carps/configs/problem/HPOB/all/cfg_5965_145878.yaml new file mode 100644 index 000000000..b51bda4d4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_145878.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/145878 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '145878' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_145953.yaml b/carps/configs/problem/HPOB/all/cfg_5965_145953.yaml new file mode 100644 index 000000000..da4aa08ec --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_145953.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/145953 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '145953' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_145972.yaml b/carps/configs/problem/HPOB/all/cfg_5965_145972.yaml new file mode 100644 index 000000000..1efab1083 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_145972.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/145972 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '145972' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_145976.yaml b/carps/configs/problem/HPOB/all/cfg_5965_145976.yaml new file mode 100644 index 000000000..f89448cee --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_145976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/145976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '145976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_145979.yaml b/carps/configs/problem/HPOB/all/cfg_5965_145979.yaml new file mode 100644 index 000000000..ddea95761 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_145979.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/145979 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '145979' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_146012.yaml b/carps/configs/problem/HPOB/all/cfg_5965_146012.yaml new file mode 100644 index 000000000..17a3e74d7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_146012.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/146012 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '146012' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_146064.yaml b/carps/configs/problem/HPOB/all/cfg_5965_146064.yaml new file mode 100644 index 000000000..9faebf367 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_146064.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/146064 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '146064' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_146065.yaml b/carps/configs/problem/HPOB/all/cfg_5965_146065.yaml new file mode 100644 index 000000000..67edbe45e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_146065.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/146065 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '146065' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_146066.yaml b/carps/configs/problem/HPOB/all/cfg_5965_146066.yaml new file mode 100644 index 000000000..1d3be99ff --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_146066.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/146066 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '146066' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_146085.yaml b/carps/configs/problem/HPOB/all/cfg_5965_146085.yaml new file mode 100644 index 000000000..532df6f5c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_146085.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/146085 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '146085' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_146803.yaml b/carps/configs/problem/HPOB/all/cfg_5965_146803.yaml new file mode 100644 index 000000000..f7c948409 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_146803.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/146803 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '146803' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_14951.yaml b/carps/configs/problem/HPOB/all/cfg_5965_14951.yaml new file mode 100644 index 000000000..5a3429fce --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_14952.yaml b/carps/configs/problem/HPOB/all/cfg_5965_14952.yaml new file mode 100644 index 000000000..1614e9ccc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_14952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/14952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '14952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_14965.yaml b/carps/configs/problem/HPOB/all/cfg_5965_14965.yaml new file mode 100644 index 000000000..ac65183d6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_14965.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/14965 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '14965' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_14966.yaml b/carps/configs/problem/HPOB/all/cfg_5965_14966.yaml new file mode 100644 index 000000000..b295e70ca --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_14966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/14966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '14966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_14971.yaml b/carps/configs/problem/HPOB/all/cfg_5965_14971.yaml new file mode 100644 index 000000000..3bebfc60b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_14971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/14971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '14971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_219.yaml b/carps/configs/problem/HPOB/all/cfg_5965_219.yaml new file mode 100644 index 000000000..9475ebcf5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_3.yaml b/carps/configs/problem/HPOB/all/cfg_5965_3.yaml new file mode 100644 index 000000000..9ec8bb489 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_31.yaml b/carps/configs/problem/HPOB/all/cfg_5965_31.yaml new file mode 100644 index 000000000..7a1ee38e8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_34536.yaml b/carps/configs/problem/HPOB/all/cfg_5965_34536.yaml new file mode 100644 index 000000000..de66b7662 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_34536.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/34536 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '34536' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_34537.yaml b/carps/configs/problem/HPOB/all/cfg_5965_34537.yaml new file mode 100644 index 000000000..dd6bad8fd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_34537.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/34537 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '34537' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_34539.yaml b/carps/configs/problem/HPOB/all/cfg_5965_34539.yaml new file mode 100644 index 000000000..9ead78ff0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_34539.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/34539 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '34539' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_3485.yaml b/carps/configs/problem/HPOB/all/cfg_5965_3485.yaml new file mode 100644 index 000000000..2c5ea3e25 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_3485.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/3485 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '3485' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_3492.yaml b/carps/configs/problem/HPOB/all/cfg_5965_3492.yaml new file mode 100644 index 000000000..e282c2ed1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_3492.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/3492 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '3492' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_3493.yaml b/carps/configs/problem/HPOB/all/cfg_5965_3493.yaml new file mode 100644 index 000000000..142e526b7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_3494.yaml b/carps/configs/problem/HPOB/all/cfg_5965_3494.yaml new file mode 100644 index 000000000..aac79cac7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_37.yaml b/carps/configs/problem/HPOB/all/cfg_5965_37.yaml new file mode 100644 index 000000000..1c09cc219 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_3889.yaml b/carps/configs/problem/HPOB/all/cfg_5965_3889.yaml new file mode 100644 index 000000000..c2139ab99 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_3889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/3889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '3889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_3891.yaml b/carps/configs/problem/HPOB/all/cfg_5965_3891.yaml new file mode 100644 index 000000000..011b2e440 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_3891.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/3891 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '3891' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_3896.yaml b/carps/configs/problem/HPOB/all/cfg_5965_3896.yaml new file mode 100644 index 000000000..86e571383 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_3899.yaml b/carps/configs/problem/HPOB/all/cfg_5965_3899.yaml new file mode 100644 index 000000000..bca08e93a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_3899.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/3899 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '3899' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_3902.yaml b/carps/configs/problem/HPOB/all/cfg_5965_3902.yaml new file mode 100644 index 000000000..87b90d012 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_3903.yaml b/carps/configs/problem/HPOB/all/cfg_5965_3903.yaml new file mode 100644 index 000000000..8c6ee67cf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_3903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/3903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '3903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_3913.yaml b/carps/configs/problem/HPOB/all/cfg_5965_3913.yaml new file mode 100644 index 000000000..c8baaad4e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_3917.yaml b/carps/configs/problem/HPOB/all/cfg_5965_3917.yaml new file mode 100644 index 000000000..c9886763d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_3918.yaml b/carps/configs/problem/HPOB/all/cfg_5965_3918.yaml new file mode 100644 index 000000000..03f6b5a72 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_3918.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/3918 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '3918' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_3950.yaml b/carps/configs/problem/HPOB/all/cfg_5965_3950.yaml new file mode 100644 index 000000000..48a3ee5c5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_3950.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/3950 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '3950' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_3954.yaml b/carps/configs/problem/HPOB/all/cfg_5965_3954.yaml new file mode 100644 index 000000000..3db6595d3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_43.yaml b/carps/configs/problem/HPOB/all/cfg_5965_43.yaml new file mode 100644 index 000000000..944218ad2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_49.yaml b/carps/configs/problem/HPOB/all/cfg_5965_49.yaml new file mode 100644 index 000000000..89c95625a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_6566.yaml b/carps/configs/problem/HPOB/all/cfg_5965_6566.yaml new file mode 100644 index 000000000..924984ec6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_6566.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/6566 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '6566' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_7295.yaml b/carps/configs/problem/HPOB/all/cfg_5965_7295.yaml new file mode 100644 index 000000000..b24d9ebbf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_7295.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/7295 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '7295' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_9889.yaml b/carps/configs/problem/HPOB/all/cfg_5965_9889.yaml new file mode 100644 index 000000000..585b92c27 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_9910.yaml b/carps/configs/problem/HPOB/all/cfg_5965_9910.yaml new file mode 100644 index 000000000..d487447ea --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_9910.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/9910 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '9910' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_9911.yaml b/carps/configs/problem/HPOB/all/cfg_5965_9911.yaml new file mode 100644 index 000000000..060af34ec --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_9911.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/9911 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '9911' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_9914.yaml b/carps/configs/problem/HPOB/all/cfg_5965_9914.yaml new file mode 100644 index 000000000..7d81116da --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_9946.yaml b/carps/configs/problem/HPOB/all/cfg_5965_9946.yaml new file mode 100644 index 000000000..5198f59ab --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_9946.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/9946 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '9946' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_9952.yaml b/carps/configs/problem/HPOB/all/cfg_5965_9952.yaml new file mode 100644 index 000000000..90afdcc80 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_9957.yaml b/carps/configs/problem/HPOB/all/cfg_5965_9957.yaml new file mode 100644 index 000000000..7881088f5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_9967.yaml b/carps/configs/problem/HPOB/all/cfg_5965_9967.yaml new file mode 100644 index 000000000..b75fd2140 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_9967.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/9967 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '9967' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_9970.yaml b/carps/configs/problem/HPOB/all/cfg_5965_9970.yaml new file mode 100644 index 000000000..fb71e50d7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_9970.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/9970 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '9970' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_9971.yaml b/carps/configs/problem/HPOB/all/cfg_5965_9971.yaml new file mode 100644 index 000000000..d210a9dce --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_9976.yaml b/carps/configs/problem/HPOB/all/cfg_5965_9976.yaml new file mode 100644 index 000000000..b9331bddd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_9976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/9976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '9976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_9977.yaml b/carps/configs/problem/HPOB/all/cfg_5965_9977.yaml new file mode 100644 index 000000000..9599a07ec --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_9977.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/9977 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '9977' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_9978.yaml b/carps/configs/problem/HPOB/all/cfg_5965_9978.yaml new file mode 100644 index 000000000..d4674471d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_9978.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/9978 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '9978' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_9980.yaml b/carps/configs/problem/HPOB/all/cfg_5965_9980.yaml new file mode 100644 index 000000000..825b9da3c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_9980.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/9980 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '9980' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5965_9983.yaml b/carps/configs/problem/HPOB/all/cfg_5965_9983.yaml new file mode 100644 index 000000000..6d9e4b01b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5965_9983.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5965/9983 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5965' + dataset_id: '9983' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5968_10101.yaml b/carps/configs/problem/HPOB/all/cfg_5968_10101.yaml new file mode 100644 index 000000000..dddb6c562 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5968_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5968/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5968' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5968_3.yaml b/carps/configs/problem/HPOB/all/cfg_5968_3.yaml new file mode 100644 index 000000000..4120a568d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5968_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5968/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5968' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5968_3896.yaml b/carps/configs/problem/HPOB/all/cfg_5968_3896.yaml new file mode 100644 index 000000000..f96919a43 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5968_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5968/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5968' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5968_9889.yaml b/carps/configs/problem/HPOB/all/cfg_5968_9889.yaml new file mode 100644 index 000000000..dbd491cb7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5968_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5968/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5968' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5968_9914.yaml b/carps/configs/problem/HPOB/all/cfg_5968_9914.yaml new file mode 100644 index 000000000..34028598f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5968_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5968/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5968' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5968_9952.yaml b/carps/configs/problem/HPOB/all/cfg_5968_9952.yaml new file mode 100644 index 000000000..bcc200a2f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5968_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5968/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5968' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5968_9957.yaml b/carps/configs/problem/HPOB/all/cfg_5968_9957.yaml new file mode 100644 index 000000000..590a87e1c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5968_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5968/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5968' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5968_9983.yaml b/carps/configs/problem/HPOB/all/cfg_5968_9983.yaml new file mode 100644 index 000000000..e76225c64 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5968_9983.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5968/9983 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5968' + dataset_id: '9983' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5969_34536.yaml b/carps/configs/problem/HPOB/all/cfg_5969_34536.yaml new file mode 100644 index 000000000..ca533a38b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5969_34536.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5969/34536 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5969' + dataset_id: '34536' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5969_3485.yaml b/carps/configs/problem/HPOB/all/cfg_5969_3485.yaml new file mode 100644 index 000000000..52401babe --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5969_3485.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5969/3485 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5969' + dataset_id: '3485' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5969_3493.yaml b/carps/configs/problem/HPOB/all/cfg_5969_3493.yaml new file mode 100644 index 000000000..d6a49fbe0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5969_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5969/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5969' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5969_9914.yaml b/carps/configs/problem/HPOB/all/cfg_5969_9914.yaml new file mode 100644 index 000000000..5ffbf9863 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5969_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5969/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5969' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_10093.yaml b/carps/configs/problem/HPOB/all/cfg_5970_10093.yaml new file mode 100644 index 000000000..023efdda5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_10093.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/10093 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '10093' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_10101.yaml b/carps/configs/problem/HPOB/all/cfg_5970_10101.yaml new file mode 100644 index 000000000..21c5d1b67 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_125923.yaml b/carps/configs/problem/HPOB/all/cfg_5970_125923.yaml new file mode 100644 index 000000000..247b8d051 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_145677.yaml b/carps/configs/problem/HPOB/all/cfg_5970_145677.yaml new file mode 100644 index 000000000..b2137a7c9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_145677.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/145677 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '145677' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_145833.yaml b/carps/configs/problem/HPOB/all/cfg_5970_145833.yaml new file mode 100644 index 000000000..25f06dc22 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_145833.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/145833 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '145833' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_145834.yaml b/carps/configs/problem/HPOB/all/cfg_5970_145834.yaml new file mode 100644 index 000000000..d1bf56026 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_145834.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/145834 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '145834' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_145836.yaml b/carps/configs/problem/HPOB/all/cfg_5970_145836.yaml new file mode 100644 index 000000000..9a83a46d8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_145836.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/145836 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '145836' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_145839.yaml b/carps/configs/problem/HPOB/all/cfg_5970_145839.yaml new file mode 100644 index 000000000..96422914d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_145839.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/145839 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '145839' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_145847.yaml b/carps/configs/problem/HPOB/all/cfg_5970_145847.yaml new file mode 100644 index 000000000..6c6e07102 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_145847.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/145847 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '145847' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_145848.yaml b/carps/configs/problem/HPOB/all/cfg_5970_145848.yaml new file mode 100644 index 000000000..58dc728de --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_145848.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/145848 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '145848' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_145853.yaml b/carps/configs/problem/HPOB/all/cfg_5970_145853.yaml new file mode 100644 index 000000000..8b70f8556 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_145853.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/145853 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '145853' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_145854.yaml b/carps/configs/problem/HPOB/all/cfg_5970_145854.yaml new file mode 100644 index 000000000..79c1adc67 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_145854.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/145854 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '145854' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_145855.yaml b/carps/configs/problem/HPOB/all/cfg_5970_145855.yaml new file mode 100644 index 000000000..7b6c549c9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_145855.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/145855 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '145855' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_145857.yaml b/carps/configs/problem/HPOB/all/cfg_5970_145857.yaml new file mode 100644 index 000000000..c9610672d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_145857.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/145857 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '145857' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_145862.yaml b/carps/configs/problem/HPOB/all/cfg_5970_145862.yaml new file mode 100644 index 000000000..0e83bca52 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_145862.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/145862 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '145862' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_145872.yaml b/carps/configs/problem/HPOB/all/cfg_5970_145872.yaml new file mode 100644 index 000000000..ebf7d86bc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_145872.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/145872 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '145872' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_145878.yaml b/carps/configs/problem/HPOB/all/cfg_5970_145878.yaml new file mode 100644 index 000000000..a2c308ae5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_145878.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/145878 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '145878' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_145953.yaml b/carps/configs/problem/HPOB/all/cfg_5970_145953.yaml new file mode 100644 index 000000000..3a5253320 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_145953.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/145953 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '145953' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_145972.yaml b/carps/configs/problem/HPOB/all/cfg_5970_145972.yaml new file mode 100644 index 000000000..52f7182f0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_145972.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/145972 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '145972' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_145976.yaml b/carps/configs/problem/HPOB/all/cfg_5970_145976.yaml new file mode 100644 index 000000000..817177caa --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_145976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/145976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '145976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_145979.yaml b/carps/configs/problem/HPOB/all/cfg_5970_145979.yaml new file mode 100644 index 000000000..af2441809 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_145979.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/145979 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '145979' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_146012.yaml b/carps/configs/problem/HPOB/all/cfg_5970_146012.yaml new file mode 100644 index 000000000..d9a07d967 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_146012.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/146012 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '146012' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_146064.yaml b/carps/configs/problem/HPOB/all/cfg_5970_146064.yaml new file mode 100644 index 000000000..da0f751ba --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_146064.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/146064 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '146064' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_146065.yaml b/carps/configs/problem/HPOB/all/cfg_5970_146065.yaml new file mode 100644 index 000000000..9a6420c0b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_146065.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/146065 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '146065' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_146085.yaml b/carps/configs/problem/HPOB/all/cfg_5970_146085.yaml new file mode 100644 index 000000000..123f020ae --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_146085.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/146085 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '146085' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_14951.yaml b/carps/configs/problem/HPOB/all/cfg_5970_14951.yaml new file mode 100644 index 000000000..519f5586d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_14952.yaml b/carps/configs/problem/HPOB/all/cfg_5970_14952.yaml new file mode 100644 index 000000000..5012c5b16 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_14952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/14952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '14952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_14965.yaml b/carps/configs/problem/HPOB/all/cfg_5970_14965.yaml new file mode 100644 index 000000000..35bd3d613 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_14965.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/14965 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '14965' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_14966.yaml b/carps/configs/problem/HPOB/all/cfg_5970_14966.yaml new file mode 100644 index 000000000..1f259ba81 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_14966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/14966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '14966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_14971.yaml b/carps/configs/problem/HPOB/all/cfg_5970_14971.yaml new file mode 100644 index 000000000..e71085061 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_14971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/14971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '14971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_219.yaml b/carps/configs/problem/HPOB/all/cfg_5970_219.yaml new file mode 100644 index 000000000..a760c4263 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_3.yaml b/carps/configs/problem/HPOB/all/cfg_5970_3.yaml new file mode 100644 index 000000000..883e66e39 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_31.yaml b/carps/configs/problem/HPOB/all/cfg_5970_31.yaml new file mode 100644 index 000000000..fcc62f8c3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_34536.yaml b/carps/configs/problem/HPOB/all/cfg_5970_34536.yaml new file mode 100644 index 000000000..c78f4083f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_34536.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/34536 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '34536' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_34537.yaml b/carps/configs/problem/HPOB/all/cfg_5970_34537.yaml new file mode 100644 index 000000000..b95214b66 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_34537.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/34537 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '34537' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_3485.yaml b/carps/configs/problem/HPOB/all/cfg_5970_3485.yaml new file mode 100644 index 000000000..7ea7db5f4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_3485.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/3485 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '3485' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_3492.yaml b/carps/configs/problem/HPOB/all/cfg_5970_3492.yaml new file mode 100644 index 000000000..a4cf87783 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_3492.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/3492 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '3492' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_3493.yaml b/carps/configs/problem/HPOB/all/cfg_5970_3493.yaml new file mode 100644 index 000000000..1eff1107b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_3494.yaml b/carps/configs/problem/HPOB/all/cfg_5970_3494.yaml new file mode 100644 index 000000000..f0f01ddc8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_37.yaml b/carps/configs/problem/HPOB/all/cfg_5970_37.yaml new file mode 100644 index 000000000..032e6f810 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_3889.yaml b/carps/configs/problem/HPOB/all/cfg_5970_3889.yaml new file mode 100644 index 000000000..e063ff8b8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_3889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/3889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '3889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_3891.yaml b/carps/configs/problem/HPOB/all/cfg_5970_3891.yaml new file mode 100644 index 000000000..fa1f5f02b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_3891.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/3891 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '3891' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_3896.yaml b/carps/configs/problem/HPOB/all/cfg_5970_3896.yaml new file mode 100644 index 000000000..49fd8e7ad --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_3899.yaml b/carps/configs/problem/HPOB/all/cfg_5970_3899.yaml new file mode 100644 index 000000000..1b1d8db0d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_3899.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/3899 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '3899' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_3902.yaml b/carps/configs/problem/HPOB/all/cfg_5970_3902.yaml new file mode 100644 index 000000000..24dced24a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_3903.yaml b/carps/configs/problem/HPOB/all/cfg_5970_3903.yaml new file mode 100644 index 000000000..51ef10ff0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_3903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/3903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '3903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_3913.yaml b/carps/configs/problem/HPOB/all/cfg_5970_3913.yaml new file mode 100644 index 000000000..51713751c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_3917.yaml b/carps/configs/problem/HPOB/all/cfg_5970_3917.yaml new file mode 100644 index 000000000..e25b74f1e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_3918.yaml b/carps/configs/problem/HPOB/all/cfg_5970_3918.yaml new file mode 100644 index 000000000..a7ec57e4b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_3918.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/3918 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '3918' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_3950.yaml b/carps/configs/problem/HPOB/all/cfg_5970_3950.yaml new file mode 100644 index 000000000..7ab6ed4ac --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_3950.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/3950 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '3950' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_3954.yaml b/carps/configs/problem/HPOB/all/cfg_5970_3954.yaml new file mode 100644 index 000000000..c9a1e022d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_43.yaml b/carps/configs/problem/HPOB/all/cfg_5970_43.yaml new file mode 100644 index 000000000..59a14e9a5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_49.yaml b/carps/configs/problem/HPOB/all/cfg_5970_49.yaml new file mode 100644 index 000000000..0f9fb9430 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_6566.yaml b/carps/configs/problem/HPOB/all/cfg_5970_6566.yaml new file mode 100644 index 000000000..84b38e665 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_6566.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/6566 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '6566' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_7295.yaml b/carps/configs/problem/HPOB/all/cfg_5970_7295.yaml new file mode 100644 index 000000000..f741df83a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_7295.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/7295 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '7295' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_9889.yaml b/carps/configs/problem/HPOB/all/cfg_5970_9889.yaml new file mode 100644 index 000000000..bf2649fe8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_9910.yaml b/carps/configs/problem/HPOB/all/cfg_5970_9910.yaml new file mode 100644 index 000000000..4b29786b4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_9910.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/9910 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '9910' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_9914.yaml b/carps/configs/problem/HPOB/all/cfg_5970_9914.yaml new file mode 100644 index 000000000..e5b63b812 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_9946.yaml b/carps/configs/problem/HPOB/all/cfg_5970_9946.yaml new file mode 100644 index 000000000..2df941a9a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_9946.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/9946 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '9946' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_9952.yaml b/carps/configs/problem/HPOB/all/cfg_5970_9952.yaml new file mode 100644 index 000000000..78ffc1449 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_9957.yaml b/carps/configs/problem/HPOB/all/cfg_5970_9957.yaml new file mode 100644 index 000000000..cd446eba3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_9967.yaml b/carps/configs/problem/HPOB/all/cfg_5970_9967.yaml new file mode 100644 index 000000000..7fab1322b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_9967.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/9967 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '9967' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_9970.yaml b/carps/configs/problem/HPOB/all/cfg_5970_9970.yaml new file mode 100644 index 000000000..362760b47 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_9970.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/9970 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '9970' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_9976.yaml b/carps/configs/problem/HPOB/all/cfg_5970_9976.yaml new file mode 100644 index 000000000..a74f148b9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_9976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/9976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '9976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_9977.yaml b/carps/configs/problem/HPOB/all/cfg_5970_9977.yaml new file mode 100644 index 000000000..b51d544ea --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_9977.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/9977 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '9977' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_9978.yaml b/carps/configs/problem/HPOB/all/cfg_5970_9978.yaml new file mode 100644 index 000000000..8dfef4984 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_9978.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/9978 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '9978' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_9980.yaml b/carps/configs/problem/HPOB/all/cfg_5970_9980.yaml new file mode 100644 index 000000000..e2ee9e2df --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_9980.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/9980 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '9980' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5970_9983.yaml b/carps/configs/problem/HPOB/all/cfg_5970_9983.yaml new file mode 100644 index 000000000..8f628eac2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5970_9983.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5970/9983 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '9983' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_10093.yaml b/carps/configs/problem/HPOB/all/cfg_5971_10093.yaml new file mode 100644 index 000000000..44341d905 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_10093.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/10093 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '10093' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_10101.yaml b/carps/configs/problem/HPOB/all/cfg_5971_10101.yaml new file mode 100644 index 000000000..3d0782046 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_125923.yaml b/carps/configs/problem/HPOB/all/cfg_5971_125923.yaml new file mode 100644 index 000000000..778008988 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_145677.yaml b/carps/configs/problem/HPOB/all/cfg_5971_145677.yaml new file mode 100644 index 000000000..1825ec257 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_145677.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/145677 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '145677' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_145804.yaml b/carps/configs/problem/HPOB/all/cfg_5971_145804.yaml new file mode 100644 index 000000000..6b62f9649 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_145804.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/145804 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '145804' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_145833.yaml b/carps/configs/problem/HPOB/all/cfg_5971_145833.yaml new file mode 100644 index 000000000..31e54e18a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_145833.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/145833 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '145833' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_145834.yaml b/carps/configs/problem/HPOB/all/cfg_5971_145834.yaml new file mode 100644 index 000000000..f615ee28b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_145834.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/145834 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '145834' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_145836.yaml b/carps/configs/problem/HPOB/all/cfg_5971_145836.yaml new file mode 100644 index 000000000..faedbe613 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_145836.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/145836 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '145836' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_145847.yaml b/carps/configs/problem/HPOB/all/cfg_5971_145847.yaml new file mode 100644 index 000000000..0e0b3bb5c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_145847.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/145847 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '145847' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_145848.yaml b/carps/configs/problem/HPOB/all/cfg_5971_145848.yaml new file mode 100644 index 000000000..b895fa0f9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_145848.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/145848 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '145848' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_145853.yaml b/carps/configs/problem/HPOB/all/cfg_5971_145853.yaml new file mode 100644 index 000000000..de555065f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_145853.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/145853 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '145853' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_145855.yaml b/carps/configs/problem/HPOB/all/cfg_5971_145855.yaml new file mode 100644 index 000000000..447ff3dd7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_145855.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/145855 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '145855' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_145857.yaml b/carps/configs/problem/HPOB/all/cfg_5971_145857.yaml new file mode 100644 index 000000000..1546c7c94 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_145857.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/145857 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '145857' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_145862.yaml b/carps/configs/problem/HPOB/all/cfg_5971_145862.yaml new file mode 100644 index 000000000..be5d39b8e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_145862.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/145862 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '145862' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_145872.yaml b/carps/configs/problem/HPOB/all/cfg_5971_145872.yaml new file mode 100644 index 000000000..2c1c1713d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_145872.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/145872 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '145872' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_145878.yaml b/carps/configs/problem/HPOB/all/cfg_5971_145878.yaml new file mode 100644 index 000000000..cfb6c769c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_145878.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/145878 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '145878' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_145972.yaml b/carps/configs/problem/HPOB/all/cfg_5971_145972.yaml new file mode 100644 index 000000000..e91281418 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_145972.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/145972 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '145972' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_145976.yaml b/carps/configs/problem/HPOB/all/cfg_5971_145976.yaml new file mode 100644 index 000000000..fb77974b1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_145976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/145976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '145976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_145979.yaml b/carps/configs/problem/HPOB/all/cfg_5971_145979.yaml new file mode 100644 index 000000000..1f293a3b4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_145979.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/145979 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '145979' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_146012.yaml b/carps/configs/problem/HPOB/all/cfg_5971_146012.yaml new file mode 100644 index 000000000..853844849 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_146012.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/146012 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '146012' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_146065.yaml b/carps/configs/problem/HPOB/all/cfg_5971_146065.yaml new file mode 100644 index 000000000..376d6d103 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_146065.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/146065 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '146065' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_146085.yaml b/carps/configs/problem/HPOB/all/cfg_5971_146085.yaml new file mode 100644 index 000000000..e87c2bade --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_146085.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/146085 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '146085' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_14951.yaml b/carps/configs/problem/HPOB/all/cfg_5971_14951.yaml new file mode 100644 index 000000000..9768ff109 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_14965.yaml b/carps/configs/problem/HPOB/all/cfg_5971_14965.yaml new file mode 100644 index 000000000..a46aa2626 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_14965.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/14965 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '14965' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_14966.yaml b/carps/configs/problem/HPOB/all/cfg_5971_14966.yaml new file mode 100644 index 000000000..9a37161a4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_14966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/14966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '14966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_14971.yaml b/carps/configs/problem/HPOB/all/cfg_5971_14971.yaml new file mode 100644 index 000000000..183396870 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_14971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/14971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '14971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_219.yaml b/carps/configs/problem/HPOB/all/cfg_5971_219.yaml new file mode 100644 index 000000000..bc8b3cd57 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_3.yaml b/carps/configs/problem/HPOB/all/cfg_5971_3.yaml new file mode 100644 index 000000000..2455d80af --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_31.yaml b/carps/configs/problem/HPOB/all/cfg_5971_31.yaml new file mode 100644 index 000000000..c957893f1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_34536.yaml b/carps/configs/problem/HPOB/all/cfg_5971_34536.yaml new file mode 100644 index 000000000..99a636c7d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_34536.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/34536 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '34536' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_34537.yaml b/carps/configs/problem/HPOB/all/cfg_5971_34537.yaml new file mode 100644 index 000000000..853a1b627 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_34537.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/34537 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '34537' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_3485.yaml b/carps/configs/problem/HPOB/all/cfg_5971_3485.yaml new file mode 100644 index 000000000..3610243cd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_3485.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/3485 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '3485' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_3492.yaml b/carps/configs/problem/HPOB/all/cfg_5971_3492.yaml new file mode 100644 index 000000000..ea8d78a69 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_3492.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/3492 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '3492' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_3493.yaml b/carps/configs/problem/HPOB/all/cfg_5971_3493.yaml new file mode 100644 index 000000000..96e3b204a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_3494.yaml b/carps/configs/problem/HPOB/all/cfg_5971_3494.yaml new file mode 100644 index 000000000..5c04ecebb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_37.yaml b/carps/configs/problem/HPOB/all/cfg_5971_37.yaml new file mode 100644 index 000000000..6ab34e6e0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_3889.yaml b/carps/configs/problem/HPOB/all/cfg_5971_3889.yaml new file mode 100644 index 000000000..20f491501 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_3889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/3889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '3889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_3891.yaml b/carps/configs/problem/HPOB/all/cfg_5971_3891.yaml new file mode 100644 index 000000000..ad36b2bce --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_3891.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/3891 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '3891' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_3896.yaml b/carps/configs/problem/HPOB/all/cfg_5971_3896.yaml new file mode 100644 index 000000000..2d8a170d2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_3899.yaml b/carps/configs/problem/HPOB/all/cfg_5971_3899.yaml new file mode 100644 index 000000000..7ba109c0b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_3899.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/3899 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '3899' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_3902.yaml b/carps/configs/problem/HPOB/all/cfg_5971_3902.yaml new file mode 100644 index 000000000..f33dc0ffc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_3903.yaml b/carps/configs/problem/HPOB/all/cfg_5971_3903.yaml new file mode 100644 index 000000000..b799de2d6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_3903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/3903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '3903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_3913.yaml b/carps/configs/problem/HPOB/all/cfg_5971_3913.yaml new file mode 100644 index 000000000..c143d387f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_3917.yaml b/carps/configs/problem/HPOB/all/cfg_5971_3917.yaml new file mode 100644 index 000000000..b433cb5e3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_3918.yaml b/carps/configs/problem/HPOB/all/cfg_5971_3918.yaml new file mode 100644 index 000000000..3111523bc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_3918.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/3918 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '3918' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_3954.yaml b/carps/configs/problem/HPOB/all/cfg_5971_3954.yaml new file mode 100644 index 000000000..d8f7a95a0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_43.yaml b/carps/configs/problem/HPOB/all/cfg_5971_43.yaml new file mode 100644 index 000000000..69faeb718 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_49.yaml b/carps/configs/problem/HPOB/all/cfg_5971_49.yaml new file mode 100644 index 000000000..6fdd402a8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_6566.yaml b/carps/configs/problem/HPOB/all/cfg_5971_6566.yaml new file mode 100644 index 000000000..96931c840 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_6566.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/6566 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '6566' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_7295.yaml b/carps/configs/problem/HPOB/all/cfg_5971_7295.yaml new file mode 100644 index 000000000..45e497236 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_7295.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/7295 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '7295' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_9889.yaml b/carps/configs/problem/HPOB/all/cfg_5971_9889.yaml new file mode 100644 index 000000000..4d918cf48 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_9910.yaml b/carps/configs/problem/HPOB/all/cfg_5971_9910.yaml new file mode 100644 index 000000000..0fa51fc63 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_9910.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/9910 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '9910' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_9914.yaml b/carps/configs/problem/HPOB/all/cfg_5971_9914.yaml new file mode 100644 index 000000000..900455c71 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_9946.yaml b/carps/configs/problem/HPOB/all/cfg_5971_9946.yaml new file mode 100644 index 000000000..82307e369 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_9946.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/9946 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '9946' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_9952.yaml b/carps/configs/problem/HPOB/all/cfg_5971_9952.yaml new file mode 100644 index 000000000..f28f5a09a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_9957.yaml b/carps/configs/problem/HPOB/all/cfg_5971_9957.yaml new file mode 100644 index 000000000..9018eb928 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_9967.yaml b/carps/configs/problem/HPOB/all/cfg_5971_9967.yaml new file mode 100644 index 000000000..2226db499 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_9967.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/9967 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '9967' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_9970.yaml b/carps/configs/problem/HPOB/all/cfg_5971_9970.yaml new file mode 100644 index 000000000..8aeefd519 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_9970.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/9970 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '9970' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_9971.yaml b/carps/configs/problem/HPOB/all/cfg_5971_9971.yaml new file mode 100644 index 000000000..bb7e8b2d5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_9976.yaml b/carps/configs/problem/HPOB/all/cfg_5971_9976.yaml new file mode 100644 index 000000000..69ab7bd3f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_9976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/9976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '9976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_9977.yaml b/carps/configs/problem/HPOB/all/cfg_5971_9977.yaml new file mode 100644 index 000000000..0c72d25fa --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_9977.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/9977 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '9977' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_9978.yaml b/carps/configs/problem/HPOB/all/cfg_5971_9978.yaml new file mode 100644 index 000000000..f99ba50f6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_9978.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/9978 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '9978' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_9980.yaml b/carps/configs/problem/HPOB/all/cfg_5971_9980.yaml new file mode 100644 index 000000000..004aa4a9c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_9980.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/9980 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '9980' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5971_9983.yaml b/carps/configs/problem/HPOB/all/cfg_5971_9983.yaml new file mode 100644 index 000000000..27ae238c9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5971_9983.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5971/9983 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5971' + dataset_id: '9983' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5972_14965.yaml b/carps/configs/problem/HPOB/all/cfg_5972_14965.yaml new file mode 100644 index 000000000..fc1f30eb2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5972_14965.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5972/14965 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5972' + dataset_id: '14965' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5972_3485.yaml b/carps/configs/problem/HPOB/all/cfg_5972_3485.yaml new file mode 100644 index 000000000..a9caef617 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5972_3485.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5972/3485 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5972' + dataset_id: '3485' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5972_3954.yaml b/carps/configs/problem/HPOB/all/cfg_5972_3954.yaml new file mode 100644 index 000000000..1995a024c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5972_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5972/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5972' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5972_9952.yaml b/carps/configs/problem/HPOB/all/cfg_5972_9952.yaml new file mode 100644 index 000000000..0778a1f31 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5972_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5972/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5972' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_11.yaml b/carps/configs/problem/HPOB/all/cfg_5978_11.yaml new file mode 100644 index 000000000..c90ad8b2a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_11.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/11 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '11' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_12.yaml b/carps/configs/problem/HPOB/all/cfg_5978_12.yaml new file mode 100644 index 000000000..429652bd5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_12.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/12 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '12' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_14.yaml b/carps/configs/problem/HPOB/all/cfg_5978_14.yaml new file mode 100644 index 000000000..6588f97dc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_14.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/14 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '14' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_18.yaml b/carps/configs/problem/HPOB/all/cfg_5978_18.yaml new file mode 100644 index 000000000..95775f47f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_18.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/18 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '18' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_20.yaml b/carps/configs/problem/HPOB/all/cfg_5978_20.yaml new file mode 100644 index 000000000..80fdd52af --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_20.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/20 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '20' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_2068.yaml b/carps/configs/problem/HPOB/all/cfg_5978_2068.yaml new file mode 100644 index 000000000..d65004d54 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_2068.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/2068 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '2068' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_2071.yaml b/carps/configs/problem/HPOB/all/cfg_5978_2071.yaml new file mode 100644 index 000000000..5a2cbe0a7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_2071.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/2071 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '2071' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_2074.yaml b/carps/configs/problem/HPOB/all/cfg_5978_2074.yaml new file mode 100644 index 000000000..8abeea70f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_2074.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/2074 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '2074' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_2075.yaml b/carps/configs/problem/HPOB/all/cfg_5978_2075.yaml new file mode 100644 index 000000000..8aeaa1392 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_2075.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/2075 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '2075' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_2076.yaml b/carps/configs/problem/HPOB/all/cfg_5978_2076.yaml new file mode 100644 index 000000000..809b96e99 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_2076.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/2076 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '2076' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_2077.yaml b/carps/configs/problem/HPOB/all/cfg_5978_2077.yaml new file mode 100644 index 000000000..6f77e28a2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_2077.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/2077 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '2077' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_2079.yaml b/carps/configs/problem/HPOB/all/cfg_5978_2079.yaml new file mode 100644 index 000000000..6ee701983 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_2079.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/2079 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '2079' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_21.yaml b/carps/configs/problem/HPOB/all/cfg_5978_21.yaml new file mode 100644 index 000000000..297587d77 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_21.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/21 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '21' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_219.yaml b/carps/configs/problem/HPOB/all/cfg_5978_219.yaml new file mode 100644 index 000000000..98b226abf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_22.yaml b/carps/configs/problem/HPOB/all/cfg_5978_22.yaml new file mode 100644 index 000000000..914b2e71c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_22.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/22 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '22' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_24.yaml b/carps/configs/problem/HPOB/all/cfg_5978_24.yaml new file mode 100644 index 000000000..5d0e952ad --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_24.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/24 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '24' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_26.yaml b/carps/configs/problem/HPOB/all/cfg_5978_26.yaml new file mode 100644 index 000000000..bbe126178 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_26.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/26 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '26' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_28.yaml b/carps/configs/problem/HPOB/all/cfg_5978_28.yaml new file mode 100644 index 000000000..28f638337 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_28.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/28 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '28' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_29.yaml b/carps/configs/problem/HPOB/all/cfg_5978_29.yaml new file mode 100644 index 000000000..b47bda273 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_30.yaml b/carps/configs/problem/HPOB/all/cfg_5978_30.yaml new file mode 100644 index 000000000..e8ef9c95b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_30.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/30 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '30' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_31.yaml b/carps/configs/problem/HPOB/all/cfg_5978_31.yaml new file mode 100644 index 000000000..a5a71e47f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_32.yaml b/carps/configs/problem/HPOB/all/cfg_5978_32.yaml new file mode 100644 index 000000000..da64b006c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_32.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/32 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '32' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_33.yaml b/carps/configs/problem/HPOB/all/cfg_5978_33.yaml new file mode 100644 index 000000000..bf36c861e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_33.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/33 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '33' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_36.yaml b/carps/configs/problem/HPOB/all/cfg_5978_36.yaml new file mode 100644 index 000000000..10ada0fa9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_36.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/36 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '36' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_41.yaml b/carps/configs/problem/HPOB/all/cfg_5978_41.yaml new file mode 100644 index 000000000..6451d3ac7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_41.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/41 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '41' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_43.yaml b/carps/configs/problem/HPOB/all/cfg_5978_43.yaml new file mode 100644 index 000000000..e7231bfd8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_45.yaml b/carps/configs/problem/HPOB/all/cfg_5978_45.yaml new file mode 100644 index 000000000..c5e68dbb2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_45.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/45 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '45' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_49.yaml b/carps/configs/problem/HPOB/all/cfg_5978_49.yaml new file mode 100644 index 000000000..ff6231dce --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_53.yaml b/carps/configs/problem/HPOB/all/cfg_5978_53.yaml new file mode 100644 index 000000000..129494d70 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_53.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/53 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '53' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_58.yaml b/carps/configs/problem/HPOB/all/cfg_5978_58.yaml new file mode 100644 index 000000000..12adf6d28 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_58.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/58 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '58' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5978_6.yaml b/carps/configs/problem/HPOB/all/cfg_5978_6.yaml new file mode 100644 index 000000000..e86cc0d57 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5978_6.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5978/6 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5978' + dataset_id: '6' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5988_14.yaml b/carps/configs/problem/HPOB/all/cfg_5988_14.yaml new file mode 100644 index 000000000..c02e425f6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5988_14.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5988/14 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5988' + dataset_id: '14' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 31 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 31 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5988_20.yaml b/carps/configs/problem/HPOB/all/cfg_5988_20.yaml new file mode 100644 index 000000000..09cafdb35 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5988_20.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5988/20 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5988' + dataset_id: '20' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 31 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 31 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5988_21.yaml b/carps/configs/problem/HPOB/all/cfg_5988_21.yaml new file mode 100644 index 000000000..36dea87de --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5988_21.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5988/21 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5988' + dataset_id: '21' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 31 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 31 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5988_3.yaml b/carps/configs/problem/HPOB/all/cfg_5988_3.yaml new file mode 100644 index 000000000..15a1cdf18 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5988_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5988/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5988' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 31 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 31 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5988_33.yaml b/carps/configs/problem/HPOB/all/cfg_5988_33.yaml new file mode 100644 index 000000000..4b7099366 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5988_33.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5988/33 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5988' + dataset_id: '33' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 31 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 31 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5988_45.yaml b/carps/configs/problem/HPOB/all/cfg_5988_45.yaml new file mode 100644 index 000000000..ebc7bcf94 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5988_45.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5988/45 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5988' + dataset_id: '45' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 31 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 31 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5988_49.yaml b/carps/configs/problem/HPOB/all/cfg_5988_49.yaml new file mode 100644 index 000000000..86cee0f32 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5988_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5988/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5988' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 31 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 31 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_5988_53.yaml b/carps/configs/problem/HPOB/all/cfg_5988_53.yaml new file mode 100644 index 000000000..bae8e18c1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_5988_53.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/5988/53 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5988' + dataset_id: '53' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 31 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 31 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6000_3917.yaml b/carps/configs/problem/HPOB/all/cfg_6000_3917.yaml new file mode 100644 index 000000000..85841d877 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6000_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6000/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6000' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6003_219.yaml b/carps/configs/problem/HPOB/all/cfg_6003_219.yaml new file mode 100644 index 000000000..013b287d3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6003_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6003/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6003' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6003_3902.yaml b/carps/configs/problem/HPOB/all/cfg_6003_3902.yaml new file mode 100644 index 000000000..f266ced83 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6003_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6003/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6003' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_11.yaml b/carps/configs/problem/HPOB/all/cfg_6007_11.yaml new file mode 100644 index 000000000..523a5b9b2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_11.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/11 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '11' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_12.yaml b/carps/configs/problem/HPOB/all/cfg_6007_12.yaml new file mode 100644 index 000000000..0e37acbf2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_12.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/12 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '12' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_14.yaml b/carps/configs/problem/HPOB/all/cfg_6007_14.yaml new file mode 100644 index 000000000..ed744d28d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_14.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/14 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '14' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_16.yaml b/carps/configs/problem/HPOB/all/cfg_6007_16.yaml new file mode 100644 index 000000000..74da7ba06 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_16.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/16 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '16' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_18.yaml b/carps/configs/problem/HPOB/all/cfg_6007_18.yaml new file mode 100644 index 000000000..3a62208ba --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_18.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/18 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '18' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_20.yaml b/carps/configs/problem/HPOB/all/cfg_6007_20.yaml new file mode 100644 index 000000000..4da1e583a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_20.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/20 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '20' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_2068.yaml b/carps/configs/problem/HPOB/all/cfg_6007_2068.yaml new file mode 100644 index 000000000..c78736e4e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_2068.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/2068 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '2068' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_2071.yaml b/carps/configs/problem/HPOB/all/cfg_6007_2071.yaml new file mode 100644 index 000000000..c551352a6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_2071.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/2071 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '2071' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_2073.yaml b/carps/configs/problem/HPOB/all/cfg_6007_2073.yaml new file mode 100644 index 000000000..b9b4495cc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_2073.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/2073 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '2073' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_2074.yaml b/carps/configs/problem/HPOB/all/cfg_6007_2074.yaml new file mode 100644 index 000000000..82fdeb0cf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_2074.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/2074 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '2074' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_2075.yaml b/carps/configs/problem/HPOB/all/cfg_6007_2075.yaml new file mode 100644 index 000000000..1ebead27e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_2075.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/2075 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '2075' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_2076.yaml b/carps/configs/problem/HPOB/all/cfg_6007_2076.yaml new file mode 100644 index 000000000..18411c6da --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_2076.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/2076 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '2076' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_2079.yaml b/carps/configs/problem/HPOB/all/cfg_6007_2079.yaml new file mode 100644 index 000000000..6ed5bdfa9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_2079.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/2079 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '2079' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_21.yaml b/carps/configs/problem/HPOB/all/cfg_6007_21.yaml new file mode 100644 index 000000000..f334c80d7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_21.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/21 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '21' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_219.yaml b/carps/configs/problem/HPOB/all/cfg_6007_219.yaml new file mode 100644 index 000000000..d1ea884b1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_22.yaml b/carps/configs/problem/HPOB/all/cfg_6007_22.yaml new file mode 100644 index 000000000..b193f0207 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_22.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/22 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '22' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_23.yaml b/carps/configs/problem/HPOB/all/cfg_6007_23.yaml new file mode 100644 index 000000000..377b3740c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_23.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/23 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '23' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_24.yaml b/carps/configs/problem/HPOB/all/cfg_6007_24.yaml new file mode 100644 index 000000000..0056bee8c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_24.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/24 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '24' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_26.yaml b/carps/configs/problem/HPOB/all/cfg_6007_26.yaml new file mode 100644 index 000000000..ba85f1e77 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_26.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/26 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '26' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_28.yaml b/carps/configs/problem/HPOB/all/cfg_6007_28.yaml new file mode 100644 index 000000000..5eb70e8d9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_28.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/28 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '28' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_29.yaml b/carps/configs/problem/HPOB/all/cfg_6007_29.yaml new file mode 100644 index 000000000..b52873b51 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_31.yaml b/carps/configs/problem/HPOB/all/cfg_6007_31.yaml new file mode 100644 index 000000000..c5a97357c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_32.yaml b/carps/configs/problem/HPOB/all/cfg_6007_32.yaml new file mode 100644 index 000000000..565c8d720 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_32.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/32 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '32' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_33.yaml b/carps/configs/problem/HPOB/all/cfg_6007_33.yaml new file mode 100644 index 000000000..704461219 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_33.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/33 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '33' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_41.yaml b/carps/configs/problem/HPOB/all/cfg_6007_41.yaml new file mode 100644 index 000000000..b8be52256 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_41.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/41 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '41' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_43.yaml b/carps/configs/problem/HPOB/all/cfg_6007_43.yaml new file mode 100644 index 000000000..bc0d0e210 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_45.yaml b/carps/configs/problem/HPOB/all/cfg_6007_45.yaml new file mode 100644 index 000000000..b08af7e1d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_45.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/45 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '45' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_49.yaml b/carps/configs/problem/HPOB/all/cfg_6007_49.yaml new file mode 100644 index 000000000..6b9b9891e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_53.yaml b/carps/configs/problem/HPOB/all/cfg_6007_53.yaml new file mode 100644 index 000000000..1b48ec283 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_53.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/53 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '53' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_58.yaml b/carps/configs/problem/HPOB/all/cfg_6007_58.yaml new file mode 100644 index 000000000..f1289eea5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_58.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/58 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '58' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6007_6.yaml b/carps/configs/problem/HPOB/all/cfg_6007_6.yaml new file mode 100644 index 000000000..164b0f8ac --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6007_6.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6007/6 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6007' + dataset_id: '6' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6024_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6024_145682.yaml new file mode 100644 index 000000000..b8d7bcdfb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6024_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6024/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6024' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_11.yaml b/carps/configs/problem/HPOB/all/cfg_6073_11.yaml new file mode 100644 index 000000000..e2712b2b5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_11.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/11 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '11' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_12.yaml b/carps/configs/problem/HPOB/all/cfg_6073_12.yaml new file mode 100644 index 000000000..13205e5fe --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_12.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/12 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '12' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_15.yaml b/carps/configs/problem/HPOB/all/cfg_6073_15.yaml new file mode 100644 index 000000000..b05d0124e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_15.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/15 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '15' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_18.yaml b/carps/configs/problem/HPOB/all/cfg_6073_18.yaml new file mode 100644 index 000000000..2f9478aae --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_18.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/18 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '18' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_20.yaml b/carps/configs/problem/HPOB/all/cfg_6073_20.yaml new file mode 100644 index 000000000..d16e96832 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_20.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/20 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '20' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_2068.yaml b/carps/configs/problem/HPOB/all/cfg_6073_2068.yaml new file mode 100644 index 000000000..332af1a90 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_2068.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/2068 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '2068' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_2071.yaml b/carps/configs/problem/HPOB/all/cfg_6073_2071.yaml new file mode 100644 index 000000000..6e5b6ad14 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_2071.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/2071 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '2071' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_2073.yaml b/carps/configs/problem/HPOB/all/cfg_6073_2073.yaml new file mode 100644 index 000000000..6ff62000c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_2073.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/2073 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '2073' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_2074.yaml b/carps/configs/problem/HPOB/all/cfg_6073_2074.yaml new file mode 100644 index 000000000..7a90ed1b8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_2074.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/2074 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '2074' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_2076.yaml b/carps/configs/problem/HPOB/all/cfg_6073_2076.yaml new file mode 100644 index 000000000..ee449c954 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_2076.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/2076 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '2076' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_2077.yaml b/carps/configs/problem/HPOB/all/cfg_6073_2077.yaml new file mode 100644 index 000000000..a60c631b8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_2077.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/2077 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '2077' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_2079.yaml b/carps/configs/problem/HPOB/all/cfg_6073_2079.yaml new file mode 100644 index 000000000..9abf01d73 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_2079.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/2079 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '2079' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_21.yaml b/carps/configs/problem/HPOB/all/cfg_6073_21.yaml new file mode 100644 index 000000000..5d8f5d23c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_21.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/21 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '21' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_219.yaml b/carps/configs/problem/HPOB/all/cfg_6073_219.yaml new file mode 100644 index 000000000..65732ccdb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_22.yaml b/carps/configs/problem/HPOB/all/cfg_6073_22.yaml new file mode 100644 index 000000000..4d379cf72 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_22.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/22 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '22' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_23.yaml b/carps/configs/problem/HPOB/all/cfg_6073_23.yaml new file mode 100644 index 000000000..4418f163b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_23.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/23 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '23' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_24.yaml b/carps/configs/problem/HPOB/all/cfg_6073_24.yaml new file mode 100644 index 000000000..aac1b3fb5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_24.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/24 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '24' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_26.yaml b/carps/configs/problem/HPOB/all/cfg_6073_26.yaml new file mode 100644 index 000000000..c63daa19b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_26.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/26 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '26' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_28.yaml b/carps/configs/problem/HPOB/all/cfg_6073_28.yaml new file mode 100644 index 000000000..cf3749136 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_28.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/28 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '28' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_29.yaml b/carps/configs/problem/HPOB/all/cfg_6073_29.yaml new file mode 100644 index 000000000..406a3f675 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_3.yaml b/carps/configs/problem/HPOB/all/cfg_6073_3.yaml new file mode 100644 index 000000000..e46376586 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_30.yaml b/carps/configs/problem/HPOB/all/cfg_6073_30.yaml new file mode 100644 index 000000000..37c94a5b1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_30.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/30 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '30' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_31.yaml b/carps/configs/problem/HPOB/all/cfg_6073_31.yaml new file mode 100644 index 000000000..0a5098f66 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_33.yaml b/carps/configs/problem/HPOB/all/cfg_6073_33.yaml new file mode 100644 index 000000000..32623d4a4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_33.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/33 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '33' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_36.yaml b/carps/configs/problem/HPOB/all/cfg_6073_36.yaml new file mode 100644 index 000000000..daa1eb181 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_36.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/36 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '36' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_37.yaml b/carps/configs/problem/HPOB/all/cfg_6073_37.yaml new file mode 100644 index 000000000..a715b843e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_41.yaml b/carps/configs/problem/HPOB/all/cfg_6073_41.yaml new file mode 100644 index 000000000..7ee7d21ef --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_41.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/41 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '41' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_43.yaml b/carps/configs/problem/HPOB/all/cfg_6073_43.yaml new file mode 100644 index 000000000..c39d71b72 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_45.yaml b/carps/configs/problem/HPOB/all/cfg_6073_45.yaml new file mode 100644 index 000000000..0d909ffac --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_45.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/45 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '45' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_53.yaml b/carps/configs/problem/HPOB/all/cfg_6073_53.yaml new file mode 100644 index 000000000..357b46577 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_53.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/53 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '53' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_58.yaml b/carps/configs/problem/HPOB/all/cfg_6073_58.yaml new file mode 100644 index 000000000..3a87e09bb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_58.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/58 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '58' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6073_6.yaml b/carps/configs/problem/HPOB/all/cfg_6073_6.yaml new file mode 100644 index 000000000..226c94564 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6073_6.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6073/6 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '6' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6075_9952.yaml b/carps/configs/problem/HPOB/all/cfg_6075_9952.yaml new file mode 100644 index 000000000..b52204177 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6075_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6075/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6075' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_14.yaml b/carps/configs/problem/HPOB/all/cfg_6105_14.yaml new file mode 100644 index 000000000..45579bb7c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_14.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/14 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '14' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_18.yaml b/carps/configs/problem/HPOB/all/cfg_6105_18.yaml new file mode 100644 index 000000000..014996493 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_18.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/18 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '18' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_2.yaml b/carps/configs/problem/HPOB/all/cfg_6105_2.yaml new file mode 100644 index 000000000..8536465fb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_2.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/2 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '2' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_2068.yaml b/carps/configs/problem/HPOB/all/cfg_6105_2068.yaml new file mode 100644 index 000000000..c0cb96016 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_2068.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/2068 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '2068' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_2073.yaml b/carps/configs/problem/HPOB/all/cfg_6105_2073.yaml new file mode 100644 index 000000000..3703958fa --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_2073.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/2073 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '2073' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_2074.yaml b/carps/configs/problem/HPOB/all/cfg_6105_2074.yaml new file mode 100644 index 000000000..baf5bd24b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_2074.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/2074 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '2074' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_2075.yaml b/carps/configs/problem/HPOB/all/cfg_6105_2075.yaml new file mode 100644 index 000000000..e2144f1e9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_2075.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/2075 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '2075' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_2076.yaml b/carps/configs/problem/HPOB/all/cfg_6105_2076.yaml new file mode 100644 index 000000000..e9337d368 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_2076.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/2076 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '2076' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_2077.yaml b/carps/configs/problem/HPOB/all/cfg_6105_2077.yaml new file mode 100644 index 000000000..47b0f5182 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_2077.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/2077 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '2077' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_2079.yaml b/carps/configs/problem/HPOB/all/cfg_6105_2079.yaml new file mode 100644 index 000000000..1edda052d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_2079.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/2079 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '2079' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_21.yaml b/carps/configs/problem/HPOB/all/cfg_6105_21.yaml new file mode 100644 index 000000000..d174d702c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_21.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/21 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '21' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_219.yaml b/carps/configs/problem/HPOB/all/cfg_6105_219.yaml new file mode 100644 index 000000000..eece6d736 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_22.yaml b/carps/configs/problem/HPOB/all/cfg_6105_22.yaml new file mode 100644 index 000000000..a780f4c7f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_22.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/22 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '22' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_23.yaml b/carps/configs/problem/HPOB/all/cfg_6105_23.yaml new file mode 100644 index 000000000..a4978d38e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_23.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/23 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '23' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_24.yaml b/carps/configs/problem/HPOB/all/cfg_6105_24.yaml new file mode 100644 index 000000000..7562cd737 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_24.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/24 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '24' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_26.yaml b/carps/configs/problem/HPOB/all/cfg_6105_26.yaml new file mode 100644 index 000000000..09ba204fd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_26.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/26 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '26' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_28.yaml b/carps/configs/problem/HPOB/all/cfg_6105_28.yaml new file mode 100644 index 000000000..32a9776bf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_28.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/28 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '28' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_29.yaml b/carps/configs/problem/HPOB/all/cfg_6105_29.yaml new file mode 100644 index 000000000..ca42485a8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_3.yaml b/carps/configs/problem/HPOB/all/cfg_6105_3.yaml new file mode 100644 index 000000000..b9082d43b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_30.yaml b/carps/configs/problem/HPOB/all/cfg_6105_30.yaml new file mode 100644 index 000000000..1a77b5f3f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_30.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/30 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '30' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_31.yaml b/carps/configs/problem/HPOB/all/cfg_6105_31.yaml new file mode 100644 index 000000000..eab1ae206 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_32.yaml b/carps/configs/problem/HPOB/all/cfg_6105_32.yaml new file mode 100644 index 000000000..46f83f2fd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_32.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/32 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '32' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_33.yaml b/carps/configs/problem/HPOB/all/cfg_6105_33.yaml new file mode 100644 index 000000000..ad757bd79 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_33.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/33 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '33' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_36.yaml b/carps/configs/problem/HPOB/all/cfg_6105_36.yaml new file mode 100644 index 000000000..6d2abe2b8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_36.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/36 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '36' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_37.yaml b/carps/configs/problem/HPOB/all/cfg_6105_37.yaml new file mode 100644 index 000000000..b990e07b4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_41.yaml b/carps/configs/problem/HPOB/all/cfg_6105_41.yaml new file mode 100644 index 000000000..63a76cd40 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_41.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/41 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '41' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_43.yaml b/carps/configs/problem/HPOB/all/cfg_6105_43.yaml new file mode 100644 index 000000000..ba82f4cb4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_45.yaml b/carps/configs/problem/HPOB/all/cfg_6105_45.yaml new file mode 100644 index 000000000..fe8862faf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_45.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/45 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '45' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_49.yaml b/carps/configs/problem/HPOB/all/cfg_6105_49.yaml new file mode 100644 index 000000000..dfd77bfa2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_53.yaml b/carps/configs/problem/HPOB/all/cfg_6105_53.yaml new file mode 100644 index 000000000..061dc40d6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_53.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/53 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '53' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_58.yaml b/carps/configs/problem/HPOB/all/cfg_6105_58.yaml new file mode 100644 index 000000000..556adfe9a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_58.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/58 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '58' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6105_6.yaml b/carps/configs/problem/HPOB/all/cfg_6105_6.yaml new file mode 100644 index 000000000..e7791828e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6105_6.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6105/6 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6105' + dataset_id: '6' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 53 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 53 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6124_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6124_145682.yaml new file mode 100644 index 000000000..a5a66c968 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6124_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6124/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6124' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6131_14951.yaml b/carps/configs/problem/HPOB/all/cfg_6131_14951.yaml new file mode 100644 index 000000000..a9b8d0029 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6131_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6131/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6131' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6134_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6134_145682.yaml new file mode 100644 index 000000000..90381e298 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6134_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6134/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6134' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 11 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 11 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_11.yaml b/carps/configs/problem/HPOB/all/cfg_6136_11.yaml new file mode 100644 index 000000000..7587cc18b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_11.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/11 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '11' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_12.yaml b/carps/configs/problem/HPOB/all/cfg_6136_12.yaml new file mode 100644 index 000000000..2b025ada0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_12.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/12 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '12' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_14.yaml b/carps/configs/problem/HPOB/all/cfg_6136_14.yaml new file mode 100644 index 000000000..7e2f1ef84 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_14.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/14 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '14' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_16.yaml b/carps/configs/problem/HPOB/all/cfg_6136_16.yaml new file mode 100644 index 000000000..54de4b5c5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_16.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/16 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '16' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_18.yaml b/carps/configs/problem/HPOB/all/cfg_6136_18.yaml new file mode 100644 index 000000000..2d3bfc2ec --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_18.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/18 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '18' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_2068.yaml b/carps/configs/problem/HPOB/all/cfg_6136_2068.yaml new file mode 100644 index 000000000..6123204d3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_2068.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/2068 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '2068' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_2074.yaml b/carps/configs/problem/HPOB/all/cfg_6136_2074.yaml new file mode 100644 index 000000000..7600b0bf6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_2074.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/2074 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '2074' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_2075.yaml b/carps/configs/problem/HPOB/all/cfg_6136_2075.yaml new file mode 100644 index 000000000..2d3667dd1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_2075.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/2075 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '2075' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_2076.yaml b/carps/configs/problem/HPOB/all/cfg_6136_2076.yaml new file mode 100644 index 000000000..13e3097ee --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_2076.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/2076 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '2076' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_2079.yaml b/carps/configs/problem/HPOB/all/cfg_6136_2079.yaml new file mode 100644 index 000000000..242149a0e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_2079.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/2079 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '2079' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_21.yaml b/carps/configs/problem/HPOB/all/cfg_6136_21.yaml new file mode 100644 index 000000000..4671ac40e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_21.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/21 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '21' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_219.yaml b/carps/configs/problem/HPOB/all/cfg_6136_219.yaml new file mode 100644 index 000000000..e5dac2a0d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_22.yaml b/carps/configs/problem/HPOB/all/cfg_6136_22.yaml new file mode 100644 index 000000000..067f953df --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_22.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/22 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '22' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_23.yaml b/carps/configs/problem/HPOB/all/cfg_6136_23.yaml new file mode 100644 index 000000000..d45a071c1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_23.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/23 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '23' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_24.yaml b/carps/configs/problem/HPOB/all/cfg_6136_24.yaml new file mode 100644 index 000000000..a5b0ddd23 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_24.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/24 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '24' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_26.yaml b/carps/configs/problem/HPOB/all/cfg_6136_26.yaml new file mode 100644 index 000000000..cee79df1a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_26.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/26 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '26' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_28.yaml b/carps/configs/problem/HPOB/all/cfg_6136_28.yaml new file mode 100644 index 000000000..2b487e85b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_28.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/28 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '28' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_29.yaml b/carps/configs/problem/HPOB/all/cfg_6136_29.yaml new file mode 100644 index 000000000..ed8d08ca4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_30.yaml b/carps/configs/problem/HPOB/all/cfg_6136_30.yaml new file mode 100644 index 000000000..f1d32e2ec --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_30.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/30 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '30' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_31.yaml b/carps/configs/problem/HPOB/all/cfg_6136_31.yaml new file mode 100644 index 000000000..e1c236f9b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_32.yaml b/carps/configs/problem/HPOB/all/cfg_6136_32.yaml new file mode 100644 index 000000000..23256ed8d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_32.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/32 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '32' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_33.yaml b/carps/configs/problem/HPOB/all/cfg_6136_33.yaml new file mode 100644 index 000000000..51154f3dc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_33.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/33 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '33' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_36.yaml b/carps/configs/problem/HPOB/all/cfg_6136_36.yaml new file mode 100644 index 000000000..0fc37e6d4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_36.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/36 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '36' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_37.yaml b/carps/configs/problem/HPOB/all/cfg_6136_37.yaml new file mode 100644 index 000000000..2178af6c9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_41.yaml b/carps/configs/problem/HPOB/all/cfg_6136_41.yaml new file mode 100644 index 000000000..b53962d03 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_41.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/41 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '41' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_43.yaml b/carps/configs/problem/HPOB/all/cfg_6136_43.yaml new file mode 100644 index 000000000..c58bcb169 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_45.yaml b/carps/configs/problem/HPOB/all/cfg_6136_45.yaml new file mode 100644 index 000000000..7cc529016 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_45.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/45 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '45' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_49.yaml b/carps/configs/problem/HPOB/all/cfg_6136_49.yaml new file mode 100644 index 000000000..3e4a9954b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_58.yaml b/carps/configs/problem/HPOB/all/cfg_6136_58.yaml new file mode 100644 index 000000000..4b48974dc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_58.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/58 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '58' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6136_6.yaml b/carps/configs/problem/HPOB/all/cfg_6136_6.yaml new file mode 100644 index 000000000..8d6a23ad8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6136_6.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6136/6 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6136' + dataset_id: '6' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6137_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6137_145682.yaml new file mode 100644 index 000000000..43022ad99 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6137_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6137/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6137' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6139_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6139_145682.yaml new file mode 100644 index 000000000..9e5aba48d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6139_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6139/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6139' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_11.yaml b/carps/configs/problem/HPOB/all/cfg_6140_11.yaml new file mode 100644 index 000000000..8692e2977 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_11.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/11 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '11' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_12.yaml b/carps/configs/problem/HPOB/all/cfg_6140_12.yaml new file mode 100644 index 000000000..e31c6f41b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_12.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/12 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '12' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_14.yaml b/carps/configs/problem/HPOB/all/cfg_6140_14.yaml new file mode 100644 index 000000000..448d3af5d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_14.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/14 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '14' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_18.yaml b/carps/configs/problem/HPOB/all/cfg_6140_18.yaml new file mode 100644 index 000000000..776438ee8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_18.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/18 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '18' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_20.yaml b/carps/configs/problem/HPOB/all/cfg_6140_20.yaml new file mode 100644 index 000000000..3afa551e9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_20.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/20 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '20' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_2068.yaml b/carps/configs/problem/HPOB/all/cfg_6140_2068.yaml new file mode 100644 index 000000000..a1ef0205b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_2068.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/2068 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '2068' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_2074.yaml b/carps/configs/problem/HPOB/all/cfg_6140_2074.yaml new file mode 100644 index 000000000..4e5fe0930 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_2074.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/2074 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '2074' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_2075.yaml b/carps/configs/problem/HPOB/all/cfg_6140_2075.yaml new file mode 100644 index 000000000..23f20ae32 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_2075.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/2075 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '2075' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_2076.yaml b/carps/configs/problem/HPOB/all/cfg_6140_2076.yaml new file mode 100644 index 000000000..22138f929 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_2076.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/2076 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '2076' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_2077.yaml b/carps/configs/problem/HPOB/all/cfg_6140_2077.yaml new file mode 100644 index 000000000..fb207bbab --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_2077.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/2077 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '2077' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_2079.yaml b/carps/configs/problem/HPOB/all/cfg_6140_2079.yaml new file mode 100644 index 000000000..8f4411906 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_2079.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/2079 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '2079' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_21.yaml b/carps/configs/problem/HPOB/all/cfg_6140_21.yaml new file mode 100644 index 000000000..4f9feafda --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_21.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/21 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '21' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_219.yaml b/carps/configs/problem/HPOB/all/cfg_6140_219.yaml new file mode 100644 index 000000000..a6ace18fd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_22.yaml b/carps/configs/problem/HPOB/all/cfg_6140_22.yaml new file mode 100644 index 000000000..6d63cc6e7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_22.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/22 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '22' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_23.yaml b/carps/configs/problem/HPOB/all/cfg_6140_23.yaml new file mode 100644 index 000000000..3520e1a1e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_23.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/23 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '23' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_24.yaml b/carps/configs/problem/HPOB/all/cfg_6140_24.yaml new file mode 100644 index 000000000..f81d5b9d9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_24.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/24 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '24' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_26.yaml b/carps/configs/problem/HPOB/all/cfg_6140_26.yaml new file mode 100644 index 000000000..098716b1b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_26.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/26 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '26' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_28.yaml b/carps/configs/problem/HPOB/all/cfg_6140_28.yaml new file mode 100644 index 000000000..d18758e2b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_28.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/28 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '28' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_29.yaml b/carps/configs/problem/HPOB/all/cfg_6140_29.yaml new file mode 100644 index 000000000..058468d82 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_30.yaml b/carps/configs/problem/HPOB/all/cfg_6140_30.yaml new file mode 100644 index 000000000..422806e8d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_30.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/30 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '30' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_31.yaml b/carps/configs/problem/HPOB/all/cfg_6140_31.yaml new file mode 100644 index 000000000..802219a8d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_32.yaml b/carps/configs/problem/HPOB/all/cfg_6140_32.yaml new file mode 100644 index 000000000..30639bc88 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_32.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/32 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '32' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_33.yaml b/carps/configs/problem/HPOB/all/cfg_6140_33.yaml new file mode 100644 index 000000000..b8f7a6e3e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_33.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/33 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '33' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_36.yaml b/carps/configs/problem/HPOB/all/cfg_6140_36.yaml new file mode 100644 index 000000000..0cba13ca7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_36.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/36 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '36' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_41.yaml b/carps/configs/problem/HPOB/all/cfg_6140_41.yaml new file mode 100644 index 000000000..08ec3d619 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_41.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/41 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '41' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_43.yaml b/carps/configs/problem/HPOB/all/cfg_6140_43.yaml new file mode 100644 index 000000000..cc0a2c4b6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_45.yaml b/carps/configs/problem/HPOB/all/cfg_6140_45.yaml new file mode 100644 index 000000000..0972618c5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_45.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/45 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '45' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_49.yaml b/carps/configs/problem/HPOB/all/cfg_6140_49.yaml new file mode 100644 index 000000000..3ab6decaf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_53.yaml b/carps/configs/problem/HPOB/all/cfg_6140_53.yaml new file mode 100644 index 000000000..aa0d38e1d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_53.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/53 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '53' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_58.yaml b/carps/configs/problem/HPOB/all/cfg_6140_58.yaml new file mode 100644 index 000000000..0982ae873 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_58.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/58 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '58' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6140_6.yaml b/carps/configs/problem/HPOB/all/cfg_6140_6.yaml new file mode 100644 index 000000000..eb652653c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6140_6.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6140/6 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6140' + dataset_id: '6' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_11.yaml b/carps/configs/problem/HPOB/all/cfg_6154_11.yaml new file mode 100644 index 000000000..4498174be --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_11.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/11 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '11' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_12.yaml b/carps/configs/problem/HPOB/all/cfg_6154_12.yaml new file mode 100644 index 000000000..32af4be21 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_12.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/12 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '12' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_14.yaml b/carps/configs/problem/HPOB/all/cfg_6154_14.yaml new file mode 100644 index 000000000..df10096ad --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_14.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/14 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '14' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_18.yaml b/carps/configs/problem/HPOB/all/cfg_6154_18.yaml new file mode 100644 index 000000000..46887bf64 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_18.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/18 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '18' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_20.yaml b/carps/configs/problem/HPOB/all/cfg_6154_20.yaml new file mode 100644 index 000000000..29abe40f8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_20.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/20 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '20' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_2068.yaml b/carps/configs/problem/HPOB/all/cfg_6154_2068.yaml new file mode 100644 index 000000000..fff64ba74 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_2068.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/2068 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '2068' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_2074.yaml b/carps/configs/problem/HPOB/all/cfg_6154_2074.yaml new file mode 100644 index 000000000..75f4b65cd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_2074.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/2074 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '2074' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_2075.yaml b/carps/configs/problem/HPOB/all/cfg_6154_2075.yaml new file mode 100644 index 000000000..efa1e6046 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_2075.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/2075 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '2075' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_2076.yaml b/carps/configs/problem/HPOB/all/cfg_6154_2076.yaml new file mode 100644 index 000000000..4466f6276 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_2076.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/2076 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '2076' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_2077.yaml b/carps/configs/problem/HPOB/all/cfg_6154_2077.yaml new file mode 100644 index 000000000..729d50f47 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_2077.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/2077 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '2077' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_2079.yaml b/carps/configs/problem/HPOB/all/cfg_6154_2079.yaml new file mode 100644 index 000000000..2557ff859 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_2079.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/2079 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '2079' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_21.yaml b/carps/configs/problem/HPOB/all/cfg_6154_21.yaml new file mode 100644 index 000000000..0e789547d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_21.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/21 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '21' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_219.yaml b/carps/configs/problem/HPOB/all/cfg_6154_219.yaml new file mode 100644 index 000000000..e37b6641c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_22.yaml b/carps/configs/problem/HPOB/all/cfg_6154_22.yaml new file mode 100644 index 000000000..7879983ff --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_22.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/22 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '22' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_23.yaml b/carps/configs/problem/HPOB/all/cfg_6154_23.yaml new file mode 100644 index 000000000..958533373 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_23.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/23 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '23' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_24.yaml b/carps/configs/problem/HPOB/all/cfg_6154_24.yaml new file mode 100644 index 000000000..a890c866e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_24.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/24 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '24' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_26.yaml b/carps/configs/problem/HPOB/all/cfg_6154_26.yaml new file mode 100644 index 000000000..62f414419 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_26.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/26 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '26' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_28.yaml b/carps/configs/problem/HPOB/all/cfg_6154_28.yaml new file mode 100644 index 000000000..17eb618c4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_28.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/28 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '28' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_29.yaml b/carps/configs/problem/HPOB/all/cfg_6154_29.yaml new file mode 100644 index 000000000..72c5fc6d6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_30.yaml b/carps/configs/problem/HPOB/all/cfg_6154_30.yaml new file mode 100644 index 000000000..a335f6e6a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_30.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/30 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '30' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_31.yaml b/carps/configs/problem/HPOB/all/cfg_6154_31.yaml new file mode 100644 index 000000000..ed29ef54e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_32.yaml b/carps/configs/problem/HPOB/all/cfg_6154_32.yaml new file mode 100644 index 000000000..97a25b247 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_32.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/32 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '32' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_33.yaml b/carps/configs/problem/HPOB/all/cfg_6154_33.yaml new file mode 100644 index 000000000..3a7c0ab9f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_33.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/33 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '33' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_36.yaml b/carps/configs/problem/HPOB/all/cfg_6154_36.yaml new file mode 100644 index 000000000..a478a5f8f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_36.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/36 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '36' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_41.yaml b/carps/configs/problem/HPOB/all/cfg_6154_41.yaml new file mode 100644 index 000000000..9fc0f0402 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_41.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/41 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '41' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_43.yaml b/carps/configs/problem/HPOB/all/cfg_6154_43.yaml new file mode 100644 index 000000000..6fcf3e908 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_45.yaml b/carps/configs/problem/HPOB/all/cfg_6154_45.yaml new file mode 100644 index 000000000..0d7fff5e3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_45.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/45 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '45' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_49.yaml b/carps/configs/problem/HPOB/all/cfg_6154_49.yaml new file mode 100644 index 000000000..9088fa973 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_53.yaml b/carps/configs/problem/HPOB/all/cfg_6154_53.yaml new file mode 100644 index 000000000..3132ed006 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_53.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/53 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '53' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_58.yaml b/carps/configs/problem/HPOB/all/cfg_6154_58.yaml new file mode 100644 index 000000000..3ddc6fc19 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_58.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/58 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '58' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6154_6.yaml b/carps/configs/problem/HPOB/all/cfg_6154_6.yaml new file mode 100644 index 000000000..094e42d56 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6154_6.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6154/6 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6154' + dataset_id: '6' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 17 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 17 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6155_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6155_145682.yaml new file mode 100644 index 000000000..b637dae09 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6155_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6155/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6155' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 7 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6156_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6156_145682.yaml new file mode 100644 index 000000000..05ebb39c0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6156_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6156/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6156' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6182_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6182_145682.yaml new file mode 100644 index 000000000..3578b23db --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6182_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6182/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6182' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_14.yaml b/carps/configs/problem/HPOB/all/cfg_6183_14.yaml new file mode 100644 index 000000000..b73c00bf8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_14.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/14 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '14' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_18.yaml b/carps/configs/problem/HPOB/all/cfg_6183_18.yaml new file mode 100644 index 000000000..cd8e4fd24 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_18.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/18 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '18' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_2.yaml b/carps/configs/problem/HPOB/all/cfg_6183_2.yaml new file mode 100644 index 000000000..ee15ca984 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_2.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/2 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '2' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_2068.yaml b/carps/configs/problem/HPOB/all/cfg_6183_2068.yaml new file mode 100644 index 000000000..4b70a16da --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_2068.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/2068 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '2068' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_2073.yaml b/carps/configs/problem/HPOB/all/cfg_6183_2073.yaml new file mode 100644 index 000000000..1b290b046 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_2073.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/2073 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '2073' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_2074.yaml b/carps/configs/problem/HPOB/all/cfg_6183_2074.yaml new file mode 100644 index 000000000..c29f416f3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_2074.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/2074 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '2074' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_2075.yaml b/carps/configs/problem/HPOB/all/cfg_6183_2075.yaml new file mode 100644 index 000000000..5b328b3c6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_2075.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/2075 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '2075' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_2076.yaml b/carps/configs/problem/HPOB/all/cfg_6183_2076.yaml new file mode 100644 index 000000000..51637a3fe --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_2076.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/2076 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '2076' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_2077.yaml b/carps/configs/problem/HPOB/all/cfg_6183_2077.yaml new file mode 100644 index 000000000..3f2d3ca8b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_2077.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/2077 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '2077' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_2079.yaml b/carps/configs/problem/HPOB/all/cfg_6183_2079.yaml new file mode 100644 index 000000000..3557e60be --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_2079.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/2079 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '2079' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_21.yaml b/carps/configs/problem/HPOB/all/cfg_6183_21.yaml new file mode 100644 index 000000000..36594b6ac --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_21.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/21 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '21' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_219.yaml b/carps/configs/problem/HPOB/all/cfg_6183_219.yaml new file mode 100644 index 000000000..946351abd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_22.yaml b/carps/configs/problem/HPOB/all/cfg_6183_22.yaml new file mode 100644 index 000000000..d7fb8be56 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_22.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/22 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '22' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_23.yaml b/carps/configs/problem/HPOB/all/cfg_6183_23.yaml new file mode 100644 index 000000000..6ab3ac6a8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_23.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/23 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '23' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_24.yaml b/carps/configs/problem/HPOB/all/cfg_6183_24.yaml new file mode 100644 index 000000000..723e0fe7c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_24.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/24 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '24' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_26.yaml b/carps/configs/problem/HPOB/all/cfg_6183_26.yaml new file mode 100644 index 000000000..09981eb18 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_26.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/26 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '26' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_28.yaml b/carps/configs/problem/HPOB/all/cfg_6183_28.yaml new file mode 100644 index 000000000..2a379137c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_28.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/28 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '28' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_29.yaml b/carps/configs/problem/HPOB/all/cfg_6183_29.yaml new file mode 100644 index 000000000..56a94e46e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_3.yaml b/carps/configs/problem/HPOB/all/cfg_6183_3.yaml new file mode 100644 index 000000000..33ae15f06 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_30.yaml b/carps/configs/problem/HPOB/all/cfg_6183_30.yaml new file mode 100644 index 000000000..f7aef44d7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_30.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/30 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '30' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_31.yaml b/carps/configs/problem/HPOB/all/cfg_6183_31.yaml new file mode 100644 index 000000000..0d38493d5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_32.yaml b/carps/configs/problem/HPOB/all/cfg_6183_32.yaml new file mode 100644 index 000000000..c25cf4113 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_32.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/32 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '32' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_33.yaml b/carps/configs/problem/HPOB/all/cfg_6183_33.yaml new file mode 100644 index 000000000..9eac1fe4c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_33.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/33 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '33' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_36.yaml b/carps/configs/problem/HPOB/all/cfg_6183_36.yaml new file mode 100644 index 000000000..1e948a52e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_36.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/36 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '36' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_37.yaml b/carps/configs/problem/HPOB/all/cfg_6183_37.yaml new file mode 100644 index 000000000..77b87d5b4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_41.yaml b/carps/configs/problem/HPOB/all/cfg_6183_41.yaml new file mode 100644 index 000000000..b174a99fd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_41.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/41 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '41' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_43.yaml b/carps/configs/problem/HPOB/all/cfg_6183_43.yaml new file mode 100644 index 000000000..58836379d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_45.yaml b/carps/configs/problem/HPOB/all/cfg_6183_45.yaml new file mode 100644 index 000000000..ea1b779b2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_45.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/45 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '45' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_49.yaml b/carps/configs/problem/HPOB/all/cfg_6183_49.yaml new file mode 100644 index 000000000..dfdd16fed --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_53.yaml b/carps/configs/problem/HPOB/all/cfg_6183_53.yaml new file mode 100644 index 000000000..06946cb3a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_53.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/53 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '53' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_58.yaml b/carps/configs/problem/HPOB/all/cfg_6183_58.yaml new file mode 100644 index 000000000..f6ad57bdd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_58.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/58 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '58' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6183_6.yaml b/carps/configs/problem/HPOB/all/cfg_6183_6.yaml new file mode 100644 index 000000000..f5f34cb2c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6183_6.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6183/6 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6183' + dataset_id: '6' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 41 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 41 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6189_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6189_145682.yaml new file mode 100644 index 000000000..a65e4c5cc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6189_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6189/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6189' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6190_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6190_145682.yaml new file mode 100644 index 000000000..18af6b917 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6190_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6190/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6190' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6211_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6211_145682.yaml new file mode 100644 index 000000000..a04b7247b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6211_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6211/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6211' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6212_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6212_145682.yaml new file mode 100644 index 000000000..1156e6c25 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6212_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6212/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6212' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6213_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6213_145682.yaml new file mode 100644 index 000000000..3568945f8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6213_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6213/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6213' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6215_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6215_145682.yaml new file mode 100644 index 000000000..fb51b030f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6215_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6215/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6215' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6216_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6216_145682.yaml new file mode 100644 index 000000000..86dacc4b4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6216_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6216/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6216' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 5 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6271_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6271_145682.yaml new file mode 100644 index 000000000..27b896b83 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6271_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6271/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6271' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6285_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6285_145682.yaml new file mode 100644 index 000000000..7953df4ad --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6285_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6285/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6285' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6308_34536.yaml b/carps/configs/problem/HPOB/all/cfg_6308_34536.yaml new file mode 100644 index 000000000..2b737e942 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6308_34536.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6308/34536 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6308' + dataset_id: '34536' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6308_37.yaml b/carps/configs/problem/HPOB/all/cfg_6308_37.yaml new file mode 100644 index 000000000..d5ffde865 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6308_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6308/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6308' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6308_49.yaml b/carps/configs/problem/HPOB/all/cfg_6308_49.yaml new file mode 100644 index 000000000..b57aced86 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6308_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6308/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6308' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6309_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6309_145682.yaml new file mode 100644 index 000000000..772ef3a13 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6309_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6309/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6309' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 7 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6322_145677.yaml b/carps/configs/problem/HPOB/all/cfg_6322_145677.yaml new file mode 100644 index 000000000..58bcc99dd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6322_145677.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6322/145677 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6322' + dataset_id: '145677' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6322_3917.yaml b/carps/configs/problem/HPOB/all/cfg_6322_3917.yaml new file mode 100644 index 000000000..334ed048b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6322_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6322/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6322' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6323_219.yaml b/carps/configs/problem/HPOB/all/cfg_6323_219.yaml new file mode 100644 index 000000000..667a39a26 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6323_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6323/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6323' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_633_59.yaml b/carps/configs/problem/HPOB/all/cfg_633_59.yaml new file mode 100644 index 000000000..e23a274c0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_633_59.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/633/59 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '633' + dataset_id: '59' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6345_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6345_145682.yaml new file mode 100644 index 000000000..f76c65f5a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6345_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6345/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6345' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 20 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 20 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6347_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6347_145682.yaml new file mode 100644 index 000000000..45cc52d67 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6347_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6347/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6347' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6364_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6364_145682.yaml new file mode 100644 index 000000000..c607a179f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6364_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6364/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6364' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6365_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6365_145682.yaml new file mode 100644 index 000000000..957ed7c6b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6365_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6365/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6365' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6376_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6376_145682.yaml new file mode 100644 index 000000000..062df6bdd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6376_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6376/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6376' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 7 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6433_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6433_145682.yaml new file mode 100644 index 000000000..80cbd9844 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6433_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6433/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6433' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_11.yaml b/carps/configs/problem/HPOB/all/cfg_6447_11.yaml new file mode 100644 index 000000000..e8f49189c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_11.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/11 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '11' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_12.yaml b/carps/configs/problem/HPOB/all/cfg_6447_12.yaml new file mode 100644 index 000000000..c0e91073e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_12.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/12 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '12' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_14.yaml b/carps/configs/problem/HPOB/all/cfg_6447_14.yaml new file mode 100644 index 000000000..d69458f0d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_14.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/14 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '14' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_16.yaml b/carps/configs/problem/HPOB/all/cfg_6447_16.yaml new file mode 100644 index 000000000..93d44bf86 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_16.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/16 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '16' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_18.yaml b/carps/configs/problem/HPOB/all/cfg_6447_18.yaml new file mode 100644 index 000000000..0a8486347 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_18.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/18 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '18' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_2068.yaml b/carps/configs/problem/HPOB/all/cfg_6447_2068.yaml new file mode 100644 index 000000000..0e4b42dd5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_2068.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/2068 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '2068' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_2074.yaml b/carps/configs/problem/HPOB/all/cfg_6447_2074.yaml new file mode 100644 index 000000000..c2152c18b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_2074.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/2074 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '2074' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_2075.yaml b/carps/configs/problem/HPOB/all/cfg_6447_2075.yaml new file mode 100644 index 000000000..6616c807b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_2075.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/2075 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '2075' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_2076.yaml b/carps/configs/problem/HPOB/all/cfg_6447_2076.yaml new file mode 100644 index 000000000..98edeed37 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_2076.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/2076 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '2076' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_2079.yaml b/carps/configs/problem/HPOB/all/cfg_6447_2079.yaml new file mode 100644 index 000000000..8866ef1d4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_2079.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/2079 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '2079' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_21.yaml b/carps/configs/problem/HPOB/all/cfg_6447_21.yaml new file mode 100644 index 000000000..f464fdf96 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_21.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/21 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '21' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_219.yaml b/carps/configs/problem/HPOB/all/cfg_6447_219.yaml new file mode 100644 index 000000000..780654a7b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_22.yaml b/carps/configs/problem/HPOB/all/cfg_6447_22.yaml new file mode 100644 index 000000000..9d1290218 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_22.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/22 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '22' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_23.yaml b/carps/configs/problem/HPOB/all/cfg_6447_23.yaml new file mode 100644 index 000000000..690bb771c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_23.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/23 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '23' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_24.yaml b/carps/configs/problem/HPOB/all/cfg_6447_24.yaml new file mode 100644 index 000000000..32dcfaf8a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_24.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/24 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '24' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_26.yaml b/carps/configs/problem/HPOB/all/cfg_6447_26.yaml new file mode 100644 index 000000000..75e1e7b8f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_26.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/26 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '26' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_28.yaml b/carps/configs/problem/HPOB/all/cfg_6447_28.yaml new file mode 100644 index 000000000..2b17fcec9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_28.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/28 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '28' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_29.yaml b/carps/configs/problem/HPOB/all/cfg_6447_29.yaml new file mode 100644 index 000000000..b2437b36e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_30.yaml b/carps/configs/problem/HPOB/all/cfg_6447_30.yaml new file mode 100644 index 000000000..48c9c3caf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_30.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/30 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '30' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_31.yaml b/carps/configs/problem/HPOB/all/cfg_6447_31.yaml new file mode 100644 index 000000000..875636697 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_32.yaml b/carps/configs/problem/HPOB/all/cfg_6447_32.yaml new file mode 100644 index 000000000..261a43ee6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_32.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/32 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '32' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_33.yaml b/carps/configs/problem/HPOB/all/cfg_6447_33.yaml new file mode 100644 index 000000000..e887e5960 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_33.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/33 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '33' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_36.yaml b/carps/configs/problem/HPOB/all/cfg_6447_36.yaml new file mode 100644 index 000000000..52254dc66 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_36.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/36 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '36' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_37.yaml b/carps/configs/problem/HPOB/all/cfg_6447_37.yaml new file mode 100644 index 000000000..d3603b4a8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_41.yaml b/carps/configs/problem/HPOB/all/cfg_6447_41.yaml new file mode 100644 index 000000000..cb62d629e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_41.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/41 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '41' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_43.yaml b/carps/configs/problem/HPOB/all/cfg_6447_43.yaml new file mode 100644 index 000000000..5593a3932 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_45.yaml b/carps/configs/problem/HPOB/all/cfg_6447_45.yaml new file mode 100644 index 000000000..1eb3ab2fe --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_45.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/45 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '45' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_49.yaml b/carps/configs/problem/HPOB/all/cfg_6447_49.yaml new file mode 100644 index 000000000..4de48e902 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_58.yaml b/carps/configs/problem/HPOB/all/cfg_6447_58.yaml new file mode 100644 index 000000000..0cae55cb0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_58.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/58 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '58' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6447_6.yaml b/carps/configs/problem/HPOB/all/cfg_6447_6.yaml new file mode 100644 index 000000000..89149bfaf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6447_6.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6447/6 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '6' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_11.yaml b/carps/configs/problem/HPOB/all/cfg_6458_11.yaml new file mode 100644 index 000000000..6ce69870c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_11.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/11 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '11' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_12.yaml b/carps/configs/problem/HPOB/all/cfg_6458_12.yaml new file mode 100644 index 000000000..960e76013 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_12.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/12 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '12' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_14.yaml b/carps/configs/problem/HPOB/all/cfg_6458_14.yaml new file mode 100644 index 000000000..9e35a31c1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_14.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/14 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '14' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_16.yaml b/carps/configs/problem/HPOB/all/cfg_6458_16.yaml new file mode 100644 index 000000000..26c12c967 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_16.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/16 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '16' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_18.yaml b/carps/configs/problem/HPOB/all/cfg_6458_18.yaml new file mode 100644 index 000000000..4d3678dab --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_18.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/18 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '18' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_2068.yaml b/carps/configs/problem/HPOB/all/cfg_6458_2068.yaml new file mode 100644 index 000000000..b73ed8210 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_2068.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/2068 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '2068' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_2074.yaml b/carps/configs/problem/HPOB/all/cfg_6458_2074.yaml new file mode 100644 index 000000000..cdd38037e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_2074.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/2074 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '2074' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_2075.yaml b/carps/configs/problem/HPOB/all/cfg_6458_2075.yaml new file mode 100644 index 000000000..3931d669c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_2075.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/2075 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '2075' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_2076.yaml b/carps/configs/problem/HPOB/all/cfg_6458_2076.yaml new file mode 100644 index 000000000..f175b1bb7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_2076.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/2076 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '2076' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_2079.yaml b/carps/configs/problem/HPOB/all/cfg_6458_2079.yaml new file mode 100644 index 000000000..aecd12afc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_2079.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/2079 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '2079' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_21.yaml b/carps/configs/problem/HPOB/all/cfg_6458_21.yaml new file mode 100644 index 000000000..ef4299d38 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_21.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/21 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '21' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_219.yaml b/carps/configs/problem/HPOB/all/cfg_6458_219.yaml new file mode 100644 index 000000000..ce2aa866b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_22.yaml b/carps/configs/problem/HPOB/all/cfg_6458_22.yaml new file mode 100644 index 000000000..f67ca5ee0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_22.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/22 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '22' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_23.yaml b/carps/configs/problem/HPOB/all/cfg_6458_23.yaml new file mode 100644 index 000000000..506122900 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_23.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/23 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '23' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_24.yaml b/carps/configs/problem/HPOB/all/cfg_6458_24.yaml new file mode 100644 index 000000000..f0296a5ca --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_24.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/24 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '24' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_26.yaml b/carps/configs/problem/HPOB/all/cfg_6458_26.yaml new file mode 100644 index 000000000..7d04a5f48 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_26.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/26 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '26' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_28.yaml b/carps/configs/problem/HPOB/all/cfg_6458_28.yaml new file mode 100644 index 000000000..262c4d77f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_28.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/28 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '28' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_29.yaml b/carps/configs/problem/HPOB/all/cfg_6458_29.yaml new file mode 100644 index 000000000..ec2c80ca4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_30.yaml b/carps/configs/problem/HPOB/all/cfg_6458_30.yaml new file mode 100644 index 000000000..fa47390fc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_30.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/30 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '30' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_31.yaml b/carps/configs/problem/HPOB/all/cfg_6458_31.yaml new file mode 100644 index 000000000..5d5dcb4e9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_32.yaml b/carps/configs/problem/HPOB/all/cfg_6458_32.yaml new file mode 100644 index 000000000..a413d0ff8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_32.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/32 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '32' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_33.yaml b/carps/configs/problem/HPOB/all/cfg_6458_33.yaml new file mode 100644 index 000000000..ad79b02d5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_33.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/33 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '33' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_36.yaml b/carps/configs/problem/HPOB/all/cfg_6458_36.yaml new file mode 100644 index 000000000..44d80fd3e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_36.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/36 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '36' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_37.yaml b/carps/configs/problem/HPOB/all/cfg_6458_37.yaml new file mode 100644 index 000000000..36c214c4d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_41.yaml b/carps/configs/problem/HPOB/all/cfg_6458_41.yaml new file mode 100644 index 000000000..f9a0b87a3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_41.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/41 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '41' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_43.yaml b/carps/configs/problem/HPOB/all/cfg_6458_43.yaml new file mode 100644 index 000000000..a3ee84ffc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_45.yaml b/carps/configs/problem/HPOB/all/cfg_6458_45.yaml new file mode 100644 index 000000000..91fddf678 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_45.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/45 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '45' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_49.yaml b/carps/configs/problem/HPOB/all/cfg_6458_49.yaml new file mode 100644 index 000000000..478cc54bf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_58.yaml b/carps/configs/problem/HPOB/all/cfg_6458_58.yaml new file mode 100644 index 000000000..d29764629 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_58.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/58 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '58' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6458_6.yaml b/carps/configs/problem/HPOB/all/cfg_6458_6.yaml new file mode 100644 index 000000000..82a0dd96a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6458_6.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6458/6 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6458' + dataset_id: '6' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6461_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6461_145682.yaml new file mode 100644 index 000000000..9de2b3df0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6461_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6461/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6461' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6493_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6493_145682.yaml new file mode 100644 index 000000000..b8ce1d07c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6493_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6493/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6493' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 15 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 15 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6507_145682.yaml b/carps/configs/problem/HPOB/all/cfg_6507_145682.yaml new file mode 100644 index 000000000..76e2f9175 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6507_145682.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6507/145682 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6507' + dataset_id: '145682' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_673_1898.yaml b/carps/configs/problem/HPOB/all/cfg_673_1898.yaml new file mode 100644 index 000000000..995f524b0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_673_1898.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/673/1898 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '673' + dataset_id: '1898' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_673_1902.yaml b/carps/configs/problem/HPOB/all/cfg_673_1902.yaml new file mode 100644 index 000000000..0e84466fa --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_673_1902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/673/1902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '673' + dataset_id: '1902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_673_1917.yaml b/carps/configs/problem/HPOB/all/cfg_673_1917.yaml new file mode 100644 index 000000000..8f6e51407 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_673_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/673/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '673' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_673_1919.yaml b/carps/configs/problem/HPOB/all/cfg_673_1919.yaml new file mode 100644 index 000000000..7cfc2e972 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_673_1919.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/673/1919 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '673' + dataset_id: '1919' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_673_1939.yaml b/carps/configs/problem/HPOB/all/cfg_673_1939.yaml new file mode 100644 index 000000000..e7b9d9e91 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_673_1939.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/673/1939 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '673' + dataset_id: '1939' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6741_58.yaml b/carps/configs/problem/HPOB/all/cfg_6741_58.yaml new file mode 100644 index 000000000..5bfa0e9f6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6741_58.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6741/58 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6741' + dataset_id: '58' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 21 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 21 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_674_1898.yaml b/carps/configs/problem/HPOB/all/cfg_674_1898.yaml new file mode 100644 index 000000000..04fe7d476 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_674_1898.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/674/1898 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '674' + dataset_id: '1898' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_674_1902.yaml b/carps/configs/problem/HPOB/all/cfg_674_1902.yaml new file mode 100644 index 000000000..46b1735b8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_674_1902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/674/1902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '674' + dataset_id: '1902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_674_1917.yaml b/carps/configs/problem/HPOB/all/cfg_674_1917.yaml new file mode 100644 index 000000000..02f9d1f8f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_674_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/674/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '674' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_674_1919.yaml b/carps/configs/problem/HPOB/all/cfg_674_1919.yaml new file mode 100644 index 000000000..3b366ef20 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_674_1919.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/674/1919 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '674' + dataset_id: '1919' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_674_1939.yaml b/carps/configs/problem/HPOB/all/cfg_674_1939.yaml new file mode 100644 index 000000000..f74df5ef8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_674_1939.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/674/1939 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '674' + dataset_id: '1939' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6762_282.yaml b/carps/configs/problem/HPOB/all/cfg_6762_282.yaml new file mode 100644 index 000000000..e23b3e8f5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6762_282.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6762/282 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6762' + dataset_id: '282' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6762_3.yaml b/carps/configs/problem/HPOB/all/cfg_6762_3.yaml new file mode 100644 index 000000000..88447ea88 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6762_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6762/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6762' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6762_3493.yaml b/carps/configs/problem/HPOB/all/cfg_6762_3493.yaml new file mode 100644 index 000000000..8b952fda1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6762_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6762/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6762' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6762_37.yaml b/carps/configs/problem/HPOB/all/cfg_6762_37.yaml new file mode 100644 index 000000000..6d30a13b3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6762_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6762/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6762' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6762_43.yaml b/carps/configs/problem/HPOB/all/cfg_6762_43.yaml new file mode 100644 index 000000000..5c58b3973 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6762_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6762/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6762' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6762_49.yaml b/carps/configs/problem/HPOB/all/cfg_6762_49.yaml new file mode 100644 index 000000000..6685297a3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6762_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6762/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6762' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6762_9946.yaml b/carps/configs/problem/HPOB/all/cfg_6762_9946.yaml new file mode 100644 index 000000000..60bb982ab --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6762_9946.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6762/9946 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6762' + dataset_id: '9946' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6765_219.yaml b/carps/configs/problem/HPOB/all/cfg_6765_219.yaml new file mode 100644 index 000000000..0338fcd39 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6765_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6765/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6765' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6765_272.yaml b/carps/configs/problem/HPOB/all/cfg_6765_272.yaml new file mode 100644 index 000000000..5e7c33813 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6765_272.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6765/272 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6765' + dataset_id: '272' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6765_3913.yaml b/carps/configs/problem/HPOB/all/cfg_6765_3913.yaml new file mode 100644 index 000000000..998361157 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6765_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6765/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6765' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_10101.yaml b/carps/configs/problem/HPOB/all/cfg_6766_10101.yaml new file mode 100644 index 000000000..ec4f48543 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_125923.yaml b/carps/configs/problem/HPOB/all/cfg_6766_125923.yaml new file mode 100644 index 000000000..b618dbf75 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_145804.yaml b/carps/configs/problem/HPOB/all/cfg_6766_145804.yaml new file mode 100644 index 000000000..7dee69633 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_145804.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/145804 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145804' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_145833.yaml b/carps/configs/problem/HPOB/all/cfg_6766_145833.yaml new file mode 100644 index 000000000..e9b90d965 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_145833.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/145833 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145833' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_145834.yaml b/carps/configs/problem/HPOB/all/cfg_6766_145834.yaml new file mode 100644 index 000000000..f2ea8a460 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_145834.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/145834 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145834' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_145836.yaml b/carps/configs/problem/HPOB/all/cfg_6766_145836.yaml new file mode 100644 index 000000000..be12055e1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_145836.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/145836 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145836' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_145839.yaml b/carps/configs/problem/HPOB/all/cfg_6766_145839.yaml new file mode 100644 index 000000000..3054fb5b4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_145839.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/145839 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145839' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_145847.yaml b/carps/configs/problem/HPOB/all/cfg_6766_145847.yaml new file mode 100644 index 000000000..07d44f737 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_145847.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/145847 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145847' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_145848.yaml b/carps/configs/problem/HPOB/all/cfg_6766_145848.yaml new file mode 100644 index 000000000..dc3785b70 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_145848.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/145848 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145848' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_145853.yaml b/carps/configs/problem/HPOB/all/cfg_6766_145853.yaml new file mode 100644 index 000000000..a8bfbadf3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_145853.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/145853 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145853' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_145854.yaml b/carps/configs/problem/HPOB/all/cfg_6766_145854.yaml new file mode 100644 index 000000000..c7666fdc0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_145854.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/145854 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145854' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_145855.yaml b/carps/configs/problem/HPOB/all/cfg_6766_145855.yaml new file mode 100644 index 000000000..735e8b74d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_145855.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/145855 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145855' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_145857.yaml b/carps/configs/problem/HPOB/all/cfg_6766_145857.yaml new file mode 100644 index 000000000..77a5d9780 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_145857.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/145857 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145857' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_145862.yaml b/carps/configs/problem/HPOB/all/cfg_6766_145862.yaml new file mode 100644 index 000000000..57184124b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_145862.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/145862 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145862' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_145872.yaml b/carps/configs/problem/HPOB/all/cfg_6766_145872.yaml new file mode 100644 index 000000000..6c5bb72c0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_145872.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/145872 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145872' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_145878.yaml b/carps/configs/problem/HPOB/all/cfg_6766_145878.yaml new file mode 100644 index 000000000..5b59fe8e9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_145878.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/145878 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145878' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_145953.yaml b/carps/configs/problem/HPOB/all/cfg_6766_145953.yaml new file mode 100644 index 000000000..8fa143c84 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_145953.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/145953 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145953' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_145972.yaml b/carps/configs/problem/HPOB/all/cfg_6766_145972.yaml new file mode 100644 index 000000000..9dcda3f7b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_145972.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/145972 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145972' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_145976.yaml b/carps/configs/problem/HPOB/all/cfg_6766_145976.yaml new file mode 100644 index 000000000..6c910f3b0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_145976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/145976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_145979.yaml b/carps/configs/problem/HPOB/all/cfg_6766_145979.yaml new file mode 100644 index 000000000..2221bc9a8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_145979.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/145979 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145979' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_146012.yaml b/carps/configs/problem/HPOB/all/cfg_6766_146012.yaml new file mode 100644 index 000000000..5d82d2c4a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_146012.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/146012 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '146012' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_146064.yaml b/carps/configs/problem/HPOB/all/cfg_6766_146064.yaml new file mode 100644 index 000000000..45a5bd8c8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_146064.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/146064 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '146064' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_146065.yaml b/carps/configs/problem/HPOB/all/cfg_6766_146065.yaml new file mode 100644 index 000000000..c8c8ecbad --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_146065.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/146065 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '146065' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_146066.yaml b/carps/configs/problem/HPOB/all/cfg_6766_146066.yaml new file mode 100644 index 000000000..ad4822981 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_146066.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/146066 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '146066' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_146082.yaml b/carps/configs/problem/HPOB/all/cfg_6766_146082.yaml new file mode 100644 index 000000000..0101cdfc9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_146082.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/146082 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '146082' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_146085.yaml b/carps/configs/problem/HPOB/all/cfg_6766_146085.yaml new file mode 100644 index 000000000..89a6d85ad --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_146085.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/146085 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '146085' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_14951.yaml b/carps/configs/problem/HPOB/all/cfg_6766_14951.yaml new file mode 100644 index 000000000..24af24366 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_14965.yaml b/carps/configs/problem/HPOB/all/cfg_6766_14965.yaml new file mode 100644 index 000000000..d3d873459 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_14965.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/14965 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '14965' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_219.yaml b/carps/configs/problem/HPOB/all/cfg_6766_219.yaml new file mode 100644 index 000000000..4d4f2630c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_3.yaml b/carps/configs/problem/HPOB/all/cfg_6766_3.yaml new file mode 100644 index 000000000..19e0df128 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_31.yaml b/carps/configs/problem/HPOB/all/cfg_6766_31.yaml new file mode 100644 index 000000000..32dea2777 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_34536.yaml b/carps/configs/problem/HPOB/all/cfg_6766_34536.yaml new file mode 100644 index 000000000..83ae2ea13 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_34536.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/34536 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '34536' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_3485.yaml b/carps/configs/problem/HPOB/all/cfg_6766_3485.yaml new file mode 100644 index 000000000..3be497c1d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_3485.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/3485 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '3485' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_3492.yaml b/carps/configs/problem/HPOB/all/cfg_6766_3492.yaml new file mode 100644 index 000000000..98d2766b6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_3492.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/3492 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '3492' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_3493.yaml b/carps/configs/problem/HPOB/all/cfg_6766_3493.yaml new file mode 100644 index 000000000..3aac225af --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_3494.yaml b/carps/configs/problem/HPOB/all/cfg_6766_3494.yaml new file mode 100644 index 000000000..5f15941e1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_37.yaml b/carps/configs/problem/HPOB/all/cfg_6766_37.yaml new file mode 100644 index 000000000..df54fbaf4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_3889.yaml b/carps/configs/problem/HPOB/all/cfg_6766_3889.yaml new file mode 100644 index 000000000..5ffe37c69 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_3889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/3889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '3889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_3891.yaml b/carps/configs/problem/HPOB/all/cfg_6766_3891.yaml new file mode 100644 index 000000000..6cd6a281c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_3891.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/3891 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '3891' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_3896.yaml b/carps/configs/problem/HPOB/all/cfg_6766_3896.yaml new file mode 100644 index 000000000..07abf3fd8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_3899.yaml b/carps/configs/problem/HPOB/all/cfg_6766_3899.yaml new file mode 100644 index 000000000..e6d5eac96 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_3899.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/3899 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '3899' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_3902.yaml b/carps/configs/problem/HPOB/all/cfg_6766_3902.yaml new file mode 100644 index 000000000..f73e34843 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_3903.yaml b/carps/configs/problem/HPOB/all/cfg_6766_3903.yaml new file mode 100644 index 000000000..cab785967 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_3903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/3903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '3903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_3913.yaml b/carps/configs/problem/HPOB/all/cfg_6766_3913.yaml new file mode 100644 index 000000000..1456d91a2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_3917.yaml b/carps/configs/problem/HPOB/all/cfg_6766_3917.yaml new file mode 100644 index 000000000..0cbed1c87 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_3918.yaml b/carps/configs/problem/HPOB/all/cfg_6766_3918.yaml new file mode 100644 index 000000000..46f5fe443 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_3918.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/3918 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '3918' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_3950.yaml b/carps/configs/problem/HPOB/all/cfg_6766_3950.yaml new file mode 100644 index 000000000..944fbcfff --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_3950.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/3950 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '3950' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_3954.yaml b/carps/configs/problem/HPOB/all/cfg_6766_3954.yaml new file mode 100644 index 000000000..001d8da17 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_43.yaml b/carps/configs/problem/HPOB/all/cfg_6766_43.yaml new file mode 100644 index 000000000..01c04d3c7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_6566.yaml b/carps/configs/problem/HPOB/all/cfg_6766_6566.yaml new file mode 100644 index 000000000..617dee017 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_6566.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/6566 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '6566' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_7295.yaml b/carps/configs/problem/HPOB/all/cfg_6766_7295.yaml new file mode 100644 index 000000000..9de75cb2c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_7295.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/7295 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '7295' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_9889.yaml b/carps/configs/problem/HPOB/all/cfg_6766_9889.yaml new file mode 100644 index 000000000..e29638a55 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_9914.yaml b/carps/configs/problem/HPOB/all/cfg_6766_9914.yaml new file mode 100644 index 000000000..6e8bffd26 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_9946.yaml b/carps/configs/problem/HPOB/all/cfg_6766_9946.yaml new file mode 100644 index 000000000..a1a1cfc90 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_9946.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/9946 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '9946' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_9952.yaml b/carps/configs/problem/HPOB/all/cfg_6766_9952.yaml new file mode 100644 index 000000000..193d31dc2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_9957.yaml b/carps/configs/problem/HPOB/all/cfg_6766_9957.yaml new file mode 100644 index 000000000..11b48105e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_9967.yaml b/carps/configs/problem/HPOB/all/cfg_6766_9967.yaml new file mode 100644 index 000000000..f641c563b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_9967.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/9967 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '9967' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_9970.yaml b/carps/configs/problem/HPOB/all/cfg_6766_9970.yaml new file mode 100644 index 000000000..f21f2d677 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_9970.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/9970 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '9970' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_9971.yaml b/carps/configs/problem/HPOB/all/cfg_6766_9971.yaml new file mode 100644 index 000000000..9b99b7353 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_9976.yaml b/carps/configs/problem/HPOB/all/cfg_6766_9976.yaml new file mode 100644 index 000000000..afc3d051b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_9976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/9976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '9976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_9978.yaml b/carps/configs/problem/HPOB/all/cfg_6766_9978.yaml new file mode 100644 index 000000000..ba5f4c9a0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_9978.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/9978 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '9978' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_9980.yaml b/carps/configs/problem/HPOB/all/cfg_6766_9980.yaml new file mode 100644 index 000000000..59435ef6e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_9980.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/9980 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '9980' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6766_9983.yaml b/carps/configs/problem/HPOB/all/cfg_6766_9983.yaml new file mode 100644 index 000000000..6508c4a37 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6766_9983.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6766/9983 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '9983' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_10093.yaml b/carps/configs/problem/HPOB/all/cfg_6767_10093.yaml new file mode 100644 index 000000000..7403edc1a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_10093.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/10093 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '10093' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_10101.yaml b/carps/configs/problem/HPOB/all/cfg_6767_10101.yaml new file mode 100644 index 000000000..fa134a392 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_125923.yaml b/carps/configs/problem/HPOB/all/cfg_6767_125923.yaml new file mode 100644 index 000000000..a1f21574d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_145804.yaml b/carps/configs/problem/HPOB/all/cfg_6767_145804.yaml new file mode 100644 index 000000000..237f2dbda --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_145804.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/145804 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '145804' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_145833.yaml b/carps/configs/problem/HPOB/all/cfg_6767_145833.yaml new file mode 100644 index 000000000..7c5d35063 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_145833.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/145833 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '145833' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_145834.yaml b/carps/configs/problem/HPOB/all/cfg_6767_145834.yaml new file mode 100644 index 000000000..c0243216b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_145834.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/145834 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '145834' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_145836.yaml b/carps/configs/problem/HPOB/all/cfg_6767_145836.yaml new file mode 100644 index 000000000..5f496b23b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_145836.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/145836 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '145836' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_145839.yaml b/carps/configs/problem/HPOB/all/cfg_6767_145839.yaml new file mode 100644 index 000000000..d07b071c3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_145839.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/145839 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '145839' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_145847.yaml b/carps/configs/problem/HPOB/all/cfg_6767_145847.yaml new file mode 100644 index 000000000..c1389c778 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_145847.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/145847 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '145847' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_145848.yaml b/carps/configs/problem/HPOB/all/cfg_6767_145848.yaml new file mode 100644 index 000000000..53ba438b2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_145848.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/145848 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '145848' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_145853.yaml b/carps/configs/problem/HPOB/all/cfg_6767_145853.yaml new file mode 100644 index 000000000..311804383 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_145853.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/145853 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '145853' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_145854.yaml b/carps/configs/problem/HPOB/all/cfg_6767_145854.yaml new file mode 100644 index 000000000..27345abc7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_145854.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/145854 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '145854' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_145855.yaml b/carps/configs/problem/HPOB/all/cfg_6767_145855.yaml new file mode 100644 index 000000000..a25fb804d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_145855.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/145855 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '145855' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_145857.yaml b/carps/configs/problem/HPOB/all/cfg_6767_145857.yaml new file mode 100644 index 000000000..3ff1c03d1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_145857.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/145857 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '145857' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_145862.yaml b/carps/configs/problem/HPOB/all/cfg_6767_145862.yaml new file mode 100644 index 000000000..866dd9b23 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_145862.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/145862 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '145862' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_145872.yaml b/carps/configs/problem/HPOB/all/cfg_6767_145872.yaml new file mode 100644 index 000000000..5cb8a4f41 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_145872.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/145872 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '145872' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_145878.yaml b/carps/configs/problem/HPOB/all/cfg_6767_145878.yaml new file mode 100644 index 000000000..6ea3728ca --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_145878.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/145878 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '145878' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_145953.yaml b/carps/configs/problem/HPOB/all/cfg_6767_145953.yaml new file mode 100644 index 000000000..3360d9922 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_145953.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/145953 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '145953' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_145972.yaml b/carps/configs/problem/HPOB/all/cfg_6767_145972.yaml new file mode 100644 index 000000000..7a4c2f422 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_145972.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/145972 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '145972' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_145976.yaml b/carps/configs/problem/HPOB/all/cfg_6767_145976.yaml new file mode 100644 index 000000000..fe1ffd072 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_145976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/145976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '145976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_145979.yaml b/carps/configs/problem/HPOB/all/cfg_6767_145979.yaml new file mode 100644 index 000000000..956f7dff7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_145979.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/145979 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '145979' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_146012.yaml b/carps/configs/problem/HPOB/all/cfg_6767_146012.yaml new file mode 100644 index 000000000..6f5dee382 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_146012.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/146012 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '146012' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_146064.yaml b/carps/configs/problem/HPOB/all/cfg_6767_146064.yaml new file mode 100644 index 000000000..621772a72 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_146064.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/146064 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '146064' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_146065.yaml b/carps/configs/problem/HPOB/all/cfg_6767_146065.yaml new file mode 100644 index 000000000..1752464be --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_146065.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/146065 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '146065' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_146066.yaml b/carps/configs/problem/HPOB/all/cfg_6767_146066.yaml new file mode 100644 index 000000000..95f8c19b5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_146066.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/146066 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '146066' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_146085.yaml b/carps/configs/problem/HPOB/all/cfg_6767_146085.yaml new file mode 100644 index 000000000..28d6e1dbc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_146085.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/146085 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '146085' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_14951.yaml b/carps/configs/problem/HPOB/all/cfg_6767_14951.yaml new file mode 100644 index 000000000..b0635faa1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_14965.yaml b/carps/configs/problem/HPOB/all/cfg_6767_14965.yaml new file mode 100644 index 000000000..156e49cec --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_14965.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/14965 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '14965' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_14971.yaml b/carps/configs/problem/HPOB/all/cfg_6767_14971.yaml new file mode 100644 index 000000000..810a251f9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_14971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/14971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '14971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_219.yaml b/carps/configs/problem/HPOB/all/cfg_6767_219.yaml new file mode 100644 index 000000000..b4dc43539 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_272.yaml b/carps/configs/problem/HPOB/all/cfg_6767_272.yaml new file mode 100644 index 000000000..d856dcba8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_272.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/272 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '272' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_3.yaml b/carps/configs/problem/HPOB/all/cfg_6767_3.yaml new file mode 100644 index 000000000..e1ae3e3c2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_31.yaml b/carps/configs/problem/HPOB/all/cfg_6767_31.yaml new file mode 100644 index 000000000..47fa8acf4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_34536.yaml b/carps/configs/problem/HPOB/all/cfg_6767_34536.yaml new file mode 100644 index 000000000..a07aab7f2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_34536.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/34536 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '34536' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_3485.yaml b/carps/configs/problem/HPOB/all/cfg_6767_3485.yaml new file mode 100644 index 000000000..8380066ba --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_3485.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/3485 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '3485' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_3492.yaml b/carps/configs/problem/HPOB/all/cfg_6767_3492.yaml new file mode 100644 index 000000000..5c9dcbac1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_3492.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/3492 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '3492' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_3493.yaml b/carps/configs/problem/HPOB/all/cfg_6767_3493.yaml new file mode 100644 index 000000000..04fb8fe5c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_3494.yaml b/carps/configs/problem/HPOB/all/cfg_6767_3494.yaml new file mode 100644 index 000000000..f4619b154 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_37.yaml b/carps/configs/problem/HPOB/all/cfg_6767_37.yaml new file mode 100644 index 000000000..13b915a47 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_3889.yaml b/carps/configs/problem/HPOB/all/cfg_6767_3889.yaml new file mode 100644 index 000000000..b28ade7a0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_3889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/3889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '3889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_3891.yaml b/carps/configs/problem/HPOB/all/cfg_6767_3891.yaml new file mode 100644 index 000000000..4c1eac314 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_3891.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/3891 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '3891' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_3896.yaml b/carps/configs/problem/HPOB/all/cfg_6767_3896.yaml new file mode 100644 index 000000000..ca780807c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_3899.yaml b/carps/configs/problem/HPOB/all/cfg_6767_3899.yaml new file mode 100644 index 000000000..d51bffbb8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_3899.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/3899 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '3899' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_3902.yaml b/carps/configs/problem/HPOB/all/cfg_6767_3902.yaml new file mode 100644 index 000000000..bc5d91728 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_3903.yaml b/carps/configs/problem/HPOB/all/cfg_6767_3903.yaml new file mode 100644 index 000000000..304d9e3e7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_3903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/3903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '3903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_3913.yaml b/carps/configs/problem/HPOB/all/cfg_6767_3913.yaml new file mode 100644 index 000000000..b61cb224b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_3917.yaml b/carps/configs/problem/HPOB/all/cfg_6767_3917.yaml new file mode 100644 index 000000000..3e6b0f5ed --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_3918.yaml b/carps/configs/problem/HPOB/all/cfg_6767_3918.yaml new file mode 100644 index 000000000..fbbb2c43f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_3918.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/3918 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '3918' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_3954.yaml b/carps/configs/problem/HPOB/all/cfg_6767_3954.yaml new file mode 100644 index 000000000..4d9100700 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_43.yaml b/carps/configs/problem/HPOB/all/cfg_6767_43.yaml new file mode 100644 index 000000000..4e4b08de4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_49.yaml b/carps/configs/problem/HPOB/all/cfg_6767_49.yaml new file mode 100644 index 000000000..1946f1810 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_6566.yaml b/carps/configs/problem/HPOB/all/cfg_6767_6566.yaml new file mode 100644 index 000000000..3a8a2ea62 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_6566.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/6566 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '6566' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_7295.yaml b/carps/configs/problem/HPOB/all/cfg_6767_7295.yaml new file mode 100644 index 000000000..4bf9c9bb1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_7295.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/7295 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '7295' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_9889.yaml b/carps/configs/problem/HPOB/all/cfg_6767_9889.yaml new file mode 100644 index 000000000..93337a348 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_9914.yaml b/carps/configs/problem/HPOB/all/cfg_6767_9914.yaml new file mode 100644 index 000000000..ce281ed2f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_9946.yaml b/carps/configs/problem/HPOB/all/cfg_6767_9946.yaml new file mode 100644 index 000000000..51cc79062 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_9946.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/9946 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '9946' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_9952.yaml b/carps/configs/problem/HPOB/all/cfg_6767_9952.yaml new file mode 100644 index 000000000..97e14e883 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_9957.yaml b/carps/configs/problem/HPOB/all/cfg_6767_9957.yaml new file mode 100644 index 000000000..205a07d32 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_9967.yaml b/carps/configs/problem/HPOB/all/cfg_6767_9967.yaml new file mode 100644 index 000000000..848367924 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_9967.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/9967 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '9967' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_9970.yaml b/carps/configs/problem/HPOB/all/cfg_6767_9970.yaml new file mode 100644 index 000000000..02060c7e8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_9970.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/9970 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '9970' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_9971.yaml b/carps/configs/problem/HPOB/all/cfg_6767_9971.yaml new file mode 100644 index 000000000..49819923c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_9976.yaml b/carps/configs/problem/HPOB/all/cfg_6767_9976.yaml new file mode 100644 index 000000000..337a5cb72 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_9976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/9976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '9976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_9977.yaml b/carps/configs/problem/HPOB/all/cfg_6767_9977.yaml new file mode 100644 index 000000000..4ae3c2e89 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_9977.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/9977 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '9977' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_9978.yaml b/carps/configs/problem/HPOB/all/cfg_6767_9978.yaml new file mode 100644 index 000000000..c2875a7cf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_9978.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/9978 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '9978' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6767_9980.yaml b/carps/configs/problem/HPOB/all/cfg_6767_9980.yaml new file mode 100644 index 000000000..1cb05680c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6767_9980.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6767/9980 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '9980' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_678_1898.yaml b/carps/configs/problem/HPOB/all/cfg_678_1898.yaml new file mode 100644 index 000000000..05e904b0f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_678_1898.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/678/1898 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '678' + dataset_id: '1898' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_678_1902.yaml b/carps/configs/problem/HPOB/all/cfg_678_1902.yaml new file mode 100644 index 000000000..56e922066 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_678_1902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/678/1902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '678' + dataset_id: '1902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_678_1917.yaml b/carps/configs/problem/HPOB/all/cfg_678_1917.yaml new file mode 100644 index 000000000..fc7ac7868 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_678_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/678/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '678' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_678_1919.yaml b/carps/configs/problem/HPOB/all/cfg_678_1919.yaml new file mode 100644 index 000000000..e6ca53ca6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_678_1919.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/678/1919 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '678' + dataset_id: '1919' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_678_1939.yaml b/carps/configs/problem/HPOB/all/cfg_678_1939.yaml new file mode 100644 index 000000000..fdf7fcae5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_678_1939.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/678/1939 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '678' + dataset_id: '1939' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_10093.yaml b/carps/configs/problem/HPOB/all/cfg_6794_10093.yaml new file mode 100644 index 000000000..8aae9aaae --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_10093.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/10093 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '10093' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_10101.yaml b/carps/configs/problem/HPOB/all/cfg_6794_10101.yaml new file mode 100644 index 000000000..e2b1b810e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_125923.yaml b/carps/configs/problem/HPOB/all/cfg_6794_125923.yaml new file mode 100644 index 000000000..39ecd1e33 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_145804.yaml b/carps/configs/problem/HPOB/all/cfg_6794_145804.yaml new file mode 100644 index 000000000..30e410a3b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_145804.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/145804 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '145804' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_145833.yaml b/carps/configs/problem/HPOB/all/cfg_6794_145833.yaml new file mode 100644 index 000000000..1c9476e7f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_145833.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/145833 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '145833' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_145834.yaml b/carps/configs/problem/HPOB/all/cfg_6794_145834.yaml new file mode 100644 index 000000000..cb4e6ee10 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_145834.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/145834 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '145834' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_145836.yaml b/carps/configs/problem/HPOB/all/cfg_6794_145836.yaml new file mode 100644 index 000000000..7396b6feb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_145836.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/145836 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '145836' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_145839.yaml b/carps/configs/problem/HPOB/all/cfg_6794_145839.yaml new file mode 100644 index 000000000..a36efe974 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_145839.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/145839 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '145839' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_145853.yaml b/carps/configs/problem/HPOB/all/cfg_6794_145853.yaml new file mode 100644 index 000000000..9fc3eb97e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_145853.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/145853 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '145853' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_145854.yaml b/carps/configs/problem/HPOB/all/cfg_6794_145854.yaml new file mode 100644 index 000000000..17e49f0ee --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_145854.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/145854 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '145854' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_145855.yaml b/carps/configs/problem/HPOB/all/cfg_6794_145855.yaml new file mode 100644 index 000000000..f6d341b39 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_145855.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/145855 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '145855' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_145857.yaml b/carps/configs/problem/HPOB/all/cfg_6794_145857.yaml new file mode 100644 index 000000000..cb28cb321 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_145857.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/145857 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '145857' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_145862.yaml b/carps/configs/problem/HPOB/all/cfg_6794_145862.yaml new file mode 100644 index 000000000..9e69f0b63 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_145862.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/145862 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '145862' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_145872.yaml b/carps/configs/problem/HPOB/all/cfg_6794_145872.yaml new file mode 100644 index 000000000..8a6985179 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_145872.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/145872 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '145872' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_145878.yaml b/carps/configs/problem/HPOB/all/cfg_6794_145878.yaml new file mode 100644 index 000000000..7fc61d028 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_145878.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/145878 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '145878' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_145972.yaml b/carps/configs/problem/HPOB/all/cfg_6794_145972.yaml new file mode 100644 index 000000000..ae8da0844 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_145972.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/145972 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '145972' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_145976.yaml b/carps/configs/problem/HPOB/all/cfg_6794_145976.yaml new file mode 100644 index 000000000..c0800cca6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_145976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/145976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '145976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_145979.yaml b/carps/configs/problem/HPOB/all/cfg_6794_145979.yaml new file mode 100644 index 000000000..9a0e72f8a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_145979.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/145979 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '145979' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_146012.yaml b/carps/configs/problem/HPOB/all/cfg_6794_146012.yaml new file mode 100644 index 000000000..d11ca7ea0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_146012.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/146012 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '146012' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_146064.yaml b/carps/configs/problem/HPOB/all/cfg_6794_146064.yaml new file mode 100644 index 000000000..c185123af --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_146064.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/146064 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '146064' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_146065.yaml b/carps/configs/problem/HPOB/all/cfg_6794_146065.yaml new file mode 100644 index 000000000..458315e8d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_146065.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/146065 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '146065' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_146066.yaml b/carps/configs/problem/HPOB/all/cfg_6794_146066.yaml new file mode 100644 index 000000000..33ab6ab4d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_146066.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/146066 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '146066' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_146082.yaml b/carps/configs/problem/HPOB/all/cfg_6794_146082.yaml new file mode 100644 index 000000000..92bdb8e23 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_146082.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/146082 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '146082' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_146085.yaml b/carps/configs/problem/HPOB/all/cfg_6794_146085.yaml new file mode 100644 index 000000000..030cc40a5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_146085.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/146085 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '146085' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_14951.yaml b/carps/configs/problem/HPOB/all/cfg_6794_14951.yaml new file mode 100644 index 000000000..ebcde2208 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_14965.yaml b/carps/configs/problem/HPOB/all/cfg_6794_14965.yaml new file mode 100644 index 000000000..11f66fe57 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_14965.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/14965 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '14965' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_14971.yaml b/carps/configs/problem/HPOB/all/cfg_6794_14971.yaml new file mode 100644 index 000000000..b1a44900b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_14971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/14971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '14971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_219.yaml b/carps/configs/problem/HPOB/all/cfg_6794_219.yaml new file mode 100644 index 000000000..dbf4f1daa --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_3.yaml b/carps/configs/problem/HPOB/all/cfg_6794_3.yaml new file mode 100644 index 000000000..afdac394c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_31.yaml b/carps/configs/problem/HPOB/all/cfg_6794_31.yaml new file mode 100644 index 000000000..740e5e1a6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_34536.yaml b/carps/configs/problem/HPOB/all/cfg_6794_34536.yaml new file mode 100644 index 000000000..bbe5119e0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_34536.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/34536 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '34536' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_3485.yaml b/carps/configs/problem/HPOB/all/cfg_6794_3485.yaml new file mode 100644 index 000000000..cd2a0402b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_3485.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/3485 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '3485' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_3492.yaml b/carps/configs/problem/HPOB/all/cfg_6794_3492.yaml new file mode 100644 index 000000000..8e82aa811 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_3492.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/3492 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '3492' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_3493.yaml b/carps/configs/problem/HPOB/all/cfg_6794_3493.yaml new file mode 100644 index 000000000..2f5148ea4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_3494.yaml b/carps/configs/problem/HPOB/all/cfg_6794_3494.yaml new file mode 100644 index 000000000..4a47f72fa --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_37.yaml b/carps/configs/problem/HPOB/all/cfg_6794_37.yaml new file mode 100644 index 000000000..1b23be80b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_3889.yaml b/carps/configs/problem/HPOB/all/cfg_6794_3889.yaml new file mode 100644 index 000000000..d8276160a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_3889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/3889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '3889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_3891.yaml b/carps/configs/problem/HPOB/all/cfg_6794_3891.yaml new file mode 100644 index 000000000..52cc57dad --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_3891.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/3891 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '3891' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_3896.yaml b/carps/configs/problem/HPOB/all/cfg_6794_3896.yaml new file mode 100644 index 000000000..8731bc055 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_3899.yaml b/carps/configs/problem/HPOB/all/cfg_6794_3899.yaml new file mode 100644 index 000000000..c45ebb2b0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_3899.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/3899 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '3899' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_3902.yaml b/carps/configs/problem/HPOB/all/cfg_6794_3902.yaml new file mode 100644 index 000000000..0911db50a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_3903.yaml b/carps/configs/problem/HPOB/all/cfg_6794_3903.yaml new file mode 100644 index 000000000..f53ea0929 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_3903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/3903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '3903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_3913.yaml b/carps/configs/problem/HPOB/all/cfg_6794_3913.yaml new file mode 100644 index 000000000..68352c600 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_3917.yaml b/carps/configs/problem/HPOB/all/cfg_6794_3917.yaml new file mode 100644 index 000000000..e8571d390 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_3918.yaml b/carps/configs/problem/HPOB/all/cfg_6794_3918.yaml new file mode 100644 index 000000000..de422506e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_3918.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/3918 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '3918' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_3950.yaml b/carps/configs/problem/HPOB/all/cfg_6794_3950.yaml new file mode 100644 index 000000000..8dd62e8cf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_3950.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/3950 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '3950' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_3954.yaml b/carps/configs/problem/HPOB/all/cfg_6794_3954.yaml new file mode 100644 index 000000000..af74fbe1a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_43.yaml b/carps/configs/problem/HPOB/all/cfg_6794_43.yaml new file mode 100644 index 000000000..a6bcd2da4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_49.yaml b/carps/configs/problem/HPOB/all/cfg_6794_49.yaml new file mode 100644 index 000000000..1d31d6035 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_6566.yaml b/carps/configs/problem/HPOB/all/cfg_6794_6566.yaml new file mode 100644 index 000000000..22a72ceaa --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_6566.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/6566 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '6566' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_7295.yaml b/carps/configs/problem/HPOB/all/cfg_6794_7295.yaml new file mode 100644 index 000000000..963d0579f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_7295.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/7295 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '7295' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_9889.yaml b/carps/configs/problem/HPOB/all/cfg_6794_9889.yaml new file mode 100644 index 000000000..1e9c0be49 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_9914.yaml b/carps/configs/problem/HPOB/all/cfg_6794_9914.yaml new file mode 100644 index 000000000..50bd02ab6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_9946.yaml b/carps/configs/problem/HPOB/all/cfg_6794_9946.yaml new file mode 100644 index 000000000..1ac7cb193 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_9946.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/9946 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '9946' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_9952.yaml b/carps/configs/problem/HPOB/all/cfg_6794_9952.yaml new file mode 100644 index 000000000..6b8fa46ea --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_9957.yaml b/carps/configs/problem/HPOB/all/cfg_6794_9957.yaml new file mode 100644 index 000000000..9616b9fd8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_9967.yaml b/carps/configs/problem/HPOB/all/cfg_6794_9967.yaml new file mode 100644 index 000000000..67ea116d5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_9967.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/9967 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '9967' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_9970.yaml b/carps/configs/problem/HPOB/all/cfg_6794_9970.yaml new file mode 100644 index 000000000..4d9d9847d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_9970.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/9970 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '9970' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_9971.yaml b/carps/configs/problem/HPOB/all/cfg_6794_9971.yaml new file mode 100644 index 000000000..6b2c35cb2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_9976.yaml b/carps/configs/problem/HPOB/all/cfg_6794_9976.yaml new file mode 100644 index 000000000..9f3deb72a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_9976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/9976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '9976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_9977.yaml b/carps/configs/problem/HPOB/all/cfg_6794_9977.yaml new file mode 100644 index 000000000..c0de8e64b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_9977.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/9977 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '9977' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_9978.yaml b/carps/configs/problem/HPOB/all/cfg_6794_9978.yaml new file mode 100644 index 000000000..775707971 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_9978.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/9978 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '9978' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_9980.yaml b/carps/configs/problem/HPOB/all/cfg_6794_9980.yaml new file mode 100644 index 000000000..952589bef --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_9980.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/9980 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '9980' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6794_9983.yaml b/carps/configs/problem/HPOB/all/cfg_6794_9983.yaml new file mode 100644 index 000000000..624c56512 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6794_9983.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6794/9983 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6794' + dataset_id: '9983' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_679_1898.yaml b/carps/configs/problem/HPOB/all/cfg_679_1898.yaml new file mode 100644 index 000000000..128bdd484 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_679_1898.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/679/1898 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '679' + dataset_id: '1898' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_679_1902.yaml b/carps/configs/problem/HPOB/all/cfg_679_1902.yaml new file mode 100644 index 000000000..436976fe5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_679_1902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/679/1902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '679' + dataset_id: '1902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_679_1917.yaml b/carps/configs/problem/HPOB/all/cfg_679_1917.yaml new file mode 100644 index 000000000..ec6812d37 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_679_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/679/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '679' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_679_1919.yaml b/carps/configs/problem/HPOB/all/cfg_679_1919.yaml new file mode 100644 index 000000000..973a8467c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_679_1919.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/679/1919 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '679' + dataset_id: '1919' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_679_1939.yaml b/carps/configs/problem/HPOB/all/cfg_679_1939.yaml new file mode 100644 index 000000000..d929bb9bd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_679_1939.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/679/1939 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '679' + dataset_id: '1939' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_680_1898.yaml b/carps/configs/problem/HPOB/all/cfg_680_1898.yaml new file mode 100644 index 000000000..3efd5c36a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_680_1898.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/680/1898 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '680' + dataset_id: '1898' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_680_1902.yaml b/carps/configs/problem/HPOB/all/cfg_680_1902.yaml new file mode 100644 index 000000000..c0cd79304 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_680_1902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/680/1902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '680' + dataset_id: '1902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_680_1917.yaml b/carps/configs/problem/HPOB/all/cfg_680_1917.yaml new file mode 100644 index 000000000..517e66446 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_680_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/680/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '680' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_680_1919.yaml b/carps/configs/problem/HPOB/all/cfg_680_1919.yaml new file mode 100644 index 000000000..62d35def0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_680_1919.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/680/1919 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '680' + dataset_id: '1919' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_680_1939.yaml b/carps/configs/problem/HPOB/all/cfg_680_1939.yaml new file mode 100644 index 000000000..7bed3fbf0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_680_1939.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/680/1939 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '680' + dataset_id: '1939' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_681_1898.yaml b/carps/configs/problem/HPOB/all/cfg_681_1898.yaml new file mode 100644 index 000000000..5d1d5d1c1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_681_1898.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/681/1898 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '681' + dataset_id: '1898' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_681_1902.yaml b/carps/configs/problem/HPOB/all/cfg_681_1902.yaml new file mode 100644 index 000000000..434d2f85e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_681_1902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/681/1902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '681' + dataset_id: '1902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_681_1917.yaml b/carps/configs/problem/HPOB/all/cfg_681_1917.yaml new file mode 100644 index 000000000..eadda8f69 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_681_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/681/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '681' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_681_1919.yaml b/carps/configs/problem/HPOB/all/cfg_681_1919.yaml new file mode 100644 index 000000000..f764552ee --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_681_1919.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/681/1919 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '681' + dataset_id: '1919' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_681_1939.yaml b/carps/configs/problem/HPOB/all/cfg_681_1939.yaml new file mode 100644 index 000000000..2eeaac190 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_681_1939.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/681/1939 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '681' + dataset_id: '1939' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_682_1898.yaml b/carps/configs/problem/HPOB/all/cfg_682_1898.yaml new file mode 100644 index 000000000..0427848ad --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_682_1898.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/682/1898 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '682' + dataset_id: '1898' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_682_1902.yaml b/carps/configs/problem/HPOB/all/cfg_682_1902.yaml new file mode 100644 index 000000000..a33390e77 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_682_1902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/682/1902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '682' + dataset_id: '1902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_682_1917.yaml b/carps/configs/problem/HPOB/all/cfg_682_1917.yaml new file mode 100644 index 000000000..a45be5457 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_682_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/682/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '682' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_682_1919.yaml b/carps/configs/problem/HPOB/all/cfg_682_1919.yaml new file mode 100644 index 000000000..30986418a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_682_1919.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/682/1919 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '682' + dataset_id: '1919' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_682_1939.yaml b/carps/configs/problem/HPOB/all/cfg_682_1939.yaml new file mode 100644 index 000000000..fc42d3e4c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_682_1939.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/682/1939 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '682' + dataset_id: '1939' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_683_1898.yaml b/carps/configs/problem/HPOB/all/cfg_683_1898.yaml new file mode 100644 index 000000000..1e484ed01 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_683_1898.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/683/1898 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '683' + dataset_id: '1898' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_683_1902.yaml b/carps/configs/problem/HPOB/all/cfg_683_1902.yaml new file mode 100644 index 000000000..aa1d2943b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_683_1902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/683/1902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '683' + dataset_id: '1902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_683_1917.yaml b/carps/configs/problem/HPOB/all/cfg_683_1917.yaml new file mode 100644 index 000000000..ab860a9cb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_683_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/683/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '683' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_683_1919.yaml b/carps/configs/problem/HPOB/all/cfg_683_1919.yaml new file mode 100644 index 000000000..140cd5d35 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_683_1919.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/683/1919 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '683' + dataset_id: '1919' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_683_1939.yaml b/carps/configs/problem/HPOB/all/cfg_683_1939.yaml new file mode 100644 index 000000000..fdff5fb9a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_683_1939.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/683/1939 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '683' + dataset_id: '1939' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_684_1898.yaml b/carps/configs/problem/HPOB/all/cfg_684_1898.yaml new file mode 100644 index 000000000..26f75f220 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_684_1898.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/684/1898 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '684' + dataset_id: '1898' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_684_1902.yaml b/carps/configs/problem/HPOB/all/cfg_684_1902.yaml new file mode 100644 index 000000000..6a8993f64 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_684_1902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/684/1902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '684' + dataset_id: '1902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_684_1917.yaml b/carps/configs/problem/HPOB/all/cfg_684_1917.yaml new file mode 100644 index 000000000..9123b1736 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_684_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/684/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '684' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_684_1919.yaml b/carps/configs/problem/HPOB/all/cfg_684_1919.yaml new file mode 100644 index 000000000..8174adc6f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_684_1919.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/684/1919 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '684' + dataset_id: '1919' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_684_1939.yaml b/carps/configs/problem/HPOB/all/cfg_684_1939.yaml new file mode 100644 index 000000000..3cb332a35 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_684_1939.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/684/1939 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '684' + dataset_id: '1939' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_6856_37.yaml b/carps/configs/problem/HPOB/all/cfg_6856_37.yaml new file mode 100644 index 000000000..302c6d378 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_6856_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/6856/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6856' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_685_1898.yaml b/carps/configs/problem/HPOB/all/cfg_685_1898.yaml new file mode 100644 index 000000000..8fdbb975d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_685_1898.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/685/1898 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '685' + dataset_id: '1898' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_685_1902.yaml b/carps/configs/problem/HPOB/all/cfg_685_1902.yaml new file mode 100644 index 000000000..eebcac968 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_685_1902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/685/1902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '685' + dataset_id: '1902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_685_1917.yaml b/carps/configs/problem/HPOB/all/cfg_685_1917.yaml new file mode 100644 index 000000000..e7935c1bc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_685_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/685/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '685' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_685_1919.yaml b/carps/configs/problem/HPOB/all/cfg_685_1919.yaml new file mode 100644 index 000000000..f5136cc1f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_685_1919.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/685/1919 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '685' + dataset_id: '1919' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_685_1939.yaml b/carps/configs/problem/HPOB/all/cfg_685_1939.yaml new file mode 100644 index 000000000..51c0e8bbd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_685_1939.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/685/1939 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '685' + dataset_id: '1939' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_688_1917.yaml b/carps/configs/problem/HPOB/all/cfg_688_1917.yaml new file mode 100644 index 000000000..9ac50d884 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_688_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/688/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '688' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_689_1917.yaml b/carps/configs/problem/HPOB/all/cfg_689_1917.yaml new file mode 100644 index 000000000..3eca67b8d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_689_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/689/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '689' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_690_1917.yaml b/carps/configs/problem/HPOB/all/cfg_690_1917.yaml new file mode 100644 index 000000000..cf38d585e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_690_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/690/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '690' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_691_1917.yaml b/carps/configs/problem/HPOB/all/cfg_691_1917.yaml new file mode 100644 index 000000000..1a809f6d8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_691_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/691/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '691' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_692_1917.yaml b/carps/configs/problem/HPOB/all/cfg_692_1917.yaml new file mode 100644 index 000000000..42e593838 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_692_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/692/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '692' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_693_1917.yaml b/carps/configs/problem/HPOB/all/cfg_693_1917.yaml new file mode 100644 index 000000000..d906b219e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_693_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/693/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '693' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_694_1917.yaml b/carps/configs/problem/HPOB/all/cfg_694_1917.yaml new file mode 100644 index 000000000..5bd05476f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_694_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/694/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '694' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_695_1917.yaml b/carps/configs/problem/HPOB/all/cfg_695_1917.yaml new file mode 100644 index 000000000..351422589 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_695_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/695/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '695' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_696_1917.yaml b/carps/configs/problem/HPOB/all/cfg_696_1917.yaml new file mode 100644 index 000000000..407a9f257 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_696_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/696/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '696' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_697_1917.yaml b/carps/configs/problem/HPOB/all/cfg_697_1917.yaml new file mode 100644 index 000000000..c5f1ec3c7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_697_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/697/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '697' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7021_125923.yaml b/carps/configs/problem/HPOB/all/cfg_7021_125923.yaml new file mode 100644 index 000000000..df02da81d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7021_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7021/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7021' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7064_22.yaml b/carps/configs/problem/HPOB/all/cfg_7064_22.yaml new file mode 100644 index 000000000..0feea0515 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7064_22.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7064/22 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7064' + dataset_id: '22' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_10093.yaml b/carps/configs/problem/HPOB/all/cfg_7188_10093.yaml new file mode 100644 index 000000000..c13cdab92 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_10093.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/10093 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '10093' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_125920.yaml b/carps/configs/problem/HPOB/all/cfg_7188_125920.yaml new file mode 100644 index 000000000..dc83597fb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_125920.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/125920 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '125920' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_125923.yaml b/carps/configs/problem/HPOB/all/cfg_7188_125923.yaml new file mode 100644 index 000000000..cb8a2e2e4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_24.yaml b/carps/configs/problem/HPOB/all/cfg_7188_24.yaml new file mode 100644 index 000000000..a18c92242 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_24.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/24 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '24' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_29.yaml b/carps/configs/problem/HPOB/all/cfg_7188_29.yaml new file mode 100644 index 000000000..695347560 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_3.yaml b/carps/configs/problem/HPOB/all/cfg_7188_3.yaml new file mode 100644 index 000000000..3055a14e9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_3021.yaml b/carps/configs/problem/HPOB/all/cfg_7188_3021.yaml new file mode 100644 index 000000000..d7b8ded66 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_3021.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/3021 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '3021' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_31.yaml b/carps/configs/problem/HPOB/all/cfg_7188_31.yaml new file mode 100644 index 000000000..e55b08f40 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_34536.yaml b/carps/configs/problem/HPOB/all/cfg_7188_34536.yaml new file mode 100644 index 000000000..0b279dc09 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_34536.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/34536 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '34536' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_34537.yaml b/carps/configs/problem/HPOB/all/cfg_7188_34537.yaml new file mode 100644 index 000000000..2c1b5ad66 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_34537.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/34537 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '34537' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_3492.yaml b/carps/configs/problem/HPOB/all/cfg_7188_3492.yaml new file mode 100644 index 000000000..6e290350b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_3492.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/3492 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '3492' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_3493.yaml b/carps/configs/problem/HPOB/all/cfg_7188_3493.yaml new file mode 100644 index 000000000..763cc4315 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_3494.yaml b/carps/configs/problem/HPOB/all/cfg_7188_3494.yaml new file mode 100644 index 000000000..d0a01a0f8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_37.yaml b/carps/configs/problem/HPOB/all/cfg_7188_37.yaml new file mode 100644 index 000000000..286e88ffb --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_3899.yaml b/carps/configs/problem/HPOB/all/cfg_7188_3899.yaml new file mode 100644 index 000000000..8c0c87182 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_3899.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/3899 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '3899' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_3902.yaml b/carps/configs/problem/HPOB/all/cfg_7188_3902.yaml new file mode 100644 index 000000000..a698118e9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_3903.yaml b/carps/configs/problem/HPOB/all/cfg_7188_3903.yaml new file mode 100644 index 000000000..269be4773 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_3903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/3903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '3903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_3904.yaml b/carps/configs/problem/HPOB/all/cfg_7188_3904.yaml new file mode 100644 index 000000000..ae3016bf5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_3904.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/3904 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '3904' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_3913.yaml b/carps/configs/problem/HPOB/all/cfg_7188_3913.yaml new file mode 100644 index 000000000..bf7f3ecb2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_3917.yaml b/carps/configs/problem/HPOB/all/cfg_7188_3917.yaml new file mode 100644 index 000000000..01596b448 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_3918.yaml b/carps/configs/problem/HPOB/all/cfg_7188_3918.yaml new file mode 100644 index 000000000..7a68b88ea --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_3918.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/3918 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '3918' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_3954.yaml b/carps/configs/problem/HPOB/all/cfg_7188_3954.yaml new file mode 100644 index 000000000..51d15b83f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_43.yaml b/carps/configs/problem/HPOB/all/cfg_7188_43.yaml new file mode 100644 index 000000000..1a1b19b20 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_49.yaml b/carps/configs/problem/HPOB/all/cfg_7188_49.yaml new file mode 100644 index 000000000..6ffab8c86 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_7592.yaml b/carps/configs/problem/HPOB/all/cfg_7188_7592.yaml new file mode 100644 index 000000000..ffd178efa --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_7592.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/7592 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '7592' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_9914.yaml b/carps/configs/problem/HPOB/all/cfg_7188_9914.yaml new file mode 100644 index 000000000..2bed5fb64 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_9946.yaml b/carps/configs/problem/HPOB/all/cfg_7188_9946.yaml new file mode 100644 index 000000000..b32e4a4e9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_9946.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/9946 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '9946' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_9952.yaml b/carps/configs/problem/HPOB/all/cfg_7188_9952.yaml new file mode 100644 index 000000000..d2b915aba --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_9967.yaml b/carps/configs/problem/HPOB/all/cfg_7188_9967.yaml new file mode 100644 index 000000000..2f4bc0474 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_9967.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/9967 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '9967' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_9970.yaml b/carps/configs/problem/HPOB/all/cfg_7188_9970.yaml new file mode 100644 index 000000000..d880339de --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_9970.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/9970 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '9970' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_9971.yaml b/carps/configs/problem/HPOB/all/cfg_7188_9971.yaml new file mode 100644 index 000000000..1af54e9ae --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_9977.yaml b/carps/configs/problem/HPOB/all/cfg_7188_9977.yaml new file mode 100644 index 000000000..495b2edf9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_9977.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/9977 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '9977' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_9978.yaml b/carps/configs/problem/HPOB/all/cfg_7188_9978.yaml new file mode 100644 index 000000000..cae001b94 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_9978.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/9978 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '9978' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_9980.yaml b/carps/configs/problem/HPOB/all/cfg_7188_9980.yaml new file mode 100644 index 000000000..1f5d5f1a8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_9980.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/9980 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '9980' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7188_9983.yaml b/carps/configs/problem/HPOB/all/cfg_7188_9983.yaml new file mode 100644 index 000000000..01ce1e6d2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7188_9983.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7188/9983 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '9983' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_10093.yaml b/carps/configs/problem/HPOB/all/cfg_7189_10093.yaml new file mode 100644 index 000000000..482411240 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_10093.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/10093 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '10093' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_10101.yaml b/carps/configs/problem/HPOB/all/cfg_7189_10101.yaml new file mode 100644 index 000000000..365347149 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_125920.yaml b/carps/configs/problem/HPOB/all/cfg_7189_125920.yaml new file mode 100644 index 000000000..47a72899f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_125920.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/125920 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '125920' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_125923.yaml b/carps/configs/problem/HPOB/all/cfg_7189_125923.yaml new file mode 100644 index 000000000..c7f21beb1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_14965.yaml b/carps/configs/problem/HPOB/all/cfg_7189_14965.yaml new file mode 100644 index 000000000..5b3154f6e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_14965.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/14965 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '14965' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_14966.yaml b/carps/configs/problem/HPOB/all/cfg_7189_14966.yaml new file mode 100644 index 000000000..3ff1249b0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_14966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/14966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '14966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_15.yaml b/carps/configs/problem/HPOB/all/cfg_7189_15.yaml new file mode 100644 index 000000000..44f785131 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_15.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/15 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '15' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_24.yaml b/carps/configs/problem/HPOB/all/cfg_7189_24.yaml new file mode 100644 index 000000000..94ec9507b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_24.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/24 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '24' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_29.yaml b/carps/configs/problem/HPOB/all/cfg_7189_29.yaml new file mode 100644 index 000000000..ca430aedd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_3.yaml b/carps/configs/problem/HPOB/all/cfg_7189_3.yaml new file mode 100644 index 000000000..7f78e824b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_3021.yaml b/carps/configs/problem/HPOB/all/cfg_7189_3021.yaml new file mode 100644 index 000000000..1a42c746c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_3021.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/3021 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '3021' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_31.yaml b/carps/configs/problem/HPOB/all/cfg_7189_31.yaml new file mode 100644 index 000000000..72327d1dd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_34536.yaml b/carps/configs/problem/HPOB/all/cfg_7189_34536.yaml new file mode 100644 index 000000000..24b81da9a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_34536.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/34536 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '34536' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_34537.yaml b/carps/configs/problem/HPOB/all/cfg_7189_34537.yaml new file mode 100644 index 000000000..1163047e2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_34537.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/34537 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '34537' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_3485.yaml b/carps/configs/problem/HPOB/all/cfg_7189_3485.yaml new file mode 100644 index 000000000..18a65676e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_3485.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/3485 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '3485' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_3492.yaml b/carps/configs/problem/HPOB/all/cfg_7189_3492.yaml new file mode 100644 index 000000000..07887e5a9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_3492.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/3492 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '3492' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_3493.yaml b/carps/configs/problem/HPOB/all/cfg_7189_3493.yaml new file mode 100644 index 000000000..a2557e271 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_3494.yaml b/carps/configs/problem/HPOB/all/cfg_7189_3494.yaml new file mode 100644 index 000000000..6ca21a1e8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_3543.yaml b/carps/configs/problem/HPOB/all/cfg_7189_3543.yaml new file mode 100644 index 000000000..5d2330922 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_3543.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/3543 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '3543' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_37.yaml b/carps/configs/problem/HPOB/all/cfg_7189_37.yaml new file mode 100644 index 000000000..65f406b59 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_3896.yaml b/carps/configs/problem/HPOB/all/cfg_7189_3896.yaml new file mode 100644 index 000000000..a6da8ed1b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_3899.yaml b/carps/configs/problem/HPOB/all/cfg_7189_3899.yaml new file mode 100644 index 000000000..3afb512b5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_3899.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/3899 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '3899' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_3902.yaml b/carps/configs/problem/HPOB/all/cfg_7189_3902.yaml new file mode 100644 index 000000000..dd3eeff89 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_3903.yaml b/carps/configs/problem/HPOB/all/cfg_7189_3903.yaml new file mode 100644 index 000000000..ffc2f96f1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_3903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/3903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '3903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_3913.yaml b/carps/configs/problem/HPOB/all/cfg_7189_3913.yaml new file mode 100644 index 000000000..82c2e8c69 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_3917.yaml b/carps/configs/problem/HPOB/all/cfg_7189_3917.yaml new file mode 100644 index 000000000..82f35cb5a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_3918.yaml b/carps/configs/problem/HPOB/all/cfg_7189_3918.yaml new file mode 100644 index 000000000..207ba0663 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_3918.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/3918 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '3918' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_3954.yaml b/carps/configs/problem/HPOB/all/cfg_7189_3954.yaml new file mode 100644 index 000000000..f833da009 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_43.yaml b/carps/configs/problem/HPOB/all/cfg_7189_43.yaml new file mode 100644 index 000000000..940cc9755 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_49.yaml b/carps/configs/problem/HPOB/all/cfg_7189_49.yaml new file mode 100644 index 000000000..5aad1ef2f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_7592.yaml b/carps/configs/problem/HPOB/all/cfg_7189_7592.yaml new file mode 100644 index 000000000..5ab4f8964 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_7592.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/7592 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '7592' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_9914.yaml b/carps/configs/problem/HPOB/all/cfg_7189_9914.yaml new file mode 100644 index 000000000..ea0de9b70 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_9957.yaml b/carps/configs/problem/HPOB/all/cfg_7189_9957.yaml new file mode 100644 index 000000000..0460330c9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_9970.yaml b/carps/configs/problem/HPOB/all/cfg_7189_9970.yaml new file mode 100644 index 000000000..616fb5f29 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_9970.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/9970 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '9970' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_9971.yaml b/carps/configs/problem/HPOB/all/cfg_7189_9971.yaml new file mode 100644 index 000000000..4aa546ac1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_9976.yaml b/carps/configs/problem/HPOB/all/cfg_7189_9976.yaml new file mode 100644 index 000000000..dbea4f6b5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_9976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/9976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '9976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_9977.yaml b/carps/configs/problem/HPOB/all/cfg_7189_9977.yaml new file mode 100644 index 000000000..a779dad6e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_9977.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/9977 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '9977' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_9978.yaml b/carps/configs/problem/HPOB/all/cfg_7189_9978.yaml new file mode 100644 index 000000000..09b4475b6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_9978.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/9978 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '9978' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_9980.yaml b/carps/configs/problem/HPOB/all/cfg_7189_9980.yaml new file mode 100644 index 000000000..2076b926e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_9980.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/9980 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '9980' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7189_9983.yaml b/carps/configs/problem/HPOB/all/cfg_7189_9983.yaml new file mode 100644 index 000000000..67dba51dd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7189_9983.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7189/9983 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '9983' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_10093.yaml b/carps/configs/problem/HPOB/all/cfg_7190_10093.yaml new file mode 100644 index 000000000..fadb25a5a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_10093.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/10093 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '10093' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_10101.yaml b/carps/configs/problem/HPOB/all/cfg_7190_10101.yaml new file mode 100644 index 000000000..def24bd0b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_15.yaml b/carps/configs/problem/HPOB/all/cfg_7190_15.yaml new file mode 100644 index 000000000..30bb8cc33 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_15.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/15 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '15' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_24.yaml b/carps/configs/problem/HPOB/all/cfg_7190_24.yaml new file mode 100644 index 000000000..c4cf21cbd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_24.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/24 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '24' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_29.yaml b/carps/configs/problem/HPOB/all/cfg_7190_29.yaml new file mode 100644 index 000000000..adce7aecd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_29.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/29 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '29' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_3.yaml b/carps/configs/problem/HPOB/all/cfg_7190_3.yaml new file mode 100644 index 000000000..13c678cae --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_3021.yaml b/carps/configs/problem/HPOB/all/cfg_7190_3021.yaml new file mode 100644 index 000000000..1dd34291b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_3021.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/3021 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '3021' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_31.yaml b/carps/configs/problem/HPOB/all/cfg_7190_31.yaml new file mode 100644 index 000000000..23f01547e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_34536.yaml b/carps/configs/problem/HPOB/all/cfg_7190_34536.yaml new file mode 100644 index 000000000..1911e75de --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_34536.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/34536 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '34536' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_34537.yaml b/carps/configs/problem/HPOB/all/cfg_7190_34537.yaml new file mode 100644 index 000000000..c0275c065 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_34537.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/34537 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '34537' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_3485.yaml b/carps/configs/problem/HPOB/all/cfg_7190_3485.yaml new file mode 100644 index 000000000..f97184bb3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_3485.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/3485 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '3485' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_37.yaml b/carps/configs/problem/HPOB/all/cfg_7190_37.yaml new file mode 100644 index 000000000..25ff1ba64 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_3896.yaml b/carps/configs/problem/HPOB/all/cfg_7190_3896.yaml new file mode 100644 index 000000000..6d29d6431 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_3899.yaml b/carps/configs/problem/HPOB/all/cfg_7190_3899.yaml new file mode 100644 index 000000000..ad3a92d78 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_3899.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/3899 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '3899' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_3902.yaml b/carps/configs/problem/HPOB/all/cfg_7190_3902.yaml new file mode 100644 index 000000000..2b232c219 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_3903.yaml b/carps/configs/problem/HPOB/all/cfg_7190_3903.yaml new file mode 100644 index 000000000..88a5ce1e8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_3903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/3903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '3903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_3917.yaml b/carps/configs/problem/HPOB/all/cfg_7190_3917.yaml new file mode 100644 index 000000000..2115051bd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_3918.yaml b/carps/configs/problem/HPOB/all/cfg_7190_3918.yaml new file mode 100644 index 000000000..3b4708381 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_3918.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/3918 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '3918' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_3954.yaml b/carps/configs/problem/HPOB/all/cfg_7190_3954.yaml new file mode 100644 index 000000000..fd0c891d2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_43.yaml b/carps/configs/problem/HPOB/all/cfg_7190_43.yaml new file mode 100644 index 000000000..5146970f4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_49.yaml b/carps/configs/problem/HPOB/all/cfg_7190_49.yaml new file mode 100644 index 000000000..e23cfbdea --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_9914.yaml b/carps/configs/problem/HPOB/all/cfg_7190_9914.yaml new file mode 100644 index 000000000..f543dd61c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_9946.yaml b/carps/configs/problem/HPOB/all/cfg_7190_9946.yaml new file mode 100644 index 000000000..7156f0a99 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_9946.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/9946 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '9946' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_9952.yaml b/carps/configs/problem/HPOB/all/cfg_7190_9952.yaml new file mode 100644 index 000000000..9b3ae7d46 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_9957.yaml b/carps/configs/problem/HPOB/all/cfg_7190_9957.yaml new file mode 100644 index 000000000..710e1e9b3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_9967.yaml b/carps/configs/problem/HPOB/all/cfg_7190_9967.yaml new file mode 100644 index 000000000..991ae58d6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_9967.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/9967 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '9967' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_9970.yaml b/carps/configs/problem/HPOB/all/cfg_7190_9970.yaml new file mode 100644 index 000000000..17a68f7aa --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_9970.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/9970 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '9970' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_9971.yaml b/carps/configs/problem/HPOB/all/cfg_7190_9971.yaml new file mode 100644 index 000000000..526df30e3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_9976.yaml b/carps/configs/problem/HPOB/all/cfg_7190_9976.yaml new file mode 100644 index 000000000..698dd049d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_9976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/9976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '9976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_9978.yaml b/carps/configs/problem/HPOB/all/cfg_7190_9978.yaml new file mode 100644 index 000000000..747181716 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_9978.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/9978 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '9978' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_9980.yaml b/carps/configs/problem/HPOB/all/cfg_7190_9980.yaml new file mode 100644 index 000000000..f49ab4606 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_9980.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/9980 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '9980' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7190_9983.yaml b/carps/configs/problem/HPOB/all/cfg_7190_9983.yaml new file mode 100644 index 000000000..50d6c1135 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7190_9983.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7190/9983 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7190' + dataset_id: '9983' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7200_219.yaml b/carps/configs/problem/HPOB/all/cfg_7200_219.yaml new file mode 100644 index 000000000..64686c066 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7200_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7200/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7200' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 19 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 19 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7286_3.yaml b/carps/configs/problem/HPOB/all/cfg_7286_3.yaml new file mode 100644 index 000000000..17e3b03ef --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7286_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7286/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7286' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7290_3.yaml b/carps/configs/problem/HPOB/all/cfg_7290_3.yaml new file mode 100644 index 000000000..1db93cb5b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7290_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7290/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7290' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7604_146066.yaml b/carps/configs/problem/HPOB/all/cfg_7604_146066.yaml new file mode 100644 index 000000000..f6350b849 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7604_146066.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7604/146066 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7604' + dataset_id: '146066' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_10093.yaml b/carps/configs/problem/HPOB/all/cfg_7607_10093.yaml new file mode 100644 index 000000000..b984c2d81 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_10093.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/10093 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '10093' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_10101.yaml b/carps/configs/problem/HPOB/all/cfg_7607_10101.yaml new file mode 100644 index 000000000..41a65ef0f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_125923.yaml b/carps/configs/problem/HPOB/all/cfg_7607_125923.yaml new file mode 100644 index 000000000..88613b8d5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_145677.yaml b/carps/configs/problem/HPOB/all/cfg_7607_145677.yaml new file mode 100644 index 000000000..d88071af3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_145677.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/145677 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '145677' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_145804.yaml b/carps/configs/problem/HPOB/all/cfg_7607_145804.yaml new file mode 100644 index 000000000..989d46556 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_145804.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/145804 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '145804' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_145833.yaml b/carps/configs/problem/HPOB/all/cfg_7607_145833.yaml new file mode 100644 index 000000000..39c581319 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_145833.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/145833 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '145833' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_145834.yaml b/carps/configs/problem/HPOB/all/cfg_7607_145834.yaml new file mode 100644 index 000000000..2196e898b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_145834.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/145834 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '145834' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_145836.yaml b/carps/configs/problem/HPOB/all/cfg_7607_145836.yaml new file mode 100644 index 000000000..cd7b8897d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_145836.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/145836 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '145836' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_145839.yaml b/carps/configs/problem/HPOB/all/cfg_7607_145839.yaml new file mode 100644 index 000000000..cd7ebca22 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_145839.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/145839 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '145839' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_145847.yaml b/carps/configs/problem/HPOB/all/cfg_7607_145847.yaml new file mode 100644 index 000000000..546a54e3b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_145847.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/145847 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '145847' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_145848.yaml b/carps/configs/problem/HPOB/all/cfg_7607_145848.yaml new file mode 100644 index 000000000..cf724658d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_145848.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/145848 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '145848' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_145853.yaml b/carps/configs/problem/HPOB/all/cfg_7607_145853.yaml new file mode 100644 index 000000000..0e3a0329d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_145853.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/145853 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '145853' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_145854.yaml b/carps/configs/problem/HPOB/all/cfg_7607_145854.yaml new file mode 100644 index 000000000..307eae406 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_145854.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/145854 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '145854' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_145855.yaml b/carps/configs/problem/HPOB/all/cfg_7607_145855.yaml new file mode 100644 index 000000000..ebe3fa364 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_145855.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/145855 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '145855' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_145857.yaml b/carps/configs/problem/HPOB/all/cfg_7607_145857.yaml new file mode 100644 index 000000000..058445913 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_145857.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/145857 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '145857' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_145862.yaml b/carps/configs/problem/HPOB/all/cfg_7607_145862.yaml new file mode 100644 index 000000000..cc4c7b51a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_145862.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/145862 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '145862' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_145872.yaml b/carps/configs/problem/HPOB/all/cfg_7607_145872.yaml new file mode 100644 index 000000000..d1631ed79 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_145872.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/145872 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '145872' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_145878.yaml b/carps/configs/problem/HPOB/all/cfg_7607_145878.yaml new file mode 100644 index 000000000..36ca20a0e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_145878.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/145878 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '145878' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_145953.yaml b/carps/configs/problem/HPOB/all/cfg_7607_145953.yaml new file mode 100644 index 000000000..d3ade0652 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_145953.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/145953 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '145953' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_145972.yaml b/carps/configs/problem/HPOB/all/cfg_7607_145972.yaml new file mode 100644 index 000000000..33d8b4ce0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_145972.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/145972 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '145972' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_145976.yaml b/carps/configs/problem/HPOB/all/cfg_7607_145976.yaml new file mode 100644 index 000000000..e94e62531 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_145976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/145976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '145976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_145979.yaml b/carps/configs/problem/HPOB/all/cfg_7607_145979.yaml new file mode 100644 index 000000000..9efa8a92d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_145979.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/145979 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '145979' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_146012.yaml b/carps/configs/problem/HPOB/all/cfg_7607_146012.yaml new file mode 100644 index 000000000..43002c3e0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_146012.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/146012 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '146012' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_146064.yaml b/carps/configs/problem/HPOB/all/cfg_7607_146064.yaml new file mode 100644 index 000000000..107bf6d5e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_146064.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/146064 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '146064' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_146065.yaml b/carps/configs/problem/HPOB/all/cfg_7607_146065.yaml new file mode 100644 index 000000000..0e784a034 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_146065.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/146065 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '146065' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_146066.yaml b/carps/configs/problem/HPOB/all/cfg_7607_146066.yaml new file mode 100644 index 000000000..cb0811e23 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_146066.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/146066 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '146066' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_146085.yaml b/carps/configs/problem/HPOB/all/cfg_7607_146085.yaml new file mode 100644 index 000000000..857918f1a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_146085.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/146085 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '146085' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_146803.yaml b/carps/configs/problem/HPOB/all/cfg_7607_146803.yaml new file mode 100644 index 000000000..1df49522f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_146803.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/146803 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '146803' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_14951.yaml b/carps/configs/problem/HPOB/all/cfg_7607_14951.yaml new file mode 100644 index 000000000..1d16d090f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_14952.yaml b/carps/configs/problem/HPOB/all/cfg_7607_14952.yaml new file mode 100644 index 000000000..d1fc07f0c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_14952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/14952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '14952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_14965.yaml b/carps/configs/problem/HPOB/all/cfg_7607_14965.yaml new file mode 100644 index 000000000..fff7d5dc5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_14965.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/14965 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '14965' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_14966.yaml b/carps/configs/problem/HPOB/all/cfg_7607_14966.yaml new file mode 100644 index 000000000..58b8b3b20 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_14966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/14966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '14966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_14971.yaml b/carps/configs/problem/HPOB/all/cfg_7607_14971.yaml new file mode 100644 index 000000000..bfe0cf6b2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_14971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/14971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '14971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_219.yaml b/carps/configs/problem/HPOB/all/cfg_7607_219.yaml new file mode 100644 index 000000000..edd343cb5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_3.yaml b/carps/configs/problem/HPOB/all/cfg_7607_3.yaml new file mode 100644 index 000000000..081c9cca6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_31.yaml b/carps/configs/problem/HPOB/all/cfg_7607_31.yaml new file mode 100644 index 000000000..78e21b664 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_34536.yaml b/carps/configs/problem/HPOB/all/cfg_7607_34536.yaml new file mode 100644 index 000000000..e8ab308e0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_34536.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/34536 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '34536' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_34537.yaml b/carps/configs/problem/HPOB/all/cfg_7607_34537.yaml new file mode 100644 index 000000000..fb54b4346 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_34537.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/34537 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '34537' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_34539.yaml b/carps/configs/problem/HPOB/all/cfg_7607_34539.yaml new file mode 100644 index 000000000..eaa4d2d9d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_34539.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/34539 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '34539' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_3485.yaml b/carps/configs/problem/HPOB/all/cfg_7607_3485.yaml new file mode 100644 index 000000000..449f2505e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_3485.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/3485 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '3485' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_3492.yaml b/carps/configs/problem/HPOB/all/cfg_7607_3492.yaml new file mode 100644 index 000000000..180867189 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_3492.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/3492 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '3492' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_3493.yaml b/carps/configs/problem/HPOB/all/cfg_7607_3493.yaml new file mode 100644 index 000000000..c2ea020a6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_3494.yaml b/carps/configs/problem/HPOB/all/cfg_7607_3494.yaml new file mode 100644 index 000000000..724fd606e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_37.yaml b/carps/configs/problem/HPOB/all/cfg_7607_37.yaml new file mode 100644 index 000000000..1a49b1ed9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_3889.yaml b/carps/configs/problem/HPOB/all/cfg_7607_3889.yaml new file mode 100644 index 000000000..48ba76382 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_3889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/3889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '3889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_3891.yaml b/carps/configs/problem/HPOB/all/cfg_7607_3891.yaml new file mode 100644 index 000000000..59ccfa2b5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_3891.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/3891 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '3891' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_3896.yaml b/carps/configs/problem/HPOB/all/cfg_7607_3896.yaml new file mode 100644 index 000000000..06830cd4d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_3899.yaml b/carps/configs/problem/HPOB/all/cfg_7607_3899.yaml new file mode 100644 index 000000000..ed859a281 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_3899.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/3899 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '3899' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_3902.yaml b/carps/configs/problem/HPOB/all/cfg_7607_3902.yaml new file mode 100644 index 000000000..7d7ac670f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_3903.yaml b/carps/configs/problem/HPOB/all/cfg_7607_3903.yaml new file mode 100644 index 000000000..0a4249dc5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_3903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/3903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '3903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_3913.yaml b/carps/configs/problem/HPOB/all/cfg_7607_3913.yaml new file mode 100644 index 000000000..4ba15fca9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_3917.yaml b/carps/configs/problem/HPOB/all/cfg_7607_3917.yaml new file mode 100644 index 000000000..3e4a370f8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_3918.yaml b/carps/configs/problem/HPOB/all/cfg_7607_3918.yaml new file mode 100644 index 000000000..b8aa744fa --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_3918.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/3918 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '3918' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_3954.yaml b/carps/configs/problem/HPOB/all/cfg_7607_3954.yaml new file mode 100644 index 000000000..4ca747e3b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_43.yaml b/carps/configs/problem/HPOB/all/cfg_7607_43.yaml new file mode 100644 index 000000000..ac9d60d6d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_49.yaml b/carps/configs/problem/HPOB/all/cfg_7607_49.yaml new file mode 100644 index 000000000..bee5dbe52 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_7295.yaml b/carps/configs/problem/HPOB/all/cfg_7607_7295.yaml new file mode 100644 index 000000000..036608874 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_7295.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/7295 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '7295' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_9889.yaml b/carps/configs/problem/HPOB/all/cfg_7607_9889.yaml new file mode 100644 index 000000000..da3672436 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_9910.yaml b/carps/configs/problem/HPOB/all/cfg_7607_9910.yaml new file mode 100644 index 000000000..eafe3df2b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_9910.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/9910 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '9910' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_9911.yaml b/carps/configs/problem/HPOB/all/cfg_7607_9911.yaml new file mode 100644 index 000000000..56d80d0e2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_9911.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/9911 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '9911' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_9914.yaml b/carps/configs/problem/HPOB/all/cfg_7607_9914.yaml new file mode 100644 index 000000000..84c05b3ff --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_9946.yaml b/carps/configs/problem/HPOB/all/cfg_7607_9946.yaml new file mode 100644 index 000000000..06662722a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_9946.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/9946 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '9946' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_9952.yaml b/carps/configs/problem/HPOB/all/cfg_7607_9952.yaml new file mode 100644 index 000000000..6091240ac --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_9957.yaml b/carps/configs/problem/HPOB/all/cfg_7607_9957.yaml new file mode 100644 index 000000000..425f301ca --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_9967.yaml b/carps/configs/problem/HPOB/all/cfg_7607_9967.yaml new file mode 100644 index 000000000..e3fe885a6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_9967.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/9967 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '9967' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_9970.yaml b/carps/configs/problem/HPOB/all/cfg_7607_9970.yaml new file mode 100644 index 000000000..83c13ce0e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_9970.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/9970 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '9970' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_9971.yaml b/carps/configs/problem/HPOB/all/cfg_7607_9971.yaml new file mode 100644 index 000000000..8b9e93dd1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_9976.yaml b/carps/configs/problem/HPOB/all/cfg_7607_9976.yaml new file mode 100644 index 000000000..c23d05705 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_9976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/9976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '9976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_9977.yaml b/carps/configs/problem/HPOB/all/cfg_7607_9977.yaml new file mode 100644 index 000000000..f2df7c5d0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_9977.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/9977 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '9977' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_9978.yaml b/carps/configs/problem/HPOB/all/cfg_7607_9978.yaml new file mode 100644 index 000000000..1971af2fc --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_9978.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/9978 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '9978' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_9980.yaml b/carps/configs/problem/HPOB/all/cfg_7607_9980.yaml new file mode 100644 index 000000000..4541f833b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_9980.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/9980 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '9980' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7607_9983.yaml b/carps/configs/problem/HPOB/all/cfg_7607_9983.yaml new file mode 100644 index 000000000..92a398a8b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7607_9983.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7607/9983 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7607' + dataset_id: '9983' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_10093.yaml b/carps/configs/problem/HPOB/all/cfg_7609_10093.yaml new file mode 100644 index 000000000..0def84e20 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_10093.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/10093 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '10093' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_10101.yaml b/carps/configs/problem/HPOB/all/cfg_7609_10101.yaml new file mode 100644 index 000000000..f57dbf5be --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_125923.yaml b/carps/configs/problem/HPOB/all/cfg_7609_125923.yaml new file mode 100644 index 000000000..98cd7ebb5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_145677.yaml b/carps/configs/problem/HPOB/all/cfg_7609_145677.yaml new file mode 100644 index 000000000..080c44e55 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_145677.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/145677 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '145677' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_145804.yaml b/carps/configs/problem/HPOB/all/cfg_7609_145804.yaml new file mode 100644 index 000000000..3d9bea005 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_145804.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/145804 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '145804' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_145833.yaml b/carps/configs/problem/HPOB/all/cfg_7609_145833.yaml new file mode 100644 index 000000000..88bc9ce37 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_145833.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/145833 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '145833' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_145834.yaml b/carps/configs/problem/HPOB/all/cfg_7609_145834.yaml new file mode 100644 index 000000000..2566ed530 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_145834.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/145834 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '145834' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_145836.yaml b/carps/configs/problem/HPOB/all/cfg_7609_145836.yaml new file mode 100644 index 000000000..e0f84e4ee --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_145836.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/145836 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '145836' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_145839.yaml b/carps/configs/problem/HPOB/all/cfg_7609_145839.yaml new file mode 100644 index 000000000..e2e9e58c5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_145839.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/145839 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '145839' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_145847.yaml b/carps/configs/problem/HPOB/all/cfg_7609_145847.yaml new file mode 100644 index 000000000..2bdfd71c3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_145847.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/145847 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '145847' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_145848.yaml b/carps/configs/problem/HPOB/all/cfg_7609_145848.yaml new file mode 100644 index 000000000..ab5c697e3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_145848.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/145848 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '145848' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_145853.yaml b/carps/configs/problem/HPOB/all/cfg_7609_145853.yaml new file mode 100644 index 000000000..564fa25dd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_145853.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/145853 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '145853' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_145854.yaml b/carps/configs/problem/HPOB/all/cfg_7609_145854.yaml new file mode 100644 index 000000000..4d7f09b1f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_145854.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/145854 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '145854' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_145855.yaml b/carps/configs/problem/HPOB/all/cfg_7609_145855.yaml new file mode 100644 index 000000000..9be0ea5c5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_145855.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/145855 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '145855' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_145857.yaml b/carps/configs/problem/HPOB/all/cfg_7609_145857.yaml new file mode 100644 index 000000000..4833116f2 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_145857.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/145857 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '145857' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_145862.yaml b/carps/configs/problem/HPOB/all/cfg_7609_145862.yaml new file mode 100644 index 000000000..c2d140821 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_145862.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/145862 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '145862' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_145872.yaml b/carps/configs/problem/HPOB/all/cfg_7609_145872.yaml new file mode 100644 index 000000000..d3058dd0c --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_145872.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/145872 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '145872' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_145878.yaml b/carps/configs/problem/HPOB/all/cfg_7609_145878.yaml new file mode 100644 index 000000000..c5fb5a964 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_145878.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/145878 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '145878' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_145953.yaml b/carps/configs/problem/HPOB/all/cfg_7609_145953.yaml new file mode 100644 index 000000000..bc7485389 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_145953.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/145953 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '145953' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_145972.yaml b/carps/configs/problem/HPOB/all/cfg_7609_145972.yaml new file mode 100644 index 000000000..eef148b6a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_145972.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/145972 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '145972' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_145976.yaml b/carps/configs/problem/HPOB/all/cfg_7609_145976.yaml new file mode 100644 index 000000000..36416fdb0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_145976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/145976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '145976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_145979.yaml b/carps/configs/problem/HPOB/all/cfg_7609_145979.yaml new file mode 100644 index 000000000..8ddf9025d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_145979.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/145979 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '145979' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_146012.yaml b/carps/configs/problem/HPOB/all/cfg_7609_146012.yaml new file mode 100644 index 000000000..9981b5ae0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_146012.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/146012 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '146012' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_146064.yaml b/carps/configs/problem/HPOB/all/cfg_7609_146064.yaml new file mode 100644 index 000000000..7093153e3 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_146064.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/146064 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '146064' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_146065.yaml b/carps/configs/problem/HPOB/all/cfg_7609_146065.yaml new file mode 100644 index 000000000..272e2c64f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_146065.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/146065 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '146065' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_146066.yaml b/carps/configs/problem/HPOB/all/cfg_7609_146066.yaml new file mode 100644 index 000000000..3dc508bb8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_146066.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/146066 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '146066' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_146085.yaml b/carps/configs/problem/HPOB/all/cfg_7609_146085.yaml new file mode 100644 index 000000000..4715d01a4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_146085.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/146085 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '146085' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_146803.yaml b/carps/configs/problem/HPOB/all/cfg_7609_146803.yaml new file mode 100644 index 000000000..eecb21500 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_146803.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/146803 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '146803' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_14951.yaml b/carps/configs/problem/HPOB/all/cfg_7609_14951.yaml new file mode 100644 index 000000000..93effdaff --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_14952.yaml b/carps/configs/problem/HPOB/all/cfg_7609_14952.yaml new file mode 100644 index 000000000..fb58d2111 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_14952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/14952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '14952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_14965.yaml b/carps/configs/problem/HPOB/all/cfg_7609_14965.yaml new file mode 100644 index 000000000..4f76fc0bf --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_14965.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/14965 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '14965' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_14966.yaml b/carps/configs/problem/HPOB/all/cfg_7609_14966.yaml new file mode 100644 index 000000000..f8f48771b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_14966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/14966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '14966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_14971.yaml b/carps/configs/problem/HPOB/all/cfg_7609_14971.yaml new file mode 100644 index 000000000..45a109f72 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_14971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/14971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '14971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_219.yaml b/carps/configs/problem/HPOB/all/cfg_7609_219.yaml new file mode 100644 index 000000000..099acf2c5 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_219.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/219 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '219' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_3.yaml b/carps/configs/problem/HPOB/all/cfg_7609_3.yaml new file mode 100644 index 000000000..01f1f4672 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_31.yaml b/carps/configs/problem/HPOB/all/cfg_7609_31.yaml new file mode 100644 index 000000000..715eb86fa --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_34536.yaml b/carps/configs/problem/HPOB/all/cfg_7609_34536.yaml new file mode 100644 index 000000000..7da57d04e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_34536.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/34536 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '34536' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_34537.yaml b/carps/configs/problem/HPOB/all/cfg_7609_34537.yaml new file mode 100644 index 000000000..1d9b7f926 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_34537.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/34537 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '34537' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_34539.yaml b/carps/configs/problem/HPOB/all/cfg_7609_34539.yaml new file mode 100644 index 000000000..59f4f1f55 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_34539.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/34539 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '34539' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_3485.yaml b/carps/configs/problem/HPOB/all/cfg_7609_3485.yaml new file mode 100644 index 000000000..66dfaa6fa --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_3485.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/3485 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '3485' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_3492.yaml b/carps/configs/problem/HPOB/all/cfg_7609_3492.yaml new file mode 100644 index 000000000..00a60c064 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_3492.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/3492 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '3492' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_3493.yaml b/carps/configs/problem/HPOB/all/cfg_7609_3493.yaml new file mode 100644 index 000000000..71f3509ec --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_3494.yaml b/carps/configs/problem/HPOB/all/cfg_7609_3494.yaml new file mode 100644 index 000000000..a98eb4fa1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_37.yaml b/carps/configs/problem/HPOB/all/cfg_7609_37.yaml new file mode 100644 index 000000000..8ea5c65ba --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_3889.yaml b/carps/configs/problem/HPOB/all/cfg_7609_3889.yaml new file mode 100644 index 000000000..11fdac9c8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_3889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/3889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '3889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_3891.yaml b/carps/configs/problem/HPOB/all/cfg_7609_3891.yaml new file mode 100644 index 000000000..75c2f9e79 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_3891.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/3891 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '3891' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_3896.yaml b/carps/configs/problem/HPOB/all/cfg_7609_3896.yaml new file mode 100644 index 000000000..ab140ae3a --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_3899.yaml b/carps/configs/problem/HPOB/all/cfg_7609_3899.yaml new file mode 100644 index 000000000..1f203b566 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_3899.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/3899 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '3899' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_3902.yaml b/carps/configs/problem/HPOB/all/cfg_7609_3902.yaml new file mode 100644 index 000000000..7a3396996 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_3903.yaml b/carps/configs/problem/HPOB/all/cfg_7609_3903.yaml new file mode 100644 index 000000000..81094e93e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_3903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/3903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '3903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_3913.yaml b/carps/configs/problem/HPOB/all/cfg_7609_3913.yaml new file mode 100644 index 000000000..9cacc3632 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_3917.yaml b/carps/configs/problem/HPOB/all/cfg_7609_3917.yaml new file mode 100644 index 000000000..3f71e144e --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_3918.yaml b/carps/configs/problem/HPOB/all/cfg_7609_3918.yaml new file mode 100644 index 000000000..f8c371f07 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_3918.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/3918 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '3918' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_3954.yaml b/carps/configs/problem/HPOB/all/cfg_7609_3954.yaml new file mode 100644 index 000000000..8c9258ebd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_3954.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/3954 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '3954' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_43.yaml b/carps/configs/problem/HPOB/all/cfg_7609_43.yaml new file mode 100644 index 000000000..28a850fa7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_43.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/43 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '43' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_49.yaml b/carps/configs/problem/HPOB/all/cfg_7609_49.yaml new file mode 100644 index 000000000..02be5325b --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_6566.yaml b/carps/configs/problem/HPOB/all/cfg_7609_6566.yaml new file mode 100644 index 000000000..6692ed5aa --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_6566.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/6566 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '6566' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_7295.yaml b/carps/configs/problem/HPOB/all/cfg_7609_7295.yaml new file mode 100644 index 000000000..7550e8cd0 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_7295.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/7295 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '7295' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_9889.yaml b/carps/configs/problem/HPOB/all/cfg_7609_9889.yaml new file mode 100644 index 000000000..792aa7070 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_9910.yaml b/carps/configs/problem/HPOB/all/cfg_7609_9910.yaml new file mode 100644 index 000000000..740311aa8 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_9910.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/9910 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '9910' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_9911.yaml b/carps/configs/problem/HPOB/all/cfg_7609_9911.yaml new file mode 100644 index 000000000..e3632c982 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_9911.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/9911 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '9911' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_9914.yaml b/carps/configs/problem/HPOB/all/cfg_7609_9914.yaml new file mode 100644 index 000000000..6a9e98918 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_9946.yaml b/carps/configs/problem/HPOB/all/cfg_7609_9946.yaml new file mode 100644 index 000000000..05cb74ecd --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_9946.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/9946 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '9946' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_9952.yaml b/carps/configs/problem/HPOB/all/cfg_7609_9952.yaml new file mode 100644 index 000000000..efcafeaf4 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_9957.yaml b/carps/configs/problem/HPOB/all/cfg_7609_9957.yaml new file mode 100644 index 000000000..0885ab47f --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_9967.yaml b/carps/configs/problem/HPOB/all/cfg_7609_9967.yaml new file mode 100644 index 000000000..2c7c8ae06 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_9967.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/9967 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '9967' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_9970.yaml b/carps/configs/problem/HPOB/all/cfg_7609_9970.yaml new file mode 100644 index 000000000..e3e2a74db --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_9970.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/9970 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '9970' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_9971.yaml b/carps/configs/problem/HPOB/all/cfg_7609_9971.yaml new file mode 100644 index 000000000..87518bcf6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_9976.yaml b/carps/configs/problem/HPOB/all/cfg_7609_9976.yaml new file mode 100644 index 000000000..c2bf20681 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_9976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/9976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '9976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_9977.yaml b/carps/configs/problem/HPOB/all/cfg_7609_9977.yaml new file mode 100644 index 000000000..d57c921e7 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_9977.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/9977 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '9977' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_9978.yaml b/carps/configs/problem/HPOB/all/cfg_7609_9978.yaml new file mode 100644 index 000000000..95b05cbe9 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_9978.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/9978 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '9978' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_9980.yaml b/carps/configs/problem/HPOB/all/cfg_7609_9980.yaml new file mode 100644 index 000000000..205c841b1 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_9980.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/9980 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '9980' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7609_9983.yaml b/carps/configs/problem/HPOB/all/cfg_7609_9983.yaml new file mode 100644 index 000000000..79c4591b6 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7609_9983.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7609/9983 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7609' + dataset_id: '9983' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_7680_146064.yaml b/carps/configs/problem/HPOB/all/cfg_7680_146064.yaml new file mode 100644 index 000000000..67310d306 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_7680_146064.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/7680/146064 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7680' + dataset_id: '146064' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_829_7293.yaml b/carps/configs/problem/HPOB/all/cfg_829_7293.yaml new file mode 100644 index 000000000..3e525c8ee --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_829_7293.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/829/7293 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '829' + dataset_id: '7293' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_833_7293.yaml b/carps/configs/problem/HPOB/all/cfg_833_7293.yaml new file mode 100644 index 000000000..9c7b28a9d --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_833_7293.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/833/7293 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '833' + dataset_id: '7293' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 5 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/all/cfg_935_7293.yaml b/carps/configs/problem/HPOB/all/cfg_935_7293.yaml new file mode 100644 index 000000000..e9a278368 --- /dev/null +++ b/carps/configs/problem/HPOB/all/cfg_935_7293.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/all/935/7293 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '935' + dataset_id: '7293' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_5489_3011.yaml b/carps/configs/problem/HPOB/subset/cfg_5489_3011.yaml new file mode 100644 index 000000000..096619c2b --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_5489_3011.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/5489/3011 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5489' + dataset_id: '3011' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 14 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 14 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_5489_34.yaml b/carps/configs/problem/HPOB/subset/cfg_5489_34.yaml new file mode 100644 index 000000000..87281083b --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_5489_34.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/5489/34 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5489' + dataset_id: '34' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 14 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 14 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_5489_3849.yaml b/carps/configs/problem/HPOB/subset/cfg_5489_3849.yaml new file mode 100644 index 000000000..62a321cf7 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_5489_3849.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/5489/3849 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5489' + dataset_id: '3849' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 14 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 14 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_5489_3866.yaml b/carps/configs/problem/HPOB/subset/cfg_5489_3866.yaml new file mode 100644 index 000000000..76f2b4600 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_5489_3866.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/5489/3866 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5489' + dataset_id: '3866' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 14 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 14 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_5489_50.yaml b/carps/configs/problem/HPOB/subset/cfg_5489_50.yaml new file mode 100644 index 000000000..73085449d --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_5489_50.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/5489/50 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5489' + dataset_id: '50' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 14 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 14 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_5886_14.yaml b/carps/configs/problem/HPOB/subset/cfg_5886_14.yaml new file mode 100644 index 000000000..d40bdd638 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_5886_14.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/5886/14 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '14' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_5886_2073.yaml b/carps/configs/problem/HPOB/subset/cfg_5886_2073.yaml new file mode 100644 index 000000000..e5d238d97 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_5886_2073.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/5886/2073 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '2073' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_5886_2076.yaml b/carps/configs/problem/HPOB/subset/cfg_5886_2076.yaml new file mode 100644 index 000000000..7372ba73a --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_5886_2076.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/5886/2076 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '2076' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_5886_45.yaml b/carps/configs/problem/HPOB/subset/cfg_5886_45.yaml new file mode 100644 index 000000000..a85490b16 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_5886_45.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/5886/45 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '45' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_5886_53.yaml b/carps/configs/problem/HPOB/subset/cfg_5886_53.yaml new file mode 100644 index 000000000..2afa87aa7 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_5886_53.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/5886/53 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5886' + dataset_id: '53' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 9 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 9 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_5968_10101.yaml b/carps/configs/problem/HPOB/subset/cfg_5968_10101.yaml new file mode 100644 index 000000000..f050f493b --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_5968_10101.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/5968/10101 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5968' + dataset_id: '10101' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_5968_3896.yaml b/carps/configs/problem/HPOB/subset/cfg_5968_3896.yaml new file mode 100644 index 000000000..150f9c787 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_5968_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/5968/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5968' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_5968_9889.yaml b/carps/configs/problem/HPOB/subset/cfg_5968_9889.yaml new file mode 100644 index 000000000..cb43ed85b --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_5968_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/5968/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5968' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_5968_9914.yaml b/carps/configs/problem/HPOB/subset/cfg_5968_9914.yaml new file mode 100644 index 000000000..72ff6f8f3 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_5968_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/5968/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5968' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_5968_9952.yaml b/carps/configs/problem/HPOB/subset/cfg_5968_9952.yaml new file mode 100644 index 000000000..dca28ea1d --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_5968_9952.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/5968/9952 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5968' + dataset_id: '9952' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_6073_11.yaml b/carps/configs/problem/HPOB/subset/cfg_6073_11.yaml new file mode 100644 index 000000000..01df549d4 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_6073_11.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/6073/11 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '11' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_6073_2076.yaml b/carps/configs/problem/HPOB/subset/cfg_6073_2076.yaml new file mode 100644 index 000000000..eb1248e5c --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_6073_2076.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/6073/2076 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '2076' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_6073_26.yaml b/carps/configs/problem/HPOB/subset/cfg_6073_26.yaml new file mode 100644 index 000000000..b7f5fc898 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_6073_26.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/6073/26 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '26' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_6073_53.yaml b/carps/configs/problem/HPOB/subset/cfg_6073_53.yaml new file mode 100644 index 000000000..10d68f842 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_6073_53.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/6073/53 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '53' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_6073_6.yaml b/carps/configs/problem/HPOB/subset/cfg_6073_6.yaml new file mode 100644 index 000000000..d51b3df17 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_6073_6.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/6073/6 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6073' + dataset_id: '6' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_6447_11.yaml b/carps/configs/problem/HPOB/subset/cfg_6447_11.yaml new file mode 100644 index 000000000..f13fc0fa2 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_6447_11.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/6447/11 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '11' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_6447_22.yaml b/carps/configs/problem/HPOB/subset/cfg_6447_22.yaml new file mode 100644 index 000000000..75c598b9f --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_6447_22.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/6447/22 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '22' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_6447_31.yaml b/carps/configs/problem/HPOB/subset/cfg_6447_31.yaml new file mode 100644 index 000000000..13b36f16e --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_6447_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/6447/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_6447_37.yaml b/carps/configs/problem/HPOB/subset/cfg_6447_37.yaml new file mode 100644 index 000000000..82db7594d --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_6447_37.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/6447/37 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '37' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_6447_41.yaml b/carps/configs/problem/HPOB/subset/cfg_6447_41.yaml new file mode 100644 index 000000000..481e15a05 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_6447_41.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/6447/41 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6447' + dataset_id: '41' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_678_1898.yaml b/carps/configs/problem/HPOB/subset/cfg_678_1898.yaml new file mode 100644 index 000000000..129a90214 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_678_1898.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/678/1898 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '678' + dataset_id: '1898' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_678_1902.yaml b/carps/configs/problem/HPOB/subset/cfg_678_1902.yaml new file mode 100644 index 000000000..8703ce8f1 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_678_1902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/678/1902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '678' + dataset_id: '1902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_678_1917.yaml b/carps/configs/problem/HPOB/subset/cfg_678_1917.yaml new file mode 100644 index 000000000..e9beb7fd9 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_678_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/678/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '678' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_678_1919.yaml b/carps/configs/problem/HPOB/subset/cfg_678_1919.yaml new file mode 100644 index 000000000..e51b7fbd8 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_678_1919.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/678/1919 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '678' + dataset_id: '1919' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_678_1939.yaml b/carps/configs/problem/HPOB/subset/cfg_678_1939.yaml new file mode 100644 index 000000000..63f77389e --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_678_1939.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/678/1939 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '678' + dataset_id: '1939' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_679_1898.yaml b/carps/configs/problem/HPOB/subset/cfg_679_1898.yaml new file mode 100644 index 000000000..e84fb4507 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_679_1898.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/679/1898 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '679' + dataset_id: '1898' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_679_1902.yaml b/carps/configs/problem/HPOB/subset/cfg_679_1902.yaml new file mode 100644 index 000000000..e238fc31a --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_679_1902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/679/1902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '679' + dataset_id: '1902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_679_1917.yaml b/carps/configs/problem/HPOB/subset/cfg_679_1917.yaml new file mode 100644 index 000000000..b985853c1 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_679_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/679/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '679' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_679_1919.yaml b/carps/configs/problem/HPOB/subset/cfg_679_1919.yaml new file mode 100644 index 000000000..96552d1d8 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_679_1919.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/679/1919 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '679' + dataset_id: '1919' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_679_1939.yaml b/carps/configs/problem/HPOB/subset/cfg_679_1939.yaml new file mode 100644 index 000000000..9cfab3b90 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_679_1939.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/679/1939 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '679' + dataset_id: '1939' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_682_1898.yaml b/carps/configs/problem/HPOB/subset/cfg_682_1898.yaml new file mode 100644 index 000000000..92991f974 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_682_1898.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/682/1898 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '682' + dataset_id: '1898' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_682_1902.yaml b/carps/configs/problem/HPOB/subset/cfg_682_1902.yaml new file mode 100644 index 000000000..06bd909bb --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_682_1902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/682/1902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '682' + dataset_id: '1902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_682_1917.yaml b/carps/configs/problem/HPOB/subset/cfg_682_1917.yaml new file mode 100644 index 000000000..3bfbbb911 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_682_1917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/682/1917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '682' + dataset_id: '1917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_682_1919.yaml b/carps/configs/problem/HPOB/subset/cfg_682_1919.yaml new file mode 100644 index 000000000..39e5918b7 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_682_1919.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/682/1919 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '682' + dataset_id: '1919' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_682_1939.yaml b/carps/configs/problem/HPOB/subset/cfg_682_1939.yaml new file mode 100644 index 000000000..a080c9f43 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_682_1939.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/682/1939 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '682' + dataset_id: '1939' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_7188_125920.yaml b/carps/configs/problem/HPOB/subset/cfg_7188_125920.yaml new file mode 100644 index 000000000..a5cbaa056 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_7188_125920.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/7188/125920 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '125920' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_7188_3.yaml b/carps/configs/problem/HPOB/subset/cfg_7188_3.yaml new file mode 100644 index 000000000..bfb1b37c1 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_7188_3.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/7188/3 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '3' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_7188_3493.yaml b/carps/configs/problem/HPOB/subset/cfg_7188_3493.yaml new file mode 100644 index 000000000..c591b8a52 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_7188_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/7188/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_7188_3899.yaml b/carps/configs/problem/HPOB/subset/cfg_7188_3899.yaml new file mode 100644 index 000000000..15fae4fec --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_7188_3899.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/7188/3899 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '3899' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_7188_3903.yaml b/carps/configs/problem/HPOB/subset/cfg_7188_3903.yaml new file mode 100644 index 000000000..f0b0431e9 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_7188_3903.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/7188/3903 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7188' + dataset_id: '3903' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 1 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_7189_3902.yaml b/carps/configs/problem/HPOB/subset/cfg_7189_3902.yaml new file mode 100644 index 000000000..a71bdd411 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_7189_3902.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/7189/3902 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '3902' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_7189_49.yaml b/carps/configs/problem/HPOB/subset/cfg_7189_49.yaml new file mode 100644 index 000000000..124763c70 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_7189_49.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/7189/49 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '49' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_7189_9914.yaml b/carps/configs/problem/HPOB/subset/cfg_7189_9914.yaml new file mode 100644 index 000000000..88d42d58e --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_7189_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/7189/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_7189_9957.yaml b/carps/configs/problem/HPOB/subset/cfg_7189_9957.yaml new file mode 100644 index 000000000..d9977c611 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_7189_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/7189/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOB/subset/cfg_7189_9976.yaml b/carps/configs/problem/HPOB/subset/cfg_7189_9976.yaml new file mode 100644 index 000000000..bbff16662 --- /dev/null +++ b/carps/configs/problem/HPOB/subset/cfg_7189_9976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: hpob/subset/7189/9976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '7189' + dataset_id: '9976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_10101.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_10101.yaml new file mode 100644 index 000000000..60c6ce002 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_10101.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/10101 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 10101 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_12.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_12.yaml new file mode 100644 index 000000000..24e3003c0 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_12.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/12 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 12 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146212.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146212.yaml new file mode 100644 index 000000000..b9cdeab1f --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146212.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/146212 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146212 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146606.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146606.yaml new file mode 100644 index 000000000..ffb47efce --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146606.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/146606 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146606 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146818.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146818.yaml new file mode 100644 index 000000000..024ea9313 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146818.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/146818 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146818 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146821.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146821.yaml new file mode 100644 index 000000000..48e322143 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146821.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/146821 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146821 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146822.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146822.yaml new file mode 100644 index 000000000..3426f74f5 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_146822.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/146822 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146822 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_14965.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_14965.yaml new file mode 100644 index 000000000..766ea56cd --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_14965.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/14965 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 14965 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_167119.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_167119.yaml new file mode 100644 index 000000000..d671f3cd7 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_167119.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/167119 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 167119 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_167120.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_167120.yaml new file mode 100644 index 000000000..6096d17e1 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_167120.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/167120 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 167120 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_168911.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_168911.yaml new file mode 100644 index 000000000..ba9ab8447 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_168911.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/168911 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 168911 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_168912.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_168912.yaml new file mode 100644 index 000000000..97c08e285 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_168912.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/168912 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 168912 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_3.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_3.yaml new file mode 100644 index 000000000..af2fb1fee --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_3.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/3 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 3 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_31.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_31.yaml new file mode 100644 index 000000000..9f7042974 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_31.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/31 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 31 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_3917.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_3917.yaml new file mode 100644 index 000000000..3b46c18bd --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_3917.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/3917 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 3917 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_53.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_53.yaml new file mode 100644 index 000000000..aa86c12d2 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_53.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/53 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 53 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_7592.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_7592.yaml new file mode 100644 index 000000000..5e2a3586c --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_7592.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/7592 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 7592 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_9952.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_9952.yaml new file mode 100644 index 000000000..18badbc93 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_9952.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/9952 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 9952 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_9977.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_9977.yaml new file mode 100644 index 000000000..b0d2e67d7 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_9977.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/9977 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 9977 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_9981.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_9981.yaml new file mode 100644 index 000000000..d1a626a0d --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_lr_9981.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/lr/9981 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 9981 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_10101.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_10101.yaml new file mode 100644 index 000000000..ce650ce1f --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_10101.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/nn/10101 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 10101 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 5 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_146818.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_146818.yaml new file mode 100644 index 000000000..b4a08dc06 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_146818.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/nn/146818 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 146818 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 5 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_146821.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_146821.yaml new file mode 100644 index 000000000..f915cf26d --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_146821.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/nn/146821 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 146821 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 5 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_146822.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_146822.yaml new file mode 100644 index 000000000..c5264028a --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_146822.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/nn/146822 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 146822 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 5 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_31.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_31.yaml new file mode 100644 index 000000000..f3363cdae --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_31.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/nn/31 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 31 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 5 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_3917.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_3917.yaml new file mode 100644 index 000000000..96cd4d22e --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_3917.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/nn/3917 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 3917 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 5 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_53.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_53.yaml new file mode 100644 index 000000000..b978c3f17 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_53.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/nn/53 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 53 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 5 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_9952.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_9952.yaml new file mode 100644 index 000000000..d18bb314e --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_nn_9952.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/nn/9952 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 9952 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 5 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_10101.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_10101.yaml new file mode 100644 index 000000000..5097f53ad --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_10101.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/10101 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 10101 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_12.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_12.yaml new file mode 100644 index 000000000..5fc9a1327 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_12.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/12 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 12 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146212.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146212.yaml new file mode 100644 index 000000000..e1477f8e6 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146212.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/146212 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146212 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146606.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146606.yaml new file mode 100644 index 000000000..f486c0ead --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146606.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/146606 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146606 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146818.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146818.yaml new file mode 100644 index 000000000..3f38cb199 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146818.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/146818 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146818 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146821.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146821.yaml new file mode 100644 index 000000000..630016583 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146821.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/146821 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146821 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146822.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146822.yaml new file mode 100644 index 000000000..bf323ea4b --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_146822.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/146822 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146822 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_14965.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_14965.yaml new file mode 100644 index 000000000..c31b546c2 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_14965.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/14965 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 14965 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_167119.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_167119.yaml new file mode 100644 index 000000000..515ceb67f --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_167119.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/167119 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 167119 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_167120.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_167120.yaml new file mode 100644 index 000000000..9b13b1388 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_167120.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/167120 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 167120 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_168911.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_168911.yaml new file mode 100644 index 000000000..4c6f8ae43 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_168911.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/168911 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 168911 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_168912.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_168912.yaml new file mode 100644 index 000000000..580719924 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_168912.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/168912 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 168912 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_3.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_3.yaml new file mode 100644 index 000000000..12463dc4c --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_3.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/3 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 3 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_31.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_31.yaml new file mode 100644 index 000000000..cda905fa4 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_31.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/31 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 31 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_3917.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_3917.yaml new file mode 100644 index 000000000..cedee5649 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_3917.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/3917 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 3917 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_53.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_53.yaml new file mode 100644 index 000000000..300898bd3 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_53.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/53 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 53 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_7592.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_7592.yaml new file mode 100644 index 000000000..c52dfa71f --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_7592.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/7592 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 7592 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_9952.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_9952.yaml new file mode 100644 index 000000000..0e68dd5ca --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_9952.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/9952 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 9952 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_9977.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_9977.yaml new file mode 100644 index 000000000..2b528f923 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_9977.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/9977 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 9977 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_9981.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_9981.yaml new file mode 100644 index 000000000..34c32d9c2 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_rf_9981.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/rf/9981 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 9981 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_10101.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_10101.yaml new file mode 100644 index 000000000..97a5d138c --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_10101.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/10101 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 10101 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_12.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_12.yaml new file mode 100644 index 000000000..5da42cfec --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_12.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/12 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 12 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146212.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146212.yaml new file mode 100644 index 000000000..3886d0434 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146212.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/146212 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 146212 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146606.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146606.yaml new file mode 100644 index 000000000..d83183ae8 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146606.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/146606 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 146606 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146818.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146818.yaml new file mode 100644 index 000000000..319ee9c71 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146818.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/146818 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 146818 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146821.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146821.yaml new file mode 100644 index 000000000..39301d8cc --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146821.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/146821 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 146821 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146822.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146822.yaml new file mode 100644 index 000000000..3e0ebd48e --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_146822.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/146822 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 146822 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_14965.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_14965.yaml new file mode 100644 index 000000000..25bbd8a97 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_14965.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/14965 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 14965 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_167119.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_167119.yaml new file mode 100644 index 000000000..b1fcb2307 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_167119.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/167119 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 167119 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_167120.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_167120.yaml new file mode 100644 index 000000000..1e1fe4e66 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_167120.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/167120 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 167120 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_168911.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_168911.yaml new file mode 100644 index 000000000..b9ea4531f --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_168911.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/168911 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 168911 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_168912.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_168912.yaml new file mode 100644 index 000000000..50567046a --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_168912.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/168912 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 168912 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_3.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_3.yaml new file mode 100644 index 000000000..7a994bd9f --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_3.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/3 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 3 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_31.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_31.yaml new file mode 100644 index 000000000..b0373942c --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_31.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/31 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 31 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_3917.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_3917.yaml new file mode 100644 index 000000000..d2f72acda --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_3917.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/3917 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 3917 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_53.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_53.yaml new file mode 100644 index 000000000..6ddf4c3a1 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_53.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/53 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 53 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_7592.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_7592.yaml new file mode 100644 index 000000000..0c72f7af6 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_7592.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/7592 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 7592 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_9952.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_9952.yaml new file mode 100644 index 000000000..0a2ab53f1 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_9952.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/9952 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 9952 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_9977.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_9977.yaml new file mode 100644 index 000000000..f2e868da5 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_9977.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/9977 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 9977 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_9981.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_9981.yaml new file mode 100644 index 000000000..da2d743b4 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_svm_9981.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/svm/9981 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 9981 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_10101.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_10101.yaml new file mode 100644 index 000000000..ebcac0006 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_10101.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/10101 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 10101 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_12.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_12.yaml new file mode 100644 index 000000000..18066ab19 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_12.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/12 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 12 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146212.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146212.yaml new file mode 100644 index 000000000..889bca604 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146212.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/146212 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146212 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146606.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146606.yaml new file mode 100644 index 000000000..80025c822 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146606.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/146606 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146606 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146818.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146818.yaml new file mode 100644 index 000000000..a3d62efd4 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146818.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/146818 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146818 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146821.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146821.yaml new file mode 100644 index 000000000..ca6217201 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146821.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/146821 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146821 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146822.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146822.yaml new file mode 100644 index 000000000..87771d657 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_146822.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/146822 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146822 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_14965.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_14965.yaml new file mode 100644 index 000000000..f92eae4ca --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_14965.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/14965 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 14965 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_167119.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_167119.yaml new file mode 100644 index 000000000..afdc7dd27 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_167119.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/167119 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 167119 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_167120.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_167120.yaml new file mode 100644 index 000000000..18e0adde6 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_167120.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/167120 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 167120 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_168911.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_168911.yaml new file mode 100644 index 000000000..948e6086f --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_168911.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/168911 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 168911 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_168912.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_168912.yaml new file mode 100644 index 000000000..6fac97b5d --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_168912.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/168912 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 168912 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_3.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_3.yaml new file mode 100644 index 000000000..280b2f40c --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_3.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/3 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 3 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_31.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_31.yaml new file mode 100644 index 000000000..165741fb3 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_31.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/31 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 31 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_3917.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_3917.yaml new file mode 100644 index 000000000..37831b887 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_3917.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/3917 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 3917 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_53.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_53.yaml new file mode 100644 index 000000000..5682a73e1 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_53.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/53 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 53 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_7592.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_7592.yaml new file mode 100644 index 000000000..9b1661081 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_7592.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/7592 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 7592 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_9952.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_9952.yaml new file mode 100644 index 000000000..cbdd2b613 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_9952.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/9952 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 9952 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_9977.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_9977.yaml new file mode 100644 index 000000000..d82c141cb --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_9977.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/9977 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 9977 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_9981.yaml b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_9981.yaml new file mode 100644 index 000000000..256c2c9d0 --- /dev/null +++ b/carps/configs/problem/HPOBench/MO/tab/cfg_ml_xgboost_9981.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/MO/tab/ml/xgboost/9981 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 9981 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Adult.yaml b/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Adult.yaml new file mode 100644 index 000000000..16aca2671 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Adult.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/surr/ParamNet/Adult +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + problem: + _target_: hpobench.container.benchmarks.surrogates.paramnet_benchmark.ParamNetAdultOnStepsBenchmark + rng: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 7 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Higgs.yaml b/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Higgs.yaml new file mode 100644 index 000000000..5e9f109f8 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Higgs.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/surr/ParamNet/Higgs +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + problem: + _target_: hpobench.container.benchmarks.surrogates.paramnet_benchmark.ParamNetHiggsOnStepsBenchmark + rng: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 7 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Letter.yaml b/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Letter.yaml new file mode 100644 index 000000000..96fd3f732 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Letter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/surr/ParamNet/Letter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + problem: + _target_: hpobench.container.benchmarks.surrogates.paramnet_benchmark.ParamNetLetterOnStepsBenchmark + rng: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 7 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Mnist.yaml b/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Mnist.yaml new file mode 100644 index 000000000..42b957593 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Mnist.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/surr/ParamNet/Mnist +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + problem: + _target_: hpobench.container.benchmarks.surrogates.paramnet_benchmark.ParamNetMnistOnStepsBenchmark + rng: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 7 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Optdigits.yaml b/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Optdigits.yaml new file mode 100644 index 000000000..3f26a2e08 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Optdigits.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/surr/ParamNet/Optdigits +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + problem: + _target_: hpobench.container.benchmarks.surrogates.paramnet_benchmark.ParamNetOptdigitsOnStepsBenchmark + rng: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 7 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Poker.yaml b/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Poker.yaml new file mode 100644 index 000000000..20725c7cb --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_ParamNet_Poker.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/surr/ParamNet/Poker +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + problem: + _target_: hpobench.container.benchmarks.surrogates.paramnet_benchmark.ParamNetPokerOnStepsBenchmark + rng: 1 + seed: ${seed} +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 7 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_SVM_default.yaml b/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_SVM_default.yaml new file mode 100644 index 000000000..56b49794e --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/surr/cfg_surr_SVM_default.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/surr/SVM/default +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + problem: + _target_: hpobench.container.benchmarks.surrogates.svm_benchmark.SurrogateSVMBenchmark + rng: 1 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_10101.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_10101.yaml new file mode 100644 index 000000000..13b23f054 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_10101.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/10101 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 10101 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_12.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_12.yaml new file mode 100644 index 000000000..b64933e5c --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_12.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/12 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 12 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146212.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146212.yaml new file mode 100644 index 000000000..69aa34bb1 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146212.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/146212 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146212 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146606.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146606.yaml new file mode 100644 index 000000000..eb47ac056 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146606.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/146606 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146606 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146818.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146818.yaml new file mode 100644 index 000000000..6f8bebea3 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146818.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/146818 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146818 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146821.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146821.yaml new file mode 100644 index 000000000..fd23e892b --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146821.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/146821 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146821 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146822.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146822.yaml new file mode 100644 index 000000000..54b3233f9 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_146822.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/146822 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146822 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_14965.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_14965.yaml new file mode 100644 index 000000000..3a257ff7d --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_14965.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/14965 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 14965 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_167119.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_167119.yaml new file mode 100644 index 000000000..d196370f7 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_167119.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/167119 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 167119 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_167120.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_167120.yaml new file mode 100644 index 000000000..3a8648fac --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_167120.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/167120 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 167120 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_168911.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_168911.yaml new file mode 100644 index 000000000..4d3e60ff9 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_168911.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/168911 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 168911 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_168912.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_168912.yaml new file mode 100644 index 000000000..7b00ebaa5 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_168912.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/168912 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 168912 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_3.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_3.yaml new file mode 100644 index 000000000..54c05d708 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_3.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/3 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 3 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_31.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_31.yaml new file mode 100644 index 000000000..03a25a834 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_31.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/31 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 31 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_3917.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_3917.yaml new file mode 100644 index 000000000..cfae77182 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_3917.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/3917 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 3917 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_53.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_53.yaml new file mode 100644 index 000000000..79402f7f9 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_53.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/53 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 53 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_7592.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_7592.yaml new file mode 100644 index 000000000..c3f3f8930 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_7592.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/7592 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 7592 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_9952.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_9952.yaml new file mode 100644 index 000000000..a14d5ba6a --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_9952.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/9952 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 9952 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_9977.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_9977.yaml new file mode 100644 index 000000000..403cc672f --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_9977.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/9977 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 9977 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_9981.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_9981.yaml new file mode 100644 index 000000000..0051eeba5 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_lr_9981.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/lr/9981 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 9981 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_10101.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_10101.yaml new file mode 100644 index 000000000..3a74e64e1 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_10101.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/nn/10101 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 10101 + budget_type: null + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 5 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_146818.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_146818.yaml new file mode 100644 index 000000000..067ec7473 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_146818.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/nn/146818 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 146818 + budget_type: null + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 5 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_146821.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_146821.yaml new file mode 100644 index 000000000..0a1de10d5 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_146821.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/nn/146821 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 146821 + budget_type: null + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 5 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_146822.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_146822.yaml new file mode 100644 index 000000000..9a5985921 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_146822.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/nn/146822 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 146822 + budget_type: null + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 5 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_31.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_31.yaml new file mode 100644 index 000000000..c34522ad6 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_31.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/nn/31 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 31 + budget_type: null + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 5 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_3917.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_3917.yaml new file mode 100644 index 000000000..e111eef50 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_3917.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/nn/3917 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 3917 + budget_type: null + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 5 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_53.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_53.yaml new file mode 100644 index 000000000..88fc2760f --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_53.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/nn/53 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 53 + budget_type: null + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 5 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_9952.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_9952.yaml new file mode 100644 index 000000000..5c65c35bc --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_nn_9952.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/nn/9952 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 9952 + budget_type: null + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 5 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_10101.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_10101.yaml new file mode 100644 index 000000000..a37e2bbce --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_10101.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/10101 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 10101 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_12.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_12.yaml new file mode 100644 index 000000000..b8e1dff24 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_12.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/12 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 12 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146212.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146212.yaml new file mode 100644 index 000000000..352e24538 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146212.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/146212 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146212 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146606.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146606.yaml new file mode 100644 index 000000000..1c003e560 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146606.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/146606 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146606 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146818.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146818.yaml new file mode 100644 index 000000000..0d8aa287d --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146818.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/146818 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146818 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146821.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146821.yaml new file mode 100644 index 000000000..7c31bfa51 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146821.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/146821 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146821 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146822.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146822.yaml new file mode 100644 index 000000000..e74a61d5d --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_146822.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/146822 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146822 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_14965.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_14965.yaml new file mode 100644 index 000000000..05d112129 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_14965.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/14965 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 14965 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_167119.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_167119.yaml new file mode 100644 index 000000000..bd5cb051b --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_167119.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/167119 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 167119 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_167120.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_167120.yaml new file mode 100644 index 000000000..e1d102087 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_167120.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/167120 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 167120 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_168911.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_168911.yaml new file mode 100644 index 000000000..438113c7d --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_168911.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/168911 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 168911 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_168912.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_168912.yaml new file mode 100644 index 000000000..a93c72fdf --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_168912.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/168912 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 168912 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_3.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_3.yaml new file mode 100644 index 000000000..7edc46796 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_3.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/3 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 3 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_31.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_31.yaml new file mode 100644 index 000000000..fc8d33704 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_31.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/31 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 31 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_3917.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_3917.yaml new file mode 100644 index 000000000..716794bc7 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_3917.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/3917 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 3917 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_53.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_53.yaml new file mode 100644 index 000000000..644a2b315 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_53.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/53 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 53 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_7592.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_7592.yaml new file mode 100644 index 000000000..24ef5ee55 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_7592.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/7592 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 7592 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_9952.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_9952.yaml new file mode 100644 index 000000000..af0fe6ec8 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_9952.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/9952 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 9952 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_9977.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_9977.yaml new file mode 100644 index 000000000..6b76b89eb --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_9977.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/9977 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 9977 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_9981.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_9981.yaml new file mode 100644 index 000000000..af2ec011b --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_rf_9981.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/rf/9981 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 9981 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_10101.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_10101.yaml new file mode 100644 index 000000000..b4798d160 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_10101.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/10101 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 10101 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_12.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_12.yaml new file mode 100644 index 000000000..78855ced3 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_12.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/12 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 12 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146212.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146212.yaml new file mode 100644 index 000000000..456068ec1 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146212.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/146212 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 146212 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146606.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146606.yaml new file mode 100644 index 000000000..0d9649cfc --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146606.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/146606 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 146606 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146818.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146818.yaml new file mode 100644 index 000000000..2e2f806ba --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146818.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/146818 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 146818 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146821.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146821.yaml new file mode 100644 index 000000000..659aae115 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146821.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/146821 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 146821 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146822.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146822.yaml new file mode 100644 index 000000000..98a83a5f9 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_146822.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/146822 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 146822 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_14965.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_14965.yaml new file mode 100644 index 000000000..fc5f83287 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_14965.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/14965 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 14965 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_167119.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_167119.yaml new file mode 100644 index 000000000..a2d08f581 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_167119.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/167119 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 167119 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_167120.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_167120.yaml new file mode 100644 index 000000000..775d20912 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_167120.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/167120 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 167120 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_168911.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_168911.yaml new file mode 100644 index 000000000..cfe87e3ff --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_168911.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/168911 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 168911 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_168912.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_168912.yaml new file mode 100644 index 000000000..97b22a35a --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_168912.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/168912 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 168912 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_3.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_3.yaml new file mode 100644 index 000000000..a978bd2ae --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_3.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/3 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 3 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_31.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_31.yaml new file mode 100644 index 000000000..83c2fb791 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_31.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/31 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 31 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_3917.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_3917.yaml new file mode 100644 index 000000000..301c4515e --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_3917.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/3917 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 3917 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_53.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_53.yaml new file mode 100644 index 000000000..0c0dba8b0 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_53.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/53 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 53 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_7592.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_7592.yaml new file mode 100644 index 000000000..972165ad7 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_7592.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/7592 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 7592 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_9952.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_9952.yaml new file mode 100644 index 000000000..8c409a365 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_9952.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/9952 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 9952 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_9977.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_9977.yaml new file mode 100644 index 000000000..25424a0e3 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_9977.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/9977 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 9977 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_9981.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_9981.yaml new file mode 100644 index 000000000..5b29bdd85 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_svm_9981.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/svm/9981 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 9981 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_10101.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_10101.yaml new file mode 100644 index 000000000..11ba2662e --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_10101.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/10101 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 10101 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_12.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_12.yaml new file mode 100644 index 000000000..6f4c651d4 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_12.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/12 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 12 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146212.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146212.yaml new file mode 100644 index 000000000..9f94a27ef --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146212.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/146212 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146212 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146606.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146606.yaml new file mode 100644 index 000000000..1ef264ab4 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146606.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/146606 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146606 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146818.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146818.yaml new file mode 100644 index 000000000..a858b510f --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146818.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/146818 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146818 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146821.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146821.yaml new file mode 100644 index 000000000..b77979614 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146821.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/146821 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146821 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146822.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146822.yaml new file mode 100644 index 000000000..b8eb2adbe --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_146822.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/146822 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146822 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_14965.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_14965.yaml new file mode 100644 index 000000000..58b27dab2 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_14965.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/14965 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 14965 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_167119.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_167119.yaml new file mode 100644 index 000000000..b530bada3 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_167119.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/167119 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 167119 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_167120.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_167120.yaml new file mode 100644 index 000000000..97535a67d --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_167120.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/167120 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 167120 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_168911.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_168911.yaml new file mode 100644 index 000000000..435381f21 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_168911.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/168911 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 168911 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_168912.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_168912.yaml new file mode 100644 index 000000000..9a1138764 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_168912.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/168912 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 168912 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_3.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_3.yaml new file mode 100644 index 000000000..df7d6948f --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_3.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/3 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 3 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_31.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_31.yaml new file mode 100644 index 000000000..6207be149 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_31.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/31 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 31 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_3917.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_3917.yaml new file mode 100644 index 000000000..c45297a20 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_3917.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/3917 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 3917 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_53.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_53.yaml new file mode 100644 index 000000000..2d3e573a5 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_53.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/53 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 53 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_7592.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_7592.yaml new file mode 100644 index 000000000..e387dee6d --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_7592.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/7592 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 7592 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_9952.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_9952.yaml new file mode 100644 index 000000000..46a1ea60a --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_9952.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/9952 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 9952 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_9977.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_9977.yaml new file mode 100644 index 000000000..8425775c0 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_9977.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/9977 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 9977 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_9981.yaml b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_9981.yaml new file mode 100644 index 000000000..67b12c015 --- /dev/null +++ b/carps/configs/problem/HPOBench/blackbox/tab/cfg_ml_xgboost_9981.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/bb/tab/ml/xgboost/9981 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 9981 + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_10101_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_10101_iter.yaml new file mode 100644 index 000000000..94c14f2f4 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_10101_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/10101/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 10101 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_10101_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_10101_subsample.yaml new file mode 100644 index 000000000..8fd76538b --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_10101_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/10101/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 10101 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_12_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_12_iter.yaml new file mode 100644 index 000000000..bc269fa7f --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_12_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/12/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 12 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_12_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_12_subsample.yaml new file mode 100644 index 000000000..496363c3e --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_12_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/12/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 12 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146212_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146212_iter.yaml new file mode 100644 index 000000000..52b0ecb37 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146212_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/146212/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146212 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146212_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146212_subsample.yaml new file mode 100644 index 000000000..7ecbd91f2 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146212_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/146212/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146212 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146606_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146606_iter.yaml new file mode 100644 index 000000000..29cf48712 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146606_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/146606/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146606 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146606_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146606_subsample.yaml new file mode 100644 index 000000000..d58eee727 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146606_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/146606/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146606 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146818_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146818_iter.yaml new file mode 100644 index 000000000..31f6634cd --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146818_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/146818/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146818 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146818_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146818_subsample.yaml new file mode 100644 index 000000000..2dffc0ce8 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146818_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/146818/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146818 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146821_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146821_iter.yaml new file mode 100644 index 000000000..2f838b5b1 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146821_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/146821/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146821 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146821_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146821_subsample.yaml new file mode 100644 index 000000000..20ce6f662 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146821_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/146821/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146821 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146822_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146822_iter.yaml new file mode 100644 index 000000000..5d6d4ce94 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146822_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/146822/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146822 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146822_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146822_subsample.yaml new file mode 100644 index 000000000..bc63a54ad --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_146822_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/146822/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146822 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_14965_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_14965_iter.yaml new file mode 100644 index 000000000..0c061bf26 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_14965_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/14965/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 14965 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_14965_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_14965_subsample.yaml new file mode 100644 index 000000000..78d0ac5ea --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_14965_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/14965/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 14965 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_167119_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_167119_iter.yaml new file mode 100644 index 000000000..14f918288 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_167119_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/167119/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 167119 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_167119_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_167119_subsample.yaml new file mode 100644 index 000000000..c67e82a57 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_167119_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/167119/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 167119 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_167120_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_167120_iter.yaml new file mode 100644 index 000000000..13c6f8423 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_167120_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/167120/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 167120 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_167120_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_167120_subsample.yaml new file mode 100644 index 000000000..e7dad1f22 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_167120_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/167120/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 167120 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_168911_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_168911_iter.yaml new file mode 100644 index 000000000..353a88ecf --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_168911_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/168911/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 168911 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_168911_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_168911_subsample.yaml new file mode 100644 index 000000000..b85d34531 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_168911_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/168911/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 168911 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_168912_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_168912_iter.yaml new file mode 100644 index 000000000..62832e51a --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_168912_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/168912/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 168912 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_168912_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_168912_subsample.yaml new file mode 100644 index 000000000..b3f45d7dd --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_168912_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/168912/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 168912 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_31_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_31_iter.yaml new file mode 100644 index 000000000..d8737d13b --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_31_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/31/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 31 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_31_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_31_subsample.yaml new file mode 100644 index 000000000..529337171 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_31_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/31/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 31 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_3917_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_3917_iter.yaml new file mode 100644 index 000000000..8d869fb71 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_3917_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/3917/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 3917 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_3917_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_3917_subsample.yaml new file mode 100644 index 000000000..025f64393 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_3917_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/3917/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 3917 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_3_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_3_iter.yaml new file mode 100644 index 000000000..845e7e244 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_3_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/3/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 3 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_3_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_3_subsample.yaml new file mode 100644 index 000000000..a85bf1177 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_3_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/3/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 3 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_53_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_53_iter.yaml new file mode 100644 index 000000000..9c00bca84 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_53_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/53/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 53 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_53_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_53_subsample.yaml new file mode 100644 index 000000000..e1102c0ec --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_53_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/53/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 53 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_7592_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_7592_iter.yaml new file mode 100644 index 000000000..e2ef9ffb6 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_7592_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/7592/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 7592 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_7592_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_7592_subsample.yaml new file mode 100644 index 000000000..9566867c1 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_7592_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/7592/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 7592 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9952_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9952_iter.yaml new file mode 100644 index 000000000..9f659d415 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9952_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/9952/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 9952 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9952_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9952_subsample.yaml new file mode 100644 index 000000000..afd505710 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9952_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/9952/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 9952 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9977_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9977_iter.yaml new file mode 100644 index 000000000..40ad38be5 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9977_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/9977/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 9977 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9977_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9977_subsample.yaml new file mode 100644 index 000000000..274ce4f6d --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9977_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/9977/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 9977 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9981_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9981_iter.yaml new file mode 100644 index 000000000..c6661f1a4 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9981_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/9981/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 9981 + budget_type: iter + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 10 + max_budget: 1000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9981_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9981_subsample.yaml new file mode 100644 index 000000000..8d4ee4a1e --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_lr_9981_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/lr/9981/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 9981 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_10101_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_10101_iter.yaml new file mode 100644 index 000000000..8138efdfe --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_10101_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/nn/10101/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 10101 + budget_type: iter + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 3 + max_budget: 243 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_10101_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_10101_subsample.yaml new file mode 100644 index 000000000..fb9c26f97 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_10101_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/nn/10101/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 10101 + budget_type: subsample + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146818_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146818_iter.yaml new file mode 100644 index 000000000..9388948ca --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146818_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/nn/146818/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 146818 + budget_type: iter + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 3 + max_budget: 243 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146818_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146818_subsample.yaml new file mode 100644 index 000000000..bf38a1ca4 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146818_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/nn/146818/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 146818 + budget_type: subsample + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146821_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146821_iter.yaml new file mode 100644 index 000000000..3d80c4f2f --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146821_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/nn/146821/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 146821 + budget_type: iter + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 3 + max_budget: 243 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146821_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146821_subsample.yaml new file mode 100644 index 000000000..be223cee8 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146821_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/nn/146821/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 146821 + budget_type: subsample + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146822_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146822_iter.yaml new file mode 100644 index 000000000..412127309 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146822_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/nn/146822/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 146822 + budget_type: iter + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 3 + max_budget: 243 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146822_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146822_subsample.yaml new file mode 100644 index 000000000..1a34ac78b --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_146822_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/nn/146822/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 146822 + budget_type: subsample + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_31_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_31_iter.yaml new file mode 100644 index 000000000..56c8bfbd6 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_31_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/nn/31/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 31 + budget_type: iter + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 3 + max_budget: 243 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_31_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_31_subsample.yaml new file mode 100644 index 000000000..df8d8dd9d --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_31_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/nn/31/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 31 + budget_type: subsample + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_3917_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_3917_iter.yaml new file mode 100644 index 000000000..c93214da8 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_3917_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/nn/3917/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 3917 + budget_type: iter + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 3 + max_budget: 243 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_3917_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_3917_subsample.yaml new file mode 100644 index 000000000..ddf371749 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_3917_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/nn/3917/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 3917 + budget_type: subsample + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_53_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_53_iter.yaml new file mode 100644 index 000000000..d37b23efd --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_53_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/nn/53/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 53 + budget_type: iter + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 3 + max_budget: 243 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_53_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_53_subsample.yaml new file mode 100644 index 000000000..fe22fc47d --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_53_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/nn/53/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 53 + budget_type: subsample + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_9952_iter.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_9952_iter.yaml new file mode 100644 index 000000000..3f1affc8b --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_9952_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/nn/9952/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 9952 + budget_type: iter + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 3 + max_budget: 243 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_9952_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_9952_subsample.yaml new file mode 100644 index 000000000..b0b34ba20 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_nn_9952_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/nn/9952/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 9952 + budget_type: subsample + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_10101_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_10101_n_estimators.yaml new file mode 100644 index 000000000..e4547e76a --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_10101_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/10101/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 10101 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_10101_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_10101_subsample.yaml new file mode 100644 index 000000000..7a8764010 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_10101_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/10101/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 10101 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_12_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_12_n_estimators.yaml new file mode 100644 index 000000000..e2a72843a --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_12_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/12/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 12 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_12_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_12_subsample.yaml new file mode 100644 index 000000000..a9edaa4d8 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_12_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/12/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 12 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146212_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146212_n_estimators.yaml new file mode 100644 index 000000000..42241a449 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146212_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/146212/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146212 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146212_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146212_subsample.yaml new file mode 100644 index 000000000..9d2dbb1ad --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146212_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/146212/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146212 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146606_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146606_n_estimators.yaml new file mode 100644 index 000000000..311454c75 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146606_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/146606/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146606 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146606_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146606_subsample.yaml new file mode 100644 index 000000000..1c080f582 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146606_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/146606/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146606 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146818_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146818_n_estimators.yaml new file mode 100644 index 000000000..5261b257e --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146818_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/146818/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146818 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146818_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146818_subsample.yaml new file mode 100644 index 000000000..673d1427c --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146818_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/146818/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146818 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146821_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146821_n_estimators.yaml new file mode 100644 index 000000000..061736423 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146821_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/146821/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146821 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146821_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146821_subsample.yaml new file mode 100644 index 000000000..7f75b4a77 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146821_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/146821/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146821 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146822_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146822_n_estimators.yaml new file mode 100644 index 000000000..0c48d4dd9 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146822_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/146822/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146822 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146822_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146822_subsample.yaml new file mode 100644 index 000000000..034a0ce52 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_146822_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/146822/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146822 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_14965_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_14965_n_estimators.yaml new file mode 100644 index 000000000..7febd1d7d --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_14965_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/14965/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 14965 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_14965_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_14965_subsample.yaml new file mode 100644 index 000000000..faa490aeb --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_14965_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/14965/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 14965 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_167119_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_167119_n_estimators.yaml new file mode 100644 index 000000000..bae60516d --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_167119_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/167119/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 167119 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_167119_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_167119_subsample.yaml new file mode 100644 index 000000000..4cf773855 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_167119_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/167119/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 167119 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_167120_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_167120_n_estimators.yaml new file mode 100644 index 000000000..46a22118f --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_167120_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/167120/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 167120 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_167120_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_167120_subsample.yaml new file mode 100644 index 000000000..42f8ab7c1 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_167120_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/167120/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 167120 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_168911_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_168911_n_estimators.yaml new file mode 100644 index 000000000..9bd459a55 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_168911_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/168911/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 168911 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_168911_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_168911_subsample.yaml new file mode 100644 index 000000000..57f2ddab7 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_168911_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/168911/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 168911 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_168912_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_168912_n_estimators.yaml new file mode 100644 index 000000000..95236c011 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_168912_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/168912/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 168912 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_168912_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_168912_subsample.yaml new file mode 100644 index 000000000..7f0ab5b51 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_168912_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/168912/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 168912 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_31_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_31_n_estimators.yaml new file mode 100644 index 000000000..67f5596b3 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_31_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/31/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 31 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_31_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_31_subsample.yaml new file mode 100644 index 000000000..8e88c9759 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_31_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/31/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 31 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_3917_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_3917_n_estimators.yaml new file mode 100644 index 000000000..ce39399b5 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_3917_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/3917/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 3917 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_3917_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_3917_subsample.yaml new file mode 100644 index 000000000..0bc05dcf6 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_3917_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/3917/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 3917 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_3_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_3_n_estimators.yaml new file mode 100644 index 000000000..6fb1a6093 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_3_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/3/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 3 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_3_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_3_subsample.yaml new file mode 100644 index 000000000..c8e07c921 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_3_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/3/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 3 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_53_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_53_n_estimators.yaml new file mode 100644 index 000000000..d028a08e7 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_53_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/53/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 53 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_53_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_53_subsample.yaml new file mode 100644 index 000000000..2cef672fe --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_53_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/53/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 53 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_7592_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_7592_n_estimators.yaml new file mode 100644 index 000000000..fd801f72a --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_7592_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/7592/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 7592 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_7592_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_7592_subsample.yaml new file mode 100644 index 000000000..5b5a89e72 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_7592_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/7592/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 7592 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9952_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9952_n_estimators.yaml new file mode 100644 index 000000000..d2f99f5d8 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9952_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/9952/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 9952 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9952_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9952_subsample.yaml new file mode 100644 index 000000000..c3d382bdc --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9952_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/9952/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 9952 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9977_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9977_n_estimators.yaml new file mode 100644 index 000000000..886d7e9e6 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9977_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/9977/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 9977 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9977_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9977_subsample.yaml new file mode 100644 index 000000000..ea743d5f7 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9977_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/9977/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 9977 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9981_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9981_n_estimators.yaml new file mode 100644 index 000000000..70469319d --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9981_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/9981/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 9981 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 16 + max_budget: 512 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9981_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9981_subsample.yaml new file mode 100644 index 000000000..a899ba603 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_rf_9981_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/rf/9981/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 9981 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_10101_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_10101_subsample.yaml new file mode 100644 index 000000000..4928bd9b5 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_10101_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/10101/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 10101 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_12_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_12_subsample.yaml new file mode 100644 index 000000000..f4b49aec5 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_12_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/12/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 12 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146212_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146212_subsample.yaml new file mode 100644 index 000000000..a0a9701af --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146212_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/146212/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 146212 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146606_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146606_subsample.yaml new file mode 100644 index 000000000..82eeb76b2 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146606_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/146606/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 146606 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146818_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146818_subsample.yaml new file mode 100644 index 000000000..7acc0d8bb --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146818_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/146818/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 146818 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146821_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146821_subsample.yaml new file mode 100644 index 000000000..3dd7adc8d --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146821_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/146821/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 146821 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146822_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146822_subsample.yaml new file mode 100644 index 000000000..f803ea236 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_146822_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/146822/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 146822 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_14965_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_14965_subsample.yaml new file mode 100644 index 000000000..1526d2f38 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_14965_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/14965/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 14965 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_167119_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_167119_subsample.yaml new file mode 100644 index 000000000..e276d27fa --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_167119_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/167119/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 167119 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_167120_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_167120_subsample.yaml new file mode 100644 index 000000000..4c1d0f641 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_167120_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/167120/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 167120 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_168911_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_168911_subsample.yaml new file mode 100644 index 000000000..a7e6fa968 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_168911_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/168911/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 168911 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_168912_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_168912_subsample.yaml new file mode 100644 index 000000000..75b718d5e --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_168912_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/168912/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 168912 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_31_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_31_subsample.yaml new file mode 100644 index 000000000..6abac6582 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_31_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/31/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 31 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_3917_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_3917_subsample.yaml new file mode 100644 index 000000000..c0bb53fd0 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_3917_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/3917/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 3917 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_3_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_3_subsample.yaml new file mode 100644 index 000000000..a1149bb1d --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_3_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/3/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 3 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_53_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_53_subsample.yaml new file mode 100644 index 000000000..ac26e4c75 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_53_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/53/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 53 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_7592_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_7592_subsample.yaml new file mode 100644 index 000000000..444727322 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_7592_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/7592/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 7592 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_9952_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_9952_subsample.yaml new file mode 100644 index 000000000..52f39596d --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_9952_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/9952/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 9952 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_9977_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_9977_subsample.yaml new file mode 100644 index 000000000..9665c40cf --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_9977_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/9977/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 9977 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_9981_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_9981_subsample.yaml new file mode 100644 index 000000000..6c8c7ee91 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_svm_9981_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/svm/9981/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 9981 + budget_type: subsample + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_10101_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_10101_n_estimators.yaml new file mode 100644 index 000000000..580e8567b --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_10101_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/10101/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 10101 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_10101_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_10101_subsample.yaml new file mode 100644 index 000000000..421d92401 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_10101_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/10101/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 10101 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_12_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_12_n_estimators.yaml new file mode 100644 index 000000000..bdc088742 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_12_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/12/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 12 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_12_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_12_subsample.yaml new file mode 100644 index 000000000..8e5cfd0a8 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_12_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/12/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 12 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146212_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146212_n_estimators.yaml new file mode 100644 index 000000000..8500998a4 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146212_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/146212/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146212 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146212_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146212_subsample.yaml new file mode 100644 index 000000000..594872971 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146212_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/146212/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146212 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146606_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146606_n_estimators.yaml new file mode 100644 index 000000000..8135a63d4 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146606_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/146606/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146606 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146606_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146606_subsample.yaml new file mode 100644 index 000000000..f8ee69fc9 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146606_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/146606/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146606 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146818_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146818_n_estimators.yaml new file mode 100644 index 000000000..70a30bb6a --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146818_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/146818/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146818 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146818_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146818_subsample.yaml new file mode 100644 index 000000000..767626fd7 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146818_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/146818/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146818 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146821_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146821_n_estimators.yaml new file mode 100644 index 000000000..3644586f2 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146821_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/146821/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146821 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146821_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146821_subsample.yaml new file mode 100644 index 000000000..3b550293e --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146821_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/146821/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146821 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146822_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146822_n_estimators.yaml new file mode 100644 index 000000000..15a236a9c --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146822_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/146822/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146822 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146822_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146822_subsample.yaml new file mode 100644 index 000000000..57da96c34 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_146822_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/146822/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146822 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_14965_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_14965_n_estimators.yaml new file mode 100644 index 000000000..01a262e6a --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_14965_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/14965/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 14965 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_14965_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_14965_subsample.yaml new file mode 100644 index 000000000..24e3de643 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_14965_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/14965/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 14965 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_167119_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_167119_n_estimators.yaml new file mode 100644 index 000000000..4f11e3e26 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_167119_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/167119/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 167119 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_167119_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_167119_subsample.yaml new file mode 100644 index 000000000..e0bbd94d9 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_167119_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/167119/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 167119 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_167120_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_167120_n_estimators.yaml new file mode 100644 index 000000000..0f4cc49ee --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_167120_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/167120/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 167120 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_167120_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_167120_subsample.yaml new file mode 100644 index 000000000..4fc252fdd --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_167120_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/167120/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 167120 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_168911_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_168911_n_estimators.yaml new file mode 100644 index 000000000..c7547381a --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_168911_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/168911/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 168911 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_168911_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_168911_subsample.yaml new file mode 100644 index 000000000..429ba870a --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_168911_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/168911/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 168911 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_168912_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_168912_n_estimators.yaml new file mode 100644 index 000000000..55bea6122 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_168912_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/168912/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 168912 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_168912_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_168912_subsample.yaml new file mode 100644 index 000000000..32ee89d37 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_168912_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/168912/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 168912 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_31_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_31_n_estimators.yaml new file mode 100644 index 000000000..127c887f3 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_31_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/31/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 31 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_31_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_31_subsample.yaml new file mode 100644 index 000000000..33bc91a51 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_31_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/31/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 31 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_3917_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_3917_n_estimators.yaml new file mode 100644 index 000000000..cbb235f8f --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_3917_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/3917/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 3917 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_3917_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_3917_subsample.yaml new file mode 100644 index 000000000..93a88f142 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_3917_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/3917/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 3917 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_3_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_3_n_estimators.yaml new file mode 100644 index 000000000..6aed45502 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_3_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/3/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 3 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_3_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_3_subsample.yaml new file mode 100644 index 000000000..8713dce21 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_3_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/3/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 3 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_53_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_53_n_estimators.yaml new file mode 100644 index 000000000..0650311d1 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_53_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/53/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 53 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_53_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_53_subsample.yaml new file mode 100644 index 000000000..606a38ee3 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_53_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/53/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 53 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_7592_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_7592_n_estimators.yaml new file mode 100644 index 000000000..4d3061708 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_7592_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/7592/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 7592 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_7592_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_7592_subsample.yaml new file mode 100644 index 000000000..eff855b49 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_7592_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/7592/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 7592 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9952_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9952_n_estimators.yaml new file mode 100644 index 000000000..241ecb27e --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9952_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/9952/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 9952 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9952_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9952_subsample.yaml new file mode 100644 index 000000000..e9f8bd4d9 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9952_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/9952/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 9952 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9977_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9977_n_estimators.yaml new file mode 100644 index 000000000..81fd837d6 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9977_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/9977/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 9977 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9977_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9977_subsample.yaml new file mode 100644 index 000000000..4b640fd02 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9977_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/9977/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 9977 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9981_n_estimators.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9981_n_estimators.yaml new file mode 100644 index 000000000..826c392b7 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9981_n_estimators.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/9981/n_estimators +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 9981 + budget_type: n_estimators + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: n_estimators + min_budget: 50 + max_budget: 2000 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9981_subsample.yaml b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9981_subsample.yaml new file mode 100644 index 000000000..f6b3e60e4 --- /dev/null +++ b/carps/configs/problem/HPOBench/multifidelity/cfg_ml_xgboost_9981_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: hpobench/mf/real/ml/xgboost/9981/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 9981 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/MFPBench/MO/pd1/cifar100_wideresnet_2048.yaml b/carps/configs/problem/MFPBench/MO/pd1/cifar100_wideresnet_2048.yaml new file mode 100644 index 000000000..cef220d90 --- /dev/null +++ b/carps/configs/problem/MFPBench/MO/pd1/cifar100_wideresnet_2048.yaml @@ -0,0 +1,40 @@ +# @package _global_ +benchmark_id: MFPBench +problem_id: mfpbench/MO/pd1/cifar100_wideresnet_2048 +problem: + _target_: carps.benchmarks.mfpbench.MFPBenchProblem + benchmark_name: pd1 + metric: + - valid_error_rate + - train_cost + benchmark: cifar100_wideresnet_2048 + budget_type: null + prior: null + perturb_prior: null + benchmark_kwargs: + datadir: ./data +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - valid_error_rate + - train_cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: null + domain: DL + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/MFPBench/MO/pd1/imagenet_resnet_512.yaml b/carps/configs/problem/MFPBench/MO/pd1/imagenet_resnet_512.yaml new file mode 100644 index 000000000..7ca4b37ad --- /dev/null +++ b/carps/configs/problem/MFPBench/MO/pd1/imagenet_resnet_512.yaml @@ -0,0 +1,40 @@ +# @package _global_ +benchmark_id: MFPBench +problem_id: mfpbench/MO/pd1/imagenet_resnet_512 +problem: + _target_: carps.benchmarks.mfpbench.MFPBenchProblem + benchmark_name: pd1 + metric: + - valid_error_rate + - train_cost + benchmark: imagenet_resnet_512 + budget_type: null + prior: null + perturb_prior: null + benchmark_kwargs: + datadir: ./data +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - valid_error_rate + - train_cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: null + domain: DL + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/MFPBench/MO/pd1/lm1b_transformer_2048.yaml b/carps/configs/problem/MFPBench/MO/pd1/lm1b_transformer_2048.yaml new file mode 100644 index 000000000..75fd0c642 --- /dev/null +++ b/carps/configs/problem/MFPBench/MO/pd1/lm1b_transformer_2048.yaml @@ -0,0 +1,40 @@ +# @package _global_ +benchmark_id: MFPBench +problem_id: mfpbench/MO/pd1/lm1b_transformer_2048 +problem: + _target_: carps.benchmarks.mfpbench.MFPBenchProblem + benchmark_name: pd1 + metric: + - valid_error_rate + - train_cost + benchmark: lm1b_transformer_2048 + budget_type: null + prior: null + perturb_prior: null + benchmark_kwargs: + datadir: ./data +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - valid_error_rate + - train_cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: null + domain: DL + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/MFPBench/MO/pd1/translatewmt_xformer_64.yaml b/carps/configs/problem/MFPBench/MO/pd1/translatewmt_xformer_64.yaml new file mode 100644 index 000000000..5bae8541f --- /dev/null +++ b/carps/configs/problem/MFPBench/MO/pd1/translatewmt_xformer_64.yaml @@ -0,0 +1,40 @@ +# @package _global_ +benchmark_id: MFPBench +problem_id: mfpbench/MO/pd1/translatewmt_xformer_64 +problem: + _target_: carps.benchmarks.mfpbench.MFPBenchProblem + benchmark_name: pd1 + metric: + - valid_error_rate + - train_cost + benchmark: translatewmt_xformer_64 + budget_type: null + prior: null + perturb_prior: null + benchmark_kwargs: + datadir: ./data +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - valid_error_rate + - train_cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: null + domain: DL + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/MFPBench/SO/mfh/mfh3_bad.yaml b/carps/configs/problem/MFPBench/SO/mfh/mfh3_bad.yaml new file mode 100644 index 000000000..5e2858523 --- /dev/null +++ b/carps/configs/problem/MFPBench/SO/mfh/mfh3_bad.yaml @@ -0,0 +1,39 @@ +# @package _global_ +benchmark_id: MFPBench +problem_id: mfpbench/SO/mfh/mfh3_bad +problem: + _target_: carps.benchmarks.mfpbench.MFPBenchProblem + benchmark_name: mfh + metric: + - value + benchmark: mfh3_bad + budget_type: z + prior: null + perturb_prior: null + benchmark_kwargs: + bias: null + noise: null +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - value + is_multifidelity: true + fidelity_type: z + min_budget: 1 + max_budget: 100 + has_constraints: null + domain: synthetic + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/MFPBench/SO/mfh/mfh3_good.yaml b/carps/configs/problem/MFPBench/SO/mfh/mfh3_good.yaml new file mode 100644 index 000000000..ff0eed401 --- /dev/null +++ b/carps/configs/problem/MFPBench/SO/mfh/mfh3_good.yaml @@ -0,0 +1,39 @@ +# @package _global_ +benchmark_id: MFPBench +problem_id: mfpbench/SO/mfh/mfh3_good +problem: + _target_: carps.benchmarks.mfpbench.MFPBenchProblem + benchmark_name: mfh + metric: + - value + benchmark: mfh3_good + budget_type: z + prior: null + perturb_prior: null + benchmark_kwargs: + bias: null + noise: null +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - value + is_multifidelity: true + fidelity_type: z + min_budget: 1 + max_budget: 100 + has_constraints: null + domain: synthetic + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/MFPBench/SO/mfh/mfh3_moderate.yaml b/carps/configs/problem/MFPBench/SO/mfh/mfh3_moderate.yaml new file mode 100644 index 000000000..4fc95ab70 --- /dev/null +++ b/carps/configs/problem/MFPBench/SO/mfh/mfh3_moderate.yaml @@ -0,0 +1,39 @@ +# @package _global_ +benchmark_id: MFPBench +problem_id: mfpbench/SO/mfh/mfh3_moderate +problem: + _target_: carps.benchmarks.mfpbench.MFPBenchProblem + benchmark_name: mfh + metric: + - value + benchmark: mfh3_moderate + budget_type: z + prior: null + perturb_prior: null + benchmark_kwargs: + bias: null + noise: null +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - value + is_multifidelity: true + fidelity_type: z + min_budget: 1 + max_budget: 100 + has_constraints: null + domain: synthetic + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/MFPBench/SO/mfh/mfh3_terrible.yaml b/carps/configs/problem/MFPBench/SO/mfh/mfh3_terrible.yaml new file mode 100644 index 000000000..f7525f73b --- /dev/null +++ b/carps/configs/problem/MFPBench/SO/mfh/mfh3_terrible.yaml @@ -0,0 +1,39 @@ +# @package _global_ +benchmark_id: MFPBench +problem_id: mfpbench/SO/mfh/mfh3_terrible +problem: + _target_: carps.benchmarks.mfpbench.MFPBenchProblem + benchmark_name: mfh + metric: + - value + benchmark: mfh3_terrible + budget_type: z + prior: null + perturb_prior: null + benchmark_kwargs: + bias: null + noise: null +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - value + is_multifidelity: true + fidelity_type: z + min_budget: 1 + max_budget: 100 + has_constraints: null + domain: synthetic + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/MFPBench/SO/mfh/mfh6_bad.yaml b/carps/configs/problem/MFPBench/SO/mfh/mfh6_bad.yaml new file mode 100644 index 000000000..baf50fc46 --- /dev/null +++ b/carps/configs/problem/MFPBench/SO/mfh/mfh6_bad.yaml @@ -0,0 +1,39 @@ +# @package _global_ +benchmark_id: MFPBench +problem_id: mfpbench/SO/mfh/mfh6_bad +problem: + _target_: carps.benchmarks.mfpbench.MFPBenchProblem + benchmark_name: mfh + metric: + - value + benchmark: mfh6_bad + budget_type: z + prior: null + perturb_prior: null + benchmark_kwargs: + bias: null + noise: null +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - value + is_multifidelity: true + fidelity_type: z + min_budget: 1 + max_budget: 100 + has_constraints: null + domain: synthetic + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/MFPBench/SO/mfh/mfh6_good.yaml b/carps/configs/problem/MFPBench/SO/mfh/mfh6_good.yaml new file mode 100644 index 000000000..a5e625454 --- /dev/null +++ b/carps/configs/problem/MFPBench/SO/mfh/mfh6_good.yaml @@ -0,0 +1,39 @@ +# @package _global_ +benchmark_id: MFPBench +problem_id: mfpbench/SO/mfh/mfh6_good +problem: + _target_: carps.benchmarks.mfpbench.MFPBenchProblem + benchmark_name: mfh + metric: + - value + benchmark: mfh6_good + budget_type: z + prior: null + perturb_prior: null + benchmark_kwargs: + bias: null + noise: null +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - value + is_multifidelity: true + fidelity_type: z + min_budget: 1 + max_budget: 100 + has_constraints: null + domain: synthetic + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/MFPBench/SO/mfh/mfh6_moderate.yaml b/carps/configs/problem/MFPBench/SO/mfh/mfh6_moderate.yaml new file mode 100644 index 000000000..1ebbfbef9 --- /dev/null +++ b/carps/configs/problem/MFPBench/SO/mfh/mfh6_moderate.yaml @@ -0,0 +1,39 @@ +# @package _global_ +benchmark_id: MFPBench +problem_id: mfpbench/SO/mfh/mfh6_moderate +problem: + _target_: carps.benchmarks.mfpbench.MFPBenchProblem + benchmark_name: mfh + metric: + - value + benchmark: mfh6_moderate + budget_type: z + prior: null + perturb_prior: null + benchmark_kwargs: + bias: null + noise: null +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - value + is_multifidelity: true + fidelity_type: z + min_budget: 1 + max_budget: 100 + has_constraints: null + domain: synthetic + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/MFPBench/SO/mfh/mfh6_terrible.yaml b/carps/configs/problem/MFPBench/SO/mfh/mfh6_terrible.yaml new file mode 100644 index 000000000..f1b7df81d --- /dev/null +++ b/carps/configs/problem/MFPBench/SO/mfh/mfh6_terrible.yaml @@ -0,0 +1,39 @@ +# @package _global_ +benchmark_id: MFPBench +problem_id: mfpbench/SO/mfh/mfh6_terrible +problem: + _target_: carps.benchmarks.mfpbench.MFPBenchProblem + benchmark_name: mfh + metric: + - value + benchmark: mfh6_terrible + budget_type: z + prior: null + perturb_prior: null + benchmark_kwargs: + bias: null + noise: null +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - value + is_multifidelity: true + fidelity_type: z + min_budget: 1 + max_budget: 100 + has_constraints: null + domain: synthetic + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/MFPBench/SO/pd1/cifar100_wideresnet_2048.yaml b/carps/configs/problem/MFPBench/SO/pd1/cifar100_wideresnet_2048.yaml new file mode 100644 index 000000000..040746b42 --- /dev/null +++ b/carps/configs/problem/MFPBench/SO/pd1/cifar100_wideresnet_2048.yaml @@ -0,0 +1,38 @@ +# @package _global_ +benchmark_id: MFPBench +problem_id: mfpbench/SO/pd1/cifar100_wideresnet_2048 +problem: + _target_: carps.benchmarks.mfpbench.MFPBenchProblem + benchmark_name: pd1 + metric: + - valid_error_rate + benchmark: cifar100_wideresnet_2048 + budget_type: epoch + prior: null + perturb_prior: null + benchmark_kwargs: + datadir: ./data +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - valid_error_rate + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 199 + has_constraints: null + domain: DL + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/MFPBench/SO/pd1/imagenet_resnet_512.yaml b/carps/configs/problem/MFPBench/SO/pd1/imagenet_resnet_512.yaml new file mode 100644 index 000000000..a19e6a2f1 --- /dev/null +++ b/carps/configs/problem/MFPBench/SO/pd1/imagenet_resnet_512.yaml @@ -0,0 +1,38 @@ +# @package _global_ +benchmark_id: MFPBench +problem_id: mfpbench/SO/pd1/imagenet_resnet_512 +problem: + _target_: carps.benchmarks.mfpbench.MFPBenchProblem + benchmark_name: pd1 + metric: + - valid_error_rate + benchmark: imagenet_resnet_512 + budget_type: epoch + prior: null + perturb_prior: null + benchmark_kwargs: + datadir: ./data +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - valid_error_rate + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 99 + has_constraints: null + domain: DL + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/MFPBench/SO/pd1/lm1b_transformer_2048.yaml b/carps/configs/problem/MFPBench/SO/pd1/lm1b_transformer_2048.yaml new file mode 100644 index 000000000..adb2dd452 --- /dev/null +++ b/carps/configs/problem/MFPBench/SO/pd1/lm1b_transformer_2048.yaml @@ -0,0 +1,38 @@ +# @package _global_ +benchmark_id: MFPBench +problem_id: mfpbench/SO/pd1/lm1b_transformer_2048 +problem: + _target_: carps.benchmarks.mfpbench.MFPBenchProblem + benchmark_name: pd1 + metric: + - valid_error_rate + benchmark: lm1b_transformer_2048 + budget_type: epoch + prior: null + perturb_prior: null + benchmark_kwargs: + datadir: ./data +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - valid_error_rate + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 74 + has_constraints: null + domain: DL + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/MFPBench/SO/pd1/translatewmt_xformer_64.yaml b/carps/configs/problem/MFPBench/SO/pd1/translatewmt_xformer_64.yaml new file mode 100644 index 000000000..0edca27d0 --- /dev/null +++ b/carps/configs/problem/MFPBench/SO/pd1/translatewmt_xformer_64.yaml @@ -0,0 +1,38 @@ +# @package _global_ +benchmark_id: MFPBench +problem_id: mfpbench/SO/pd1/translatewmt_xformer_64 +problem: + _target_: carps.benchmarks.mfpbench.MFPBenchProblem + benchmark_name: pd1 + metric: + - valid_error_rate + benchmark: translatewmt_xformer_64 + budget_type: epoch + prior: null + perturb_prior: null + benchmark_kwargs: + datadir: ./data +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - valid_error_rate + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 19 + has_constraints: null + domain: DL + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/Pymoo/MO/kursawe.yaml b/carps/configs/problem/Pymoo/MO/kursawe.yaml new file mode 100644 index 000000000..81d50b811 --- /dev/null +++ b/carps/configs/problem/Pymoo/MO/kursawe.yaml @@ -0,0 +1,35 @@ +# @package _global_ +benchmark_id: Pymoo +problem_id: Pymoo/MO/kursawe +problem: + _target_: carps.benchmarks.pymoo.PymooProblem + problem_name: kursawe + seed: ${seed} + metric: + - objective_0 + - objective_1 +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - objective_0 + - objective_1 + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 3 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/Pymoo/MO/omnitest.yaml b/carps/configs/problem/Pymoo/MO/omnitest.yaml new file mode 100644 index 000000000..3b33c89f4 --- /dev/null +++ b/carps/configs/problem/Pymoo/MO/omnitest.yaml @@ -0,0 +1,35 @@ +# @package _global_ +benchmark_id: Pymoo +problem_id: Pymoo/MO/omnitest +problem: + _target_: carps.benchmarks.pymoo.PymooProblem + problem_name: omnitest + seed: ${seed} + metric: + - objective_0 + - objective_1 +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - objective_0 + - objective_1 + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/Pymoo/MO/sympart.yaml b/carps/configs/problem/Pymoo/MO/sympart.yaml new file mode 100644 index 000000000..72ac71f0a --- /dev/null +++ b/carps/configs/problem/Pymoo/MO/sympart.yaml @@ -0,0 +1,35 @@ +# @package _global_ +benchmark_id: Pymoo +problem_id: Pymoo/MO/sympart +problem: + _target_: carps.benchmarks.pymoo.PymooProblem + problem_name: sympart + seed: ${seed} + metric: + - objective_0 + - objective_1 +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - objective_0 + - objective_1 + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/Pymoo/MO/sympart_rotated.yaml b/carps/configs/problem/Pymoo/MO/sympart_rotated.yaml new file mode 100644 index 000000000..249cccaf6 --- /dev/null +++ b/carps/configs/problem/Pymoo/MO/sympart_rotated.yaml @@ -0,0 +1,35 @@ +# @package _global_ +benchmark_id: Pymoo +problem_id: Pymoo/MO/sympart_rotated +problem: + _target_: carps.benchmarks.pymoo.PymooProblem + problem_name: sympart_rotated + seed: ${seed} + metric: + - objective_0 + - objective_1 +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - objective_0 + - objective_1 + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/Pymoo/MO/zdt1.yaml b/carps/configs/problem/Pymoo/MO/zdt1.yaml new file mode 100644 index 000000000..e34d803bc --- /dev/null +++ b/carps/configs/problem/Pymoo/MO/zdt1.yaml @@ -0,0 +1,35 @@ +# @package _global_ +benchmark_id: Pymoo +problem_id: Pymoo/MO/zdt1 +problem: + _target_: carps.benchmarks.pymoo.PymooProblem + problem_name: zdt1 + seed: ${seed} + metric: + - objective_0 + - objective_1 +task: + n_trials: 240 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - objective_0 + - objective_1 + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 30 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 30 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/Pymoo/MO/zdt2.yaml b/carps/configs/problem/Pymoo/MO/zdt2.yaml new file mode 100644 index 000000000..ba6615a16 --- /dev/null +++ b/carps/configs/problem/Pymoo/MO/zdt2.yaml @@ -0,0 +1,35 @@ +# @package _global_ +benchmark_id: Pymoo +problem_id: Pymoo/MO/zdt2 +problem: + _target_: carps.benchmarks.pymoo.PymooProblem + problem_name: zdt2 + seed: ${seed} + metric: + - objective_0 + - objective_1 +task: + n_trials: 240 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - objective_0 + - objective_1 + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 30 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 30 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/Pymoo/MO/zdt3.yaml b/carps/configs/problem/Pymoo/MO/zdt3.yaml new file mode 100644 index 000000000..718d54426 --- /dev/null +++ b/carps/configs/problem/Pymoo/MO/zdt3.yaml @@ -0,0 +1,35 @@ +# @package _global_ +benchmark_id: Pymoo +problem_id: Pymoo/MO/zdt3 +problem: + _target_: carps.benchmarks.pymoo.PymooProblem + problem_name: zdt3 + seed: ${seed} + metric: + - objective_0 + - objective_1 +task: + n_trials: 240 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - objective_0 + - objective_1 + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 30 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 30 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/Pymoo/MO/zdt4.yaml b/carps/configs/problem/Pymoo/MO/zdt4.yaml new file mode 100644 index 000000000..b34326740 --- /dev/null +++ b/carps/configs/problem/Pymoo/MO/zdt4.yaml @@ -0,0 +1,35 @@ +# @package _global_ +benchmark_id: Pymoo +problem_id: Pymoo/MO/zdt4 +problem: + _target_: carps.benchmarks.pymoo.PymooProblem + problem_name: zdt4 + seed: ${seed} + metric: + - objective_0 + - objective_1 +task: + n_trials: 147 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - objective_0 + - objective_1 + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/Pymoo/MO/zdt5.yaml b/carps/configs/problem/Pymoo/MO/zdt5.yaml new file mode 100644 index 000000000..b28966834 --- /dev/null +++ b/carps/configs/problem/Pymoo/MO/zdt5.yaml @@ -0,0 +1,35 @@ +# @package _global_ +benchmark_id: Pymoo +problem_id: Pymoo/MO/zdt5 +problem: + _target_: carps.benchmarks.pymoo.PymooProblem + problem_name: zdt5 + seed: ${seed} + metric: + - objective_0 + - objective_1 +task: + n_trials: 378 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - objective_0 + - objective_1 + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 80 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 80 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/Pymoo/MO/zdt6.yaml b/carps/configs/problem/Pymoo/MO/zdt6.yaml new file mode 100644 index 000000000..bfeabf9ce --- /dev/null +++ b/carps/configs/problem/Pymoo/MO/zdt6.yaml @@ -0,0 +1,35 @@ +# @package _global_ +benchmark_id: Pymoo +problem_id: Pymoo/MO/zdt6 +problem: + _target_: carps.benchmarks.pymoo.PymooProblem + problem_name: zdt6 + seed: ${seed} + metric: + - objective_0 + - objective_1 +task: + n_trials: 147 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - objective_0 + - objective_1 + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 10 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 10 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_iaml_glmnet_1067.yaml b/carps/configs/problem/YAHPO/MO/cfg_iaml_glmnet_1067.yaml new file mode 100644 index 000000000..eec427b14 --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_iaml_glmnet_1067.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/iaml_glmnet/1067/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_glmnet + instance: '1067' + budget_type: null + metric: + - mmce + - nf +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - mmce + - nf + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_iaml_glmnet_1489.yaml b/carps/configs/problem/YAHPO/MO/cfg_iaml_glmnet_1489.yaml new file mode 100644 index 000000000..f169d9489 --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_iaml_glmnet_1489.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/iaml_glmnet/1489/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_glmnet + instance: '1489' + budget_type: null + metric: + - mmce + - nf +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - mmce + - nf + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_iaml_ranger_1067.yaml b/carps/configs/problem/YAHPO/MO/cfg_iaml_ranger_1067.yaml new file mode 100644 index 000000000..d19c2b4b7 --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_iaml_ranger_1067.yaml @@ -0,0 +1,38 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/iaml_ranger/1067/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_ranger + instance: '1067' + budget_type: null + metric: + - mmce + - nf + - ias +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 3 + objectives: + - mmce + - nf + - ias + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_iaml_ranger_1489.yaml b/carps/configs/problem/YAHPO/MO/cfg_iaml_ranger_1489.yaml new file mode 100644 index 000000000..4578f7450 --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_iaml_ranger_1489.yaml @@ -0,0 +1,38 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/iaml_ranger/1489/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_ranger + instance: '1489' + budget_type: null + metric: + - mmce + - nf + - ias +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 3 + objectives: + - mmce + - nf + - ias + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_iaml_super_1067.yaml b/carps/configs/problem/YAHPO/MO/cfg_iaml_super_1067.yaml new file mode 100644 index 000000000..7081965bd --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_iaml_super_1067.yaml @@ -0,0 +1,38 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/iaml_super/1067/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_super + instance: '1067' + budget_type: null + metric: + - mmce + - nf + - ias +task: + n_trials: 232 + time_budget: null + n_workers: 1 + n_objectives: 3 + objectives: + - mmce + - nf + - ias + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 28 + search_space_n_categoricals: 5 + search_space_n_ordinals: 0 + search_space_n_integers: 8 + search_space_n_floats: 15 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_iaml_super_1489.yaml b/carps/configs/problem/YAHPO/MO/cfg_iaml_super_1489.yaml new file mode 100644 index 000000000..90b0321ec --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_iaml_super_1489.yaml @@ -0,0 +1,38 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/iaml_super/1489/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_super + instance: '1489' + budget_type: null + metric: + - mmce + - nf + - ias +task: + n_trials: 232 + time_budget: null + n_workers: 1 + n_objectives: 3 + objectives: + - mmce + - nf + - ias + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 28 + search_space_n_categoricals: 5 + search_space_n_ordinals: 0 + search_space_n_integers: 8 + search_space_n_floats: 15 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_iaml_xgboost_1489.yaml b/carps/configs/problem/YAHPO/MO/cfg_iaml_xgboost_1489.yaml new file mode 100644 index 000000000..da8f14a56 --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_iaml_xgboost_1489.yaml @@ -0,0 +1,40 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/iaml_xgboost/1489/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_xgboost + instance: '1489' + budget_type: null + metric: + - mmce + - nf + - ias + - rammodel +task: + n_trials: 165 + time_budget: null + n_workers: 1 + n_objectives: 4 + objectives: + - mmce + - nf + - ias + - rammodel + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 13 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_iaml_xgboost_40981.yaml b/carps/configs/problem/YAHPO/MO/cfg_iaml_xgboost_40981.yaml new file mode 100644 index 000000000..1f40594ce --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_iaml_xgboost_40981.yaml @@ -0,0 +1,40 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/iaml_xgboost/40981/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_xgboost + instance: '40981' + budget_type: null + metric: + - mmce + - nf + - ias + - rammodel +task: + n_trials: 165 + time_budget: null + n_workers: 1 + n_objectives: 4 + objectives: + - mmce + - nf + - ias + - rammodel + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 13 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_lcbench_167152.yaml b/carps/configs/problem/YAHPO/MO/cfg_lcbench_167152.yaml new file mode 100644 index 000000000..c8ce29e04 --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_lcbench_167152.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/lcbench/167152/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167152' + budget_type: null + metric: + - val_accuracy + - val_cross_entropy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - val_accuracy + - val_cross_entropy + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_lcbench_167185.yaml b/carps/configs/problem/YAHPO/MO/cfg_lcbench_167185.yaml new file mode 100644 index 000000000..d5498dcbc --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_lcbench_167185.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/lcbench/167185/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167185' + budget_type: null + metric: + - val_accuracy + - val_cross_entropy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - val_accuracy + - val_cross_entropy + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_lcbench_189873.yaml b/carps/configs/problem/YAHPO/MO/cfg_lcbench_189873.yaml new file mode 100644 index 000000000..4fead87e5 --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_lcbench_189873.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/lcbench/189873/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189873' + budget_type: null + metric: + - val_accuracy + - val_cross_entropy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - val_accuracy + - val_cross_entropy + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_rbv2_ranger_375.yaml b/carps/configs/problem/YAHPO/MO/cfg_rbv2_ranger_375.yaml new file mode 100644 index 000000000..ff7b25cc8 --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_rbv2_ranger_375.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/rbv2_ranger/375/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '375' + budget_type: null + metric: + - acc + - memory +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_rbv2_ranger_40979.yaml b/carps/configs/problem/YAHPO/MO/cfg_rbv2_ranger_40979.yaml new file mode 100644 index 000000000..06463e0f0 --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_rbv2_ranger_40979.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/rbv2_ranger/40979/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40979' + budget_type: null + metric: + - acc + - memory +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_rbv2_ranger_6.yaml b/carps/configs/problem/YAHPO/MO/cfg_rbv2_ranger_6.yaml new file mode 100644 index 000000000..f77cfb600 --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_rbv2_ranger_6.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/rbv2_ranger/6/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '6' + budget_type: null + metric: + - acc + - memory +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_rbv2_rpart_1476.yaml b/carps/configs/problem/YAHPO/MO/cfg_rbv2_rpart_1476.yaml new file mode 100644 index 000000000..e110117d2 --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_rbv2_rpart_1476.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/rbv2_rpart/1476/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1476' + budget_type: null + metric: + - acc + - memory +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_rbv2_rpart_40499.yaml b/carps/configs/problem/YAHPO/MO/cfg_rbv2_rpart_40499.yaml new file mode 100644 index 000000000..04cc2792c --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_rbv2_rpart_40499.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/rbv2_rpart/40499/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40499' + budget_type: null + metric: + - acc + - memory +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_rbv2_rpart_41163.yaml b/carps/configs/problem/YAHPO/MO/cfg_rbv2_rpart_41163.yaml new file mode 100644 index 000000000..43fb7f34d --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_rbv2_rpart_41163.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/rbv2_rpart/41163/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41163' + budget_type: null + metric: + - acc + - memory +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_rbv2_super_1053.yaml b/carps/configs/problem/YAHPO/MO/cfg_rbv2_super_1053.yaml new file mode 100644 index 000000000..e995da493 --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_rbv2_super_1053.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/rbv2_super/1053/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1053' + budget_type: null + metric: + - acc + - memory +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_rbv2_super_1457.yaml b/carps/configs/problem/YAHPO/MO/cfg_rbv2_super_1457.yaml new file mode 100644 index 000000000..bc8b2d79e --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_rbv2_super_1457.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/rbv2_super/1457/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1457' + budget_type: null + metric: + - acc + - memory +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_rbv2_super_6.yaml b/carps/configs/problem/YAHPO/MO/cfg_rbv2_super_6.yaml new file mode 100644 index 000000000..9d1f6aec5 --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_rbv2_super_6.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/rbv2_super/6/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '6' + budget_type: null + metric: + - acc + - memory +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_rbv2_xgboost_12.yaml b/carps/configs/problem/YAHPO/MO/cfg_rbv2_xgboost_12.yaml new file mode 100644 index 000000000..970ff6789 --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_rbv2_xgboost_12.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/rbv2_xgboost/12/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '12' + budget_type: null + metric: + - acc + - memory +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_rbv2_xgboost_182.yaml b/carps/configs/problem/YAHPO/MO/cfg_rbv2_xgboost_182.yaml new file mode 100644 index 000000000..06d8f9d9e --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_rbv2_xgboost_182.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/rbv2_xgboost/182/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '182' + budget_type: null + metric: + - acc + - memory +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MO/cfg_rbv2_xgboost_28.yaml b/carps/configs/problem/YAHPO/MO/cfg_rbv2_xgboost_28.yaml new file mode 100644 index 000000000..a82bc921c --- /dev/null +++ b/carps/configs/problem/YAHPO/MO/cfg_rbv2_xgboost_28.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/mo/rbv2_xgboost/28/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '28' + budget_type: null + metric: + - acc + - memory +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_iaml_glmnet_1067_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_iaml_glmnet_1067_trainsize_mf.yaml new file mode 100644 index 000000000..fc5b4afa6 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_iaml_glmnet_1067_trainsize_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/iaml_glmnet/1067/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_glmnet + instance: '1067' + budget_type: trainsize + metric: + - mmce + - nf +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - mmce + - nf + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_iaml_glmnet_1489_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_iaml_glmnet_1489_trainsize_mf.yaml new file mode 100644 index 000000000..3c20f304b --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_iaml_glmnet_1489_trainsize_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/iaml_glmnet/1489/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_glmnet + instance: '1489' + budget_type: trainsize + metric: + - mmce + - nf +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - mmce + - nf + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_iaml_ranger_1067_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_iaml_ranger_1067_trainsize_mf.yaml new file mode 100644 index 000000000..f6f4fe558 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_iaml_ranger_1067_trainsize_mf.yaml @@ -0,0 +1,38 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/iaml_ranger/1067/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_ranger + instance: '1067' + budget_type: trainsize + metric: + - mmce + - nf + - ias +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 3 + objectives: + - mmce + - nf + - ias + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_iaml_ranger_1489_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_iaml_ranger_1489_trainsize_mf.yaml new file mode 100644 index 000000000..76698f83e --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_iaml_ranger_1489_trainsize_mf.yaml @@ -0,0 +1,38 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/iaml_ranger/1489/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_ranger + instance: '1489' + budget_type: trainsize + metric: + - mmce + - nf + - ias +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 3 + objectives: + - mmce + - nf + - ias + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_iaml_super_1067_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_iaml_super_1067_trainsize_mf.yaml new file mode 100644 index 000000000..da7b1a9d1 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_iaml_super_1067_trainsize_mf.yaml @@ -0,0 +1,38 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/iaml_super/1067/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_super + instance: '1067' + budget_type: trainsize + metric: + - mmce + - nf + - ias +task: + n_trials: 232 + time_budget: null + n_workers: 1 + n_objectives: 3 + objectives: + - mmce + - nf + - ias + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 28 + search_space_n_categoricals: 5 + search_space_n_ordinals: 0 + search_space_n_integers: 8 + search_space_n_floats: 15 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_iaml_super_1489_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_iaml_super_1489_trainsize_mf.yaml new file mode 100644 index 000000000..440190f8f --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_iaml_super_1489_trainsize_mf.yaml @@ -0,0 +1,38 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/iaml_super/1489/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_super + instance: '1489' + budget_type: trainsize + metric: + - mmce + - nf + - ias +task: + n_trials: 232 + time_budget: null + n_workers: 1 + n_objectives: 3 + objectives: + - mmce + - nf + - ias + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 28 + search_space_n_categoricals: 5 + search_space_n_ordinals: 0 + search_space_n_integers: 8 + search_space_n_floats: 15 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_iaml_xgboost_1489_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_iaml_xgboost_1489_trainsize_mf.yaml new file mode 100644 index 000000000..0603d30e1 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_iaml_xgboost_1489_trainsize_mf.yaml @@ -0,0 +1,40 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/iaml_xgboost/1489/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_xgboost + instance: '1489' + budget_type: trainsize + metric: + - mmce + - nf + - ias + - rammodel +task: + n_trials: 165 + time_budget: null + n_workers: 1 + n_objectives: 4 + objectives: + - mmce + - nf + - ias + - rammodel + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 13 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_iaml_xgboost_40981_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_iaml_xgboost_40981_trainsize_mf.yaml new file mode 100644 index 000000000..6df245061 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_iaml_xgboost_40981_trainsize_mf.yaml @@ -0,0 +1,40 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/iaml_xgboost/40981/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_xgboost + instance: '40981' + budget_type: trainsize + metric: + - mmce + - nf + - ias + - rammodel +task: + n_trials: 165 + time_budget: null + n_workers: 1 + n_objectives: 4 + objectives: + - mmce + - nf + - ias + - rammodel + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 13 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_lcbench_167152_epoch_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_lcbench_167152_epoch_mf.yaml new file mode 100644 index 000000000..945153277 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_lcbench_167152_epoch_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/epoch/lcbench/167152/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167152' + budget_type: epoch + metric: + - val_accuracy + - val_cross_entropy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - val_accuracy + - val_cross_entropy + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_lcbench_167185_epoch_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_lcbench_167185_epoch_mf.yaml new file mode 100644 index 000000000..04cac85b1 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_lcbench_167185_epoch_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/epoch/lcbench/167185/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167185' + budget_type: epoch + metric: + - val_accuracy + - val_cross_entropy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - val_accuracy + - val_cross_entropy + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_lcbench_189873_epoch_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_lcbench_189873_epoch_mf.yaml new file mode 100644 index 000000000..80b0f54da --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_lcbench_189873_epoch_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/epoch/lcbench/189873/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189873' + budget_type: epoch + metric: + - val_accuracy + - val_cross_entropy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - val_accuracy + - val_cross_entropy + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_375_repl_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_375_repl_mf.yaml new file mode 100644 index 000000000..c988dec43 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_375_repl_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/repl/rbv2_ranger/375/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '375' + budget_type: repl + metric: + - acc + - memory +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_375_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_375_trainsize_mf.yaml new file mode 100644 index 000000000..234494f8f --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_375_trainsize_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/rbv2_ranger/375/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '375' + budget_type: trainsize + metric: + - acc + - memory +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_40979_repl_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_40979_repl_mf.yaml new file mode 100644 index 000000000..7e0869c11 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_40979_repl_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/repl/rbv2_ranger/40979/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40979' + budget_type: repl + metric: + - acc + - memory +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_40979_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_40979_trainsize_mf.yaml new file mode 100644 index 000000000..7de3ebf7f --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_40979_trainsize_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/rbv2_ranger/40979/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40979' + budget_type: trainsize + metric: + - acc + - memory +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_6_repl_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_6_repl_mf.yaml new file mode 100644 index 000000000..dd4112c12 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_6_repl_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/repl/rbv2_ranger/6/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '6' + budget_type: repl + metric: + - acc + - memory +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_6_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_6_trainsize_mf.yaml new file mode 100644 index 000000000..b4ccce335 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_ranger_6_trainsize_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/rbv2_ranger/6/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '6' + budget_type: trainsize + metric: + - acc + - memory +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_1476_repl_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_1476_repl_mf.yaml new file mode 100644 index 000000000..6f42b5145 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_1476_repl_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/repl/rbv2_rpart/1476/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1476' + budget_type: repl + metric: + - acc + - memory +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_1476_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_1476_trainsize_mf.yaml new file mode 100644 index 000000000..d418badd9 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_1476_trainsize_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/rbv2_rpart/1476/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1476' + budget_type: trainsize + metric: + - acc + - memory +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_40499_repl_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_40499_repl_mf.yaml new file mode 100644 index 000000000..6a68bce37 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_40499_repl_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/repl/rbv2_rpart/40499/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40499' + budget_type: repl + metric: + - acc + - memory +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_40499_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_40499_trainsize_mf.yaml new file mode 100644 index 000000000..1933c9951 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_40499_trainsize_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/rbv2_rpart/40499/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40499' + budget_type: trainsize + metric: + - acc + - memory +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_41163_repl_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_41163_repl_mf.yaml new file mode 100644 index 000000000..a6e6c5239 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_41163_repl_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/repl/rbv2_rpart/41163/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41163' + budget_type: repl + metric: + - acc + - memory +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_41163_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_41163_trainsize_mf.yaml new file mode 100644 index 000000000..cc084e37a --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_rpart_41163_trainsize_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/rbv2_rpart/41163/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41163' + budget_type: trainsize + metric: + - acc + - memory +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_1053_repl_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_1053_repl_mf.yaml new file mode 100644 index 000000000..eaa6f2454 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_1053_repl_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/repl/rbv2_super/1053/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1053' + budget_type: repl + metric: + - acc + - memory +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_1053_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_1053_trainsize_mf.yaml new file mode 100644 index 000000000..7e286f4b4 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_1053_trainsize_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/rbv2_super/1053/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1053' + budget_type: trainsize + metric: + - acc + - memory +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_1457_repl_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_1457_repl_mf.yaml new file mode 100644 index 000000000..83120e7f4 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_1457_repl_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/repl/rbv2_super/1457/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1457' + budget_type: repl + metric: + - acc + - memory +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_1457_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_1457_trainsize_mf.yaml new file mode 100644 index 000000000..4db6094ee --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_1457_trainsize_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/rbv2_super/1457/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1457' + budget_type: trainsize + metric: + - acc + - memory +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_6_repl_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_6_repl_mf.yaml new file mode 100644 index 000000000..9bb88115d --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_6_repl_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/repl/rbv2_super/6/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '6' + budget_type: repl + metric: + - acc + - memory +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_6_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_6_trainsize_mf.yaml new file mode 100644 index 000000000..d975dc78a --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_super_6_trainsize_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/rbv2_super/6/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '6' + budget_type: trainsize + metric: + - acc + - memory +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_12_repl_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_12_repl_mf.yaml new file mode 100644 index 000000000..79b46c641 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_12_repl_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/repl/rbv2_xgboost/12/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '12' + budget_type: repl + metric: + - acc + - memory +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_12_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_12_trainsize_mf.yaml new file mode 100644 index 000000000..c814a5bf8 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_12_trainsize_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/rbv2_xgboost/12/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '12' + budget_type: trainsize + metric: + - acc + - memory +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_182_repl_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_182_repl_mf.yaml new file mode 100644 index 000000000..a0d2f0c9e --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_182_repl_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/repl/rbv2_xgboost/182/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '182' + budget_type: repl + metric: + - acc + - memory +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_182_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_182_trainsize_mf.yaml new file mode 100644 index 000000000..fae178cb4 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_182_trainsize_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/rbv2_xgboost/182/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '182' + budget_type: trainsize + metric: + - acc + - memory +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_28_repl_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_28_repl_mf.yaml new file mode 100644 index 000000000..413e56c31 --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_28_repl_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/repl/rbv2_xgboost/28/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '28' + budget_type: repl + metric: + - acc + - memory +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_28_trainsize_mf.yaml b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_28_trainsize_mf.yaml new file mode 100644 index 000000000..cdb259b9e --- /dev/null +++ b/carps/configs/problem/YAHPO/MOMF/cfg_rbv2_xgboost_28_trainsize_mf.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/MOMF/trainsize/rbv2_xgboost/28/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '28' + budget_type: trainsize + metric: + - acc + - memory +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_lcbench_167168.yaml b/carps/configs/problem/YAHPO/SO/cfg_lcbench_167168.yaml new file mode 100644 index 000000000..2d40d48ac --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_lcbench_167168.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/lcbench/167168/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167168' + budget_type: null + metric: + - val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - val_accuracy + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_lcbench_189873.yaml b/carps/configs/problem/YAHPO/SO/cfg_lcbench_189873.yaml new file mode 100644 index 000000000..405088e11 --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_lcbench_189873.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/lcbench/189873/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189873' + budget_type: null + metric: + - val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - val_accuracy + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_lcbench_189906.yaml b/carps/configs/problem/YAHPO/SO/cfg_lcbench_189906.yaml new file mode 100644 index 000000000..faac611a8 --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_lcbench_189906.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/lcbench/189906/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189906' + budget_type: null + metric: + - val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - val_accuracy + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_nb301_CIFAR10.yaml b/carps/configs/problem/YAHPO/SO/cfg_nb301_CIFAR10.yaml new file mode 100644 index 000000000..a8cbabbdd --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_nb301_CIFAR10.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/nb301/CIFAR10/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: nb301 + instance: CIFAR10 + budget_type: null + metric: + - val_accuracy +task: + n_trials: 250 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - val_accuracy + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 34 + search_space_n_categoricals: 34 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_rbv2_glmnet_375.yaml b/carps/configs/problem/YAHPO/SO/cfg_rbv2_glmnet_375.yaml new file mode 100644 index 000000000..e6baa9d90 --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_rbv2_glmnet_375.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/rbv2_glmnet/375/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '375' + budget_type: null + metric: + - acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_rbv2_glmnet_458.yaml b/carps/configs/problem/YAHPO/SO/cfg_rbv2_glmnet_458.yaml new file mode 100644 index 000000000..3171c504a --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_rbv2_glmnet_458.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/rbv2_glmnet/458/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '458' + budget_type: null + metric: + - acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_rbv2_ranger_16.yaml b/carps/configs/problem/YAHPO/SO/cfg_rbv2_ranger_16.yaml new file mode 100644 index 000000000..d48a42278 --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_rbv2_ranger_16.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/rbv2_ranger/16/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '16' + budget_type: null + metric: + - acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_rbv2_ranger_42.yaml b/carps/configs/problem/YAHPO/SO/cfg_rbv2_ranger_42.yaml new file mode 100644 index 000000000..bd5782faf --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_rbv2_ranger_42.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/rbv2_ranger/42/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '42' + budget_type: null + metric: + - acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_rbv2_rpart_14.yaml b/carps/configs/problem/YAHPO/SO/cfg_rbv2_rpart_14.yaml new file mode 100644 index 000000000..bc873f6c5 --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_rbv2_rpart_14.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/rbv2_rpart/14/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '14' + budget_type: null + metric: + - acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_rbv2_rpart_40499.yaml b/carps/configs/problem/YAHPO/SO/cfg_rbv2_rpart_40499.yaml new file mode 100644 index 000000000..7272cf6c7 --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_rbv2_rpart_40499.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/rbv2_rpart/40499/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40499' + budget_type: null + metric: + - acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1053.yaml b/carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1053.yaml new file mode 100644 index 000000000..4ff1403dc --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1053.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/rbv2_super/1053/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1053' + budget_type: null + metric: + - acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1063.yaml b/carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1063.yaml new file mode 100644 index 000000000..9f234e556 --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1063.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/rbv2_super/1063/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1063' + budget_type: null + metric: + - acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1457.yaml b/carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1457.yaml new file mode 100644 index 000000000..3c0c815cd --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1457.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/rbv2_super/1457/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1457' + budget_type: null + metric: + - acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1468.yaml b/carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1468.yaml new file mode 100644 index 000000000..e5576bae7 --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1468.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/rbv2_super/1468/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1468' + budget_type: null + metric: + - acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1479.yaml b/carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1479.yaml new file mode 100644 index 000000000..09aac644b --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_rbv2_super_1479.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/rbv2_super/1479/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1479' + budget_type: null + metric: + - acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_rbv2_super_15.yaml b/carps/configs/problem/YAHPO/SO/cfg_rbv2_super_15.yaml new file mode 100644 index 000000000..304e95d4e --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_rbv2_super_15.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/rbv2_super/15/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '15' + budget_type: null + metric: + - acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_rbv2_xgboost_12.yaml b/carps/configs/problem/YAHPO/SO/cfg_rbv2_xgboost_12.yaml new file mode 100644 index 000000000..5780929c0 --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_rbv2_xgboost_12.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/rbv2_xgboost/12/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '12' + budget_type: null + metric: + - acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_rbv2_xgboost_1501.yaml b/carps/configs/problem/YAHPO/SO/cfg_rbv2_xgboost_1501.yaml new file mode 100644 index 000000000..3cd4fbe1d --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_rbv2_xgboost_1501.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/rbv2_xgboost/1501/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1501' + budget_type: null + metric: + - acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_rbv2_xgboost_16.yaml b/carps/configs/problem/YAHPO/SO/cfg_rbv2_xgboost_16.yaml new file mode 100644 index 000000000..bdbb856b1 --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_rbv2_xgboost_16.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/rbv2_xgboost/16/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '16' + budget_type: null + metric: + - acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/SO/cfg_rbv2_xgboost_40499.yaml b/carps/configs/problem/YAHPO/SO/cfg_rbv2_xgboost_40499.yaml new file mode 100644 index 000000000..47a372b78 --- /dev/null +++ b/carps/configs/problem/YAHPO/SO/cfg_rbv2_xgboost_40499.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/so/rbv2_xgboost/40499/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40499' + budget_type: null + metric: + - acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_fcnet_fcnet_naval_propulsion.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_fcnet_fcnet_naval_propulsion.yaml new file mode 100644 index 000000000..3e2f103cc --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_fcnet_fcnet_naval_propulsion.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/fcnet/fcnet_naval_propulsion/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: fcnet + instance: fcnet_naval_propulsion + budget_type: null + metric: valid_mse +task: + n_trials: 147 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 10 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_fcnet_fcnet_parkinsons_telemonitoring.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_fcnet_fcnet_parkinsons_telemonitoring.yaml new file mode 100644 index 000000000..f38100645 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_fcnet_fcnet_parkinsons_telemonitoring.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/fcnet/fcnet_parkinsons_telemonitoring/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: fcnet + instance: fcnet_parkinsons_telemonitoring + budget_type: null + metric: valid_mse +task: + n_trials: 147 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 10 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_fcnet_fcnet_protein_structure.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_fcnet_fcnet_protein_structure.yaml new file mode 100644 index 000000000..f80599847 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_fcnet_fcnet_protein_structure.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/fcnet/fcnet_protein_structure/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: fcnet + instance: fcnet_protein_structure + budget_type: null + metric: valid_mse +task: + n_trials: 147 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 10 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_fcnet_fcnet_slice_localization.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_fcnet_fcnet_slice_localization.yaml new file mode 100644 index 000000000..6661c51f6 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_fcnet_fcnet_slice_localization.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/fcnet/fcnet_slice_localization/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: fcnet + instance: fcnet_slice_localization + budget_type: null + metric: valid_mse +task: + n_trials: 147 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 10 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_glmnet_1067.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_glmnet_1067.yaml new file mode 100644 index 000000000..050364b31 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_glmnet_1067.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_glmnet/1067/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_glmnet + instance: '1067' + budget_type: null + metric: f1 +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_glmnet_1489.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_glmnet_1489.yaml new file mode 100644 index 000000000..ac982208b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_glmnet_1489.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_glmnet/1489/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_glmnet + instance: '1489' + budget_type: null + metric: f1 +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_glmnet_40981.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_glmnet_40981.yaml new file mode 100644 index 000000000..76e75c3d8 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_glmnet_40981.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_glmnet/40981/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_glmnet + instance: '40981' + budget_type: null + metric: f1 +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_glmnet_41146.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_glmnet_41146.yaml new file mode 100644 index 000000000..b87eaaf28 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_glmnet_41146.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_glmnet/41146/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_glmnet + instance: '41146' + budget_type: null + metric: f1 +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_ranger_1067.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_ranger_1067.yaml new file mode 100644 index 000000000..aec31a337 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_ranger_1067.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_ranger/1067/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_ranger + instance: '1067' + budget_type: null + metric: f1 +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_ranger_1489.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_ranger_1489.yaml new file mode 100644 index 000000000..63a568e1a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_ranger_1489.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_ranger/1489/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_ranger + instance: '1489' + budget_type: null + metric: f1 +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_ranger_40981.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_ranger_40981.yaml new file mode 100644 index 000000000..01d1700af --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_ranger_40981.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_ranger/40981/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_ranger + instance: '40981' + budget_type: null + metric: f1 +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_ranger_41146.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_ranger_41146.yaml new file mode 100644 index 000000000..dc0d10417 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_ranger_41146.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_ranger/41146/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_ranger + instance: '41146' + budget_type: null + metric: f1 +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_rpart_1067.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_rpart_1067.yaml new file mode 100644 index 000000000..a91428965 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_rpart_1067.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_rpart/1067/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_rpart + instance: '1067' + budget_type: null + metric: f1 +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_rpart_1489.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_rpart_1489.yaml new file mode 100644 index 000000000..30bb5e783 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_rpart_1489.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_rpart/1489/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_rpart + instance: '1489' + budget_type: null + metric: f1 +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_rpart_40981.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_rpart_40981.yaml new file mode 100644 index 000000000..77c82a849 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_rpart_40981.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_rpart/40981/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_rpart + instance: '40981' + budget_type: null + metric: f1 +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_rpart_41146.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_rpart_41146.yaml new file mode 100644 index 000000000..4aabf5f4a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_rpart_41146.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_rpart/41146/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_rpart + instance: '41146' + budget_type: null + metric: f1 +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_super_1067.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_super_1067.yaml new file mode 100644 index 000000000..3ab4b93c4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_super_1067.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_super/1067/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_super + instance: '1067' + budget_type: null + metric: f1 +task: + n_trials: 232 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 28 + search_space_n_categoricals: 5 + search_space_n_ordinals: 0 + search_space_n_integers: 8 + search_space_n_floats: 15 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_super_1489.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_super_1489.yaml new file mode 100644 index 000000000..f1674946e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_super_1489.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_super/1489/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_super + instance: '1489' + budget_type: null + metric: f1 +task: + n_trials: 232 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 28 + search_space_n_categoricals: 5 + search_space_n_ordinals: 0 + search_space_n_integers: 8 + search_space_n_floats: 15 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_super_40981.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_super_40981.yaml new file mode 100644 index 000000000..a321746df --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_super_40981.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_super/40981/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_super + instance: '40981' + budget_type: null + metric: f1 +task: + n_trials: 232 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 28 + search_space_n_categoricals: 5 + search_space_n_ordinals: 0 + search_space_n_integers: 8 + search_space_n_floats: 15 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_super_41146.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_super_41146.yaml new file mode 100644 index 000000000..914af490e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_super_41146.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_super/41146/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_super + instance: '41146' + budget_type: null + metric: f1 +task: + n_trials: 232 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 28 + search_space_n_categoricals: 5 + search_space_n_ordinals: 0 + search_space_n_integers: 8 + search_space_n_floats: 15 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_xgboost_1067.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_xgboost_1067.yaml new file mode 100644 index 000000000..e31dac6da --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_xgboost_1067.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_xgboost/1067/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_xgboost + instance: '1067' + budget_type: null + metric: f1 +task: + n_trials: 165 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 13 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_xgboost_1489.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_xgboost_1489.yaml new file mode 100644 index 000000000..d71db0663 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_xgboost_1489.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_xgboost/1489/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_xgboost + instance: '1489' + budget_type: null + metric: f1 +task: + n_trials: 165 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 13 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_xgboost_40981.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_xgboost_40981.yaml new file mode 100644 index 000000000..6f746a5d6 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_xgboost_40981.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_xgboost/40981/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_xgboost + instance: '40981' + budget_type: null + metric: f1 +task: + n_trials: 165 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 13 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_iaml_xgboost_41146.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_xgboost_41146.yaml new file mode 100644 index 000000000..6533a295a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_iaml_xgboost_41146.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_xgboost/41146/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_xgboost + instance: '41146' + budget_type: null + metric: f1 +task: + n_trials: 165 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 13 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_126025.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_126025.yaml new file mode 100644 index 000000000..334c7bde8 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_126025.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/126025/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '126025' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_126026.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_126026.yaml new file mode 100644 index 000000000..75da217f9 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_126026.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/126026/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '126026' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_126029.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_126029.yaml new file mode 100644 index 000000000..da6d0b1b2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_126029.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/126029/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '126029' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_146212.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_146212.yaml new file mode 100644 index 000000000..af7edd908 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_146212.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/146212/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '146212' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167104.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167104.yaml new file mode 100644 index 000000000..453acaeb4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167104.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167104/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167104' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167149.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167149.yaml new file mode 100644 index 000000000..e5faa0921 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167149.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167149/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167149' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167152.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167152.yaml new file mode 100644 index 000000000..bacddac77 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167152.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167152/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167152' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167161.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167161.yaml new file mode 100644 index 000000000..2be7fb240 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167161.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167161/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167161' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167168.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167168.yaml new file mode 100644 index 000000000..f56a5934c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167168.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167168/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167168' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167181.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167181.yaml new file mode 100644 index 000000000..cf0e84e1b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167181.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167181/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167181' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167184.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167184.yaml new file mode 100644 index 000000000..567dc416d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167184.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167184/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167184' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167185.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167185.yaml new file mode 100644 index 000000000..30b03f14c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167185.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167185/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167185' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167190.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167190.yaml new file mode 100644 index 000000000..15549949e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167190.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167190/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167190' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167200.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167200.yaml new file mode 100644 index 000000000..c88078e95 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167200.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167200/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167200' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167201.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167201.yaml new file mode 100644 index 000000000..3cf5a87c7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_167201.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167201/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167201' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168329.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168329.yaml new file mode 100644 index 000000000..75c91dd6e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168329.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/168329/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '168329' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168330.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168330.yaml new file mode 100644 index 000000000..e1387f728 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168330.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/168330/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '168330' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168331.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168331.yaml new file mode 100644 index 000000000..808d00016 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168331.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/168331/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '168331' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168335.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168335.yaml new file mode 100644 index 000000000..17f2913cf --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168335.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/168335/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '168335' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168868.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168868.yaml new file mode 100644 index 000000000..b90e78202 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168868.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/168868/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '168868' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168908.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168908.yaml new file mode 100644 index 000000000..c8633e8ec --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168908.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/168908/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '168908' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168910.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168910.yaml new file mode 100644 index 000000000..9400aa2a5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_168910.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/168910/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '168910' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189354.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189354.yaml new file mode 100644 index 000000000..73fedf147 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189354.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/189354/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189354' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189862.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189862.yaml new file mode 100644 index 000000000..0a51cd138 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189862.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/189862/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189862' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189865.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189865.yaml new file mode 100644 index 000000000..5daff366e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189865.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/189865/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189865' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189866.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189866.yaml new file mode 100644 index 000000000..34af42f7b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189866.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/189866/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189866' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189873.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189873.yaml new file mode 100644 index 000000000..371701670 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189873.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/189873/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189873' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189905.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189905.yaml new file mode 100644 index 000000000..f0ab9ea62 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189905.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/189905/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189905' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189906.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189906.yaml new file mode 100644 index 000000000..24336d960 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189906.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/189906/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189906' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189908.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189908.yaml new file mode 100644 index 000000000..6cb11ee20 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189908.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/189908/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189908' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189909.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189909.yaml new file mode 100644 index 000000000..603927040 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_189909.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/189909/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189909' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_34539.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_34539.yaml new file mode 100644 index 000000000..ed92719aa --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_34539.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/34539/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '34539' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_3945.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_3945.yaml new file mode 100644 index 000000000..dbe67048f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_3945.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/3945/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '3945' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_7593.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_7593.yaml new file mode 100644 index 000000000..b538ae24b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_lcbench_7593.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/7593/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '7593' + budget_type: null + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_nb301_CIFAR10.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_nb301_CIFAR10.yaml new file mode 100644 index 000000000..d2b96c239 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_nb301_CIFAR10.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/nb301/CIFAR10/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: nb301 + instance: CIFAR10 + budget_type: null + metric: val_accuracy +task: + n_trials: 254 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 34 + search_space_n_categoricals: 34 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1040.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1040.yaml new file mode 100644 index 000000000..393aa60ab --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1040.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1040/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1040' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1049.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1049.yaml new file mode 100644 index 000000000..123fe0dcd --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1049.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1049/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1049' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1050.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1050.yaml new file mode 100644 index 000000000..e04e12757 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1050.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1050/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1050' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1053.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1053.yaml new file mode 100644 index 000000000..5cc48be22 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1053.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1053/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1053' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1056.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1056.yaml new file mode 100644 index 000000000..6b22047be --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1056.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1056/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1056' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1063.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1063.yaml new file mode 100644 index 000000000..1ad79ae9b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1063.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1063/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1063' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1067.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1067.yaml new file mode 100644 index 000000000..b391c0faf --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1067.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1067/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1067' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1068.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1068.yaml new file mode 100644 index 000000000..5d27ee3e4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1068.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1068/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1068' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_11.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_11.yaml new file mode 100644 index 000000000..c556e0854 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_11.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/11/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '11' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1111.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1111.yaml new file mode 100644 index 000000000..35247b4d0 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1111.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1111/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1111' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_12.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_12.yaml new file mode 100644 index 000000000..ed221a47d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_12.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/12/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '12' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1220.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1220.yaml new file mode 100644 index 000000000..283934f69 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1220.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1220/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1220' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_14.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_14.yaml new file mode 100644 index 000000000..7604f2544 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_14.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/14/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '14' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1457.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1457.yaml new file mode 100644 index 000000000..a799fc88f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1457.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1457/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1457' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1461.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1461.yaml new file mode 100644 index 000000000..4cd1169f5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1461.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1461/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1461' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1462.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1462.yaml new file mode 100644 index 000000000..3b75542fe --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1462.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1462/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1462' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1464.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1464.yaml new file mode 100644 index 000000000..8bbcfcf03 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1464.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1464/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1464' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1468.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1468.yaml new file mode 100644 index 000000000..5b6a583ef --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1468.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1468/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1468' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1475.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1475.yaml new file mode 100644 index 000000000..274229f93 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1475.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1475/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1475' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1476.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1476.yaml new file mode 100644 index 000000000..21a06a269 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1476.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1476/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1476' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1478.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1478.yaml new file mode 100644 index 000000000..a165860d3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1478.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1478/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1478' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1479.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1479.yaml new file mode 100644 index 000000000..bc38e9b12 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1479.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1479/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1479' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1480.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1480.yaml new file mode 100644 index 000000000..ed00144dc --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1480.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1480/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1480' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1485.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1485.yaml new file mode 100644 index 000000000..d58c3e112 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1485.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1485/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1485' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1486.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1486.yaml new file mode 100644 index 000000000..ef85ef0c6 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1486.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1486/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1486' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1487.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1487.yaml new file mode 100644 index 000000000..c6b342321 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1487.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1487/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1487' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1489.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1489.yaml new file mode 100644 index 000000000..e0c09f12f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1489.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1489/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1489' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1493.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1493.yaml new file mode 100644 index 000000000..4a619d93f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1493.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1493/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1493' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1494.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1494.yaml new file mode 100644 index 000000000..52a1ffed1 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1494.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1494/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1494' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1497.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1497.yaml new file mode 100644 index 000000000..d24a711ec --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1497.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1497/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1497' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_15.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_15.yaml new file mode 100644 index 000000000..677fa62ac --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_15.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/15/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '15' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1501.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1501.yaml new file mode 100644 index 000000000..a78d80e59 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1501.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1501/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1501' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_151.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_151.yaml new file mode 100644 index 000000000..1ddb0930d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_151.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/151/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '151' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1510.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1510.yaml new file mode 100644 index 000000000..d9b6a00cb --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1510.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1510/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1510' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1515.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1515.yaml new file mode 100644 index 000000000..9c8f56749 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1515.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1515/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1515' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1590.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1590.yaml new file mode 100644 index 000000000..ac41bf07b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_1590.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1590/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1590' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_16.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_16.yaml new file mode 100644 index 000000000..4238cd553 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_16.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/16/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '16' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_18.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_18.yaml new file mode 100644 index 000000000..aa8c7e891 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_18.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/18/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '18' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_181.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_181.yaml new file mode 100644 index 000000000..0f1538a86 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_181.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/181/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '181' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_182.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_182.yaml new file mode 100644 index 000000000..b8ff6c3af --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_182.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/182/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '182' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_188.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_188.yaml new file mode 100644 index 000000000..3b26a32dd --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_188.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/188/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '188' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_22.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_22.yaml new file mode 100644 index 000000000..2b8c092a6 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_22.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/22/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '22' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_23.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_23.yaml new file mode 100644 index 000000000..f680d8def --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_23.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/23/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '23' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_23381.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_23381.yaml new file mode 100644 index 000000000..f70a52dec --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_23381.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/23381/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '23381' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_23512.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_23512.yaml new file mode 100644 index 000000000..99ae4aa6d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_23512.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/23512/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '23512' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_23517.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_23517.yaml new file mode 100644 index 000000000..cbbedfb80 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_23517.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/23517/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '23517' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_24.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_24.yaml new file mode 100644 index 000000000..12f7f3dec --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_24.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/24/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '24' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_28.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_28.yaml new file mode 100644 index 000000000..4273f677e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_28.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/28/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '28' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_29.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_29.yaml new file mode 100644 index 000000000..e2e704947 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_29.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/29/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '29' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_3.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_3.yaml new file mode 100644 index 000000000..a56a01c7c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_3.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/3/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '3' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_300.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_300.yaml new file mode 100644 index 000000000..c48adb604 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_300.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/300/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '300' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_307.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_307.yaml new file mode 100644 index 000000000..61b136391 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_307.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/307/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '307' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_31.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_31.yaml new file mode 100644 index 000000000..f601079f5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_31.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/31/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '31' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_312.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_312.yaml new file mode 100644 index 000000000..eb558764e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_312.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/312/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '312' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_32.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_32.yaml new file mode 100644 index 000000000..8eea6238c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_32.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/32/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '32' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_334.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_334.yaml new file mode 100644 index 000000000..5c229527a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_334.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/334/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '334' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_37.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_37.yaml new file mode 100644 index 000000000..52a04977d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_37.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/37/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '37' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_375.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_375.yaml new file mode 100644 index 000000000..c0647fa76 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_375.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/375/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '375' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_377.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_377.yaml new file mode 100644 index 000000000..07b918290 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_377.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/377/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '377' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_38.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_38.yaml new file mode 100644 index 000000000..6a9da552d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_38.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/38/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '38' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40496.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40496.yaml new file mode 100644 index 000000000..7fb6e3cf8 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40496.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40496/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40496' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40498.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40498.yaml new file mode 100644 index 000000000..6ed625755 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40498.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40498/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40498' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40499.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40499.yaml new file mode 100644 index 000000000..ac2fc9cc4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40499.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40499/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40499' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40536.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40536.yaml new file mode 100644 index 000000000..36a812d76 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40536.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40536/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40536' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40668.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40668.yaml new file mode 100644 index 000000000..2bfa90dc1 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40668.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40668/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40668' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40670.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40670.yaml new file mode 100644 index 000000000..c0a4db394 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40670.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40670/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40670' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40685.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40685.yaml new file mode 100644 index 000000000..5ab55b567 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40685.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40685/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40685' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40701.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40701.yaml new file mode 100644 index 000000000..046051b64 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40701.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40701/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40701' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40900.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40900.yaml new file mode 100644 index 000000000..29900cc4e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40900.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40900/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40900' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40923.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40923.yaml new file mode 100644 index 000000000..62d69ab70 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40923.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40923/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40923' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40927.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40927.yaml new file mode 100644 index 000000000..09000b428 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40927.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40927/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40927' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40966.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40966.yaml new file mode 100644 index 000000000..48d48126a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40966.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40966/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40966' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40975.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40975.yaml new file mode 100644 index 000000000..3c9d633f5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40975.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40975/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40975' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40978.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40978.yaml new file mode 100644 index 000000000..5c91e29b4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40978.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40978/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40978' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40979.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40979.yaml new file mode 100644 index 000000000..2e8c2404d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40979.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40979/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40979' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40981.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40981.yaml new file mode 100644 index 000000000..f2a1289f1 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40981.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40981/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40981' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40982.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40982.yaml new file mode 100644 index 000000000..50395944b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40982.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40982/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40982' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40983.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40983.yaml new file mode 100644 index 000000000..62bf6a084 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40983.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40983/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40983' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40984.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40984.yaml new file mode 100644 index 000000000..edbd860e8 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40984.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40984/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40984' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40994.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40994.yaml new file mode 100644 index 000000000..50c69d56d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40994.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40994/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40994' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40996.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40996.yaml new file mode 100644 index 000000000..16a842939 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_40996.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40996/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40996' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41027.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41027.yaml new file mode 100644 index 000000000..7b4e6f56f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41027.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41027/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41027' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41138.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41138.yaml new file mode 100644 index 000000000..cb688d7ae --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41138.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41138/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41138' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41142.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41142.yaml new file mode 100644 index 000000000..f46b15a3b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41142.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41142/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41142' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41143.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41143.yaml new file mode 100644 index 000000000..048b07f11 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41143.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41143/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41143' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41146.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41146.yaml new file mode 100644 index 000000000..be05b9880 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41146.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41146/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41146' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41150.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41150.yaml new file mode 100644 index 000000000..0728a9f08 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41150.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41150/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41150' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41156.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41156.yaml new file mode 100644 index 000000000..c2cbc612a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41156.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41156/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41156' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41157.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41157.yaml new file mode 100644 index 000000000..61f4475bf --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41157.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41157/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41157' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41159.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41159.yaml new file mode 100644 index 000000000..4c3385e9a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41159.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41159/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41159' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41161.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41161.yaml new file mode 100644 index 000000000..39a79c6a6 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41161.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41161/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41161' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41162.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41162.yaml new file mode 100644 index 000000000..c74ca0524 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41162.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41162/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41162' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41163.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41163.yaml new file mode 100644 index 000000000..7aac76770 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41163.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41163/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41163' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41164.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41164.yaml new file mode 100644 index 000000000..9aae8e6e3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41164.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41164/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41164' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41165.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41165.yaml new file mode 100644 index 000000000..0b5f90abf --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41165.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41165/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41165' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41166.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41166.yaml new file mode 100644 index 000000000..41977dc1f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41166.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41166/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41166' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41168.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41168.yaml new file mode 100644 index 000000000..2d83b2c5e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41168.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41168/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41168' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41169.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41169.yaml new file mode 100644 index 000000000..07bf249f2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41169.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41169/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41169' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41212.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41212.yaml new file mode 100644 index 000000000..25e7d9cc5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41212.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41212/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41212' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41216.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41216.yaml new file mode 100644 index 000000000..561b215f9 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41216.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41216/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41216' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41278.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41278.yaml new file mode 100644 index 000000000..e02a38d39 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_41278.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41278/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41278' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4134.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4134.yaml new file mode 100644 index 000000000..d153cb016 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4134.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/4134/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '4134' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4154.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4154.yaml new file mode 100644 index 000000000..59efaa3ba --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4154.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/4154/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '4154' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_42.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_42.yaml new file mode 100644 index 000000000..f6c730f6e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_42.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/42/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '42' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_44.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_44.yaml new file mode 100644 index 000000000..f6f874929 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_44.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/44/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '44' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4534.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4534.yaml new file mode 100644 index 000000000..05493087f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4534.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/4534/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '4534' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4538.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4538.yaml new file mode 100644 index 000000000..a82fe4f45 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4538.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/4538/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '4538' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4541.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4541.yaml new file mode 100644 index 000000000..135a2c55f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_4541.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/4541/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '4541' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_458.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_458.yaml new file mode 100644 index 000000000..a3b857c49 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_458.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/458/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '458' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_46.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_46.yaml new file mode 100644 index 000000000..97bf3b8d9 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_46.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/46/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '46' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_469.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_469.yaml new file mode 100644 index 000000000..24d141821 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_469.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/469/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '469' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_470.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_470.yaml new file mode 100644 index 000000000..cdf9af7b3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_470.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/470/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '470' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_50.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_50.yaml new file mode 100644 index 000000000..fc3ef2af8 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_50.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/50/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '50' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_54.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_54.yaml new file mode 100644 index 000000000..f64fc1937 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_54.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/54/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '54' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_554.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_554.yaml new file mode 100644 index 000000000..6eee3e4ea --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_554.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/554/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '554' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_6.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_6.yaml new file mode 100644 index 000000000..415559ffa --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_6.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/6/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '6' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_60.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_60.yaml new file mode 100644 index 000000000..a507abdb7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_60.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/60/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '60' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_6332.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_6332.yaml new file mode 100644 index 000000000..8144e4150 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_aknn_6332.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/6332/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '6332' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1040.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1040.yaml new file mode 100644 index 000000000..f37f9d6c4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1040.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1040/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1040' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1049.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1049.yaml new file mode 100644 index 000000000..edadf97a7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1049.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1049/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1049' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1050.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1050.yaml new file mode 100644 index 000000000..b11ee8c87 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1050.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1050/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1050' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1053.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1053.yaml new file mode 100644 index 000000000..a9f2088e2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1053.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1053/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1053' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1056.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1056.yaml new file mode 100644 index 000000000..d4f533f0e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1056.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1056/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1056' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1063.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1063.yaml new file mode 100644 index 000000000..e557c3d48 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1063.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1063/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1063' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1067.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1067.yaml new file mode 100644 index 000000000..4b9bb89cf --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1067.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1067/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1067' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1068.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1068.yaml new file mode 100644 index 000000000..0f3ada0ad --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1068.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1068/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1068' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_11.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_11.yaml new file mode 100644 index 000000000..7f6957362 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_11.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/11/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '11' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1111.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1111.yaml new file mode 100644 index 000000000..f76b0839f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1111.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1111/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1111' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_12.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_12.yaml new file mode 100644 index 000000000..db17228e3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_12.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/12/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '12' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1220.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1220.yaml new file mode 100644 index 000000000..5224cda51 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1220.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1220/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1220' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_14.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_14.yaml new file mode 100644 index 000000000..484b5404b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_14.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/14/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '14' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1457.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1457.yaml new file mode 100644 index 000000000..baa37a73f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1457.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1457/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1457' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1461.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1461.yaml new file mode 100644 index 000000000..8be051596 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1461.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1461/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1461' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1462.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1462.yaml new file mode 100644 index 000000000..dabbf1cf3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1462.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1462/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1462' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1464.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1464.yaml new file mode 100644 index 000000000..2e45fba59 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1464.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1464/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1464' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1468.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1468.yaml new file mode 100644 index 000000000..0e1a349b9 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1468.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1468/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1468' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1475.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1475.yaml new file mode 100644 index 000000000..53b30ecb8 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1475.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1475/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1475' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1476.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1476.yaml new file mode 100644 index 000000000..e195be24a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1476.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1476/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1476' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1478.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1478.yaml new file mode 100644 index 000000000..3633ead30 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1478.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1478/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1478' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1479.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1479.yaml new file mode 100644 index 000000000..eba16016e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1479.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1479/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1479' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1480.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1480.yaml new file mode 100644 index 000000000..84ec76825 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1480.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1480/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1480' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1485.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1485.yaml new file mode 100644 index 000000000..08b4234ad --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1485.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1485/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1485' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1486.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1486.yaml new file mode 100644 index 000000000..14b822118 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1486.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1486/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1486' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1487.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1487.yaml new file mode 100644 index 000000000..159965d85 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1487.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1487/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1487' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1489.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1489.yaml new file mode 100644 index 000000000..868754267 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1489.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1489/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1489' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1493.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1493.yaml new file mode 100644 index 000000000..5b1fa4e2d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1493.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1493/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1493' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1494.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1494.yaml new file mode 100644 index 000000000..ba8870cfd --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1494.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1494/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1494' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1497.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1497.yaml new file mode 100644 index 000000000..6cba4483b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1497.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1497/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1497' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_15.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_15.yaml new file mode 100644 index 000000000..4ca2a1814 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_15.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/15/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '15' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1501.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1501.yaml new file mode 100644 index 000000000..b02dda120 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1501.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1501/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1501' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_151.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_151.yaml new file mode 100644 index 000000000..a26205c6f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_151.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/151/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '151' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1510.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1510.yaml new file mode 100644 index 000000000..e82c1ad54 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1510.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1510/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1510' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1515.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1515.yaml new file mode 100644 index 000000000..a8c7333eb --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1515.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1515/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1515' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1590.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1590.yaml new file mode 100644 index 000000000..22bcaf104 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_1590.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1590/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1590' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_16.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_16.yaml new file mode 100644 index 000000000..237029813 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_16.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/16/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '16' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_18.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_18.yaml new file mode 100644 index 000000000..51308cd8b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_18.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/18/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '18' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_181.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_181.yaml new file mode 100644 index 000000000..92cb059a5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_181.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/181/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '181' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_182.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_182.yaml new file mode 100644 index 000000000..5b1d39fe7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_182.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/182/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '182' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_188.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_188.yaml new file mode 100644 index 000000000..a9a48691c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_188.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/188/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '188' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_22.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_22.yaml new file mode 100644 index 000000000..4a40bcb77 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_22.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/22/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '22' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_23.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_23.yaml new file mode 100644 index 000000000..90fa6be0b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_23.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/23/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '23' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_23381.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_23381.yaml new file mode 100644 index 000000000..0e75ca66f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_23381.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/23381/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '23381' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_23512.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_23512.yaml new file mode 100644 index 000000000..7ccae0319 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_23512.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/23512/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '23512' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_23517.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_23517.yaml new file mode 100644 index 000000000..ea1658545 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_23517.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/23517/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '23517' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_24.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_24.yaml new file mode 100644 index 000000000..f516827dc --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_24.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/24/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '24' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_28.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_28.yaml new file mode 100644 index 000000000..18ce4f07e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_28.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/28/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '28' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_29.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_29.yaml new file mode 100644 index 000000000..48c0e91ca --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_29.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/29/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '29' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_3.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_3.yaml new file mode 100644 index 000000000..8c0c70da5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_3.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/3/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '3' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_300.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_300.yaml new file mode 100644 index 000000000..0254593d4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_300.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/300/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '300' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_307.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_307.yaml new file mode 100644 index 000000000..76f6e92b9 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_307.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/307/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '307' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_31.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_31.yaml new file mode 100644 index 000000000..35ccba88b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_31.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/31/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '31' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_312.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_312.yaml new file mode 100644 index 000000000..2e9a19382 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_312.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/312/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '312' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_32.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_32.yaml new file mode 100644 index 000000000..95e08840e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_32.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/32/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '32' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_334.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_334.yaml new file mode 100644 index 000000000..9a7ad70a7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_334.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/334/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '334' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_37.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_37.yaml new file mode 100644 index 000000000..308eaa678 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_37.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/37/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '37' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_375.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_375.yaml new file mode 100644 index 000000000..fe869799f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_375.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/375/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '375' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_377.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_377.yaml new file mode 100644 index 000000000..16bf06d9d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_377.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/377/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '377' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_38.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_38.yaml new file mode 100644 index 000000000..45b11db22 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_38.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/38/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '38' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40496.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40496.yaml new file mode 100644 index 000000000..fa688cf29 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40496.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40496/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40496' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40498.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40498.yaml new file mode 100644 index 000000000..c0e80cb8e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40498.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40498/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40498' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40499.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40499.yaml new file mode 100644 index 000000000..fe7dcb556 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40499.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40499/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40499' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40536.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40536.yaml new file mode 100644 index 000000000..3541e8bc4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40536.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40536/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40536' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40668.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40668.yaml new file mode 100644 index 000000000..3679c8d14 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40668.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40668/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40668' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40670.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40670.yaml new file mode 100644 index 000000000..2f9a5a12c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40670.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40670/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40670' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40685.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40685.yaml new file mode 100644 index 000000000..2bf08863c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40685.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40685/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40685' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40701.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40701.yaml new file mode 100644 index 000000000..3f0d32b0c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40701.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40701/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40701' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40900.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40900.yaml new file mode 100644 index 000000000..ae4cf1a20 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40900.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40900/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40900' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40966.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40966.yaml new file mode 100644 index 000000000..287ce3e09 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40966.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40966/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40966' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40975.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40975.yaml new file mode 100644 index 000000000..186445209 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40975.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40975/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40975' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40978.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40978.yaml new file mode 100644 index 000000000..58666d8ac --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40978.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40978/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40978' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40979.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40979.yaml new file mode 100644 index 000000000..7c4ce58cd --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40979.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40979/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40979' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40981.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40981.yaml new file mode 100644 index 000000000..f559c9938 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40981.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40981/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40981' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40982.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40982.yaml new file mode 100644 index 000000000..7efbef8fb --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40982.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40982/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40982' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40983.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40983.yaml new file mode 100644 index 000000000..110a65646 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40983.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40983/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40983' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40984.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40984.yaml new file mode 100644 index 000000000..7ce56dfc1 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40984.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40984/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40984' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40994.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40994.yaml new file mode 100644 index 000000000..6c787a130 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_40994.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40994/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40994' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41027.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41027.yaml new file mode 100644 index 000000000..f35d97620 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41027.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41027/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41027' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41138.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41138.yaml new file mode 100644 index 000000000..407084a9b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41138.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41138/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41138' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41142.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41142.yaml new file mode 100644 index 000000000..7409c526f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41142.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41142/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41142' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41143.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41143.yaml new file mode 100644 index 000000000..956546943 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41143.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41143/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41143' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41146.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41146.yaml new file mode 100644 index 000000000..a72cda58f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41146.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41146/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41146' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41150.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41150.yaml new file mode 100644 index 000000000..2e9dcc012 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41150.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41150/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41150' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41156.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41156.yaml new file mode 100644 index 000000000..8551589bb --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41156.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41156/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41156' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41157.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41157.yaml new file mode 100644 index 000000000..8f1720334 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41157.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41157/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41157' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41159.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41159.yaml new file mode 100644 index 000000000..eda2bd374 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41159.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41159/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41159' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41161.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41161.yaml new file mode 100644 index 000000000..49d335709 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41161.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41161/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41161' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41162.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41162.yaml new file mode 100644 index 000000000..a7ae3622f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41162.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41162/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41162' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41163.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41163.yaml new file mode 100644 index 000000000..d296d30c0 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41163.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41163/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41163' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41164.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41164.yaml new file mode 100644 index 000000000..fede996ec --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41164.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41164/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41164' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41166.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41166.yaml new file mode 100644 index 000000000..e6acf1e66 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41166.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41166/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41166' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41168.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41168.yaml new file mode 100644 index 000000000..ee2886775 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41168.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41168/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41168' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41169.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41169.yaml new file mode 100644 index 000000000..54a1eaae7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41169.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41169/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41169' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41212.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41212.yaml new file mode 100644 index 000000000..10a9cdd93 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41212.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41212/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41212' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41216.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41216.yaml new file mode 100644 index 000000000..05f18f7af --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41216.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41216/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41216' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41278.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41278.yaml new file mode 100644 index 000000000..500265378 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_41278.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41278/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41278' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4134.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4134.yaml new file mode 100644 index 000000000..a24c7820a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4134.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/4134/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '4134' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4135.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4135.yaml new file mode 100644 index 000000000..0c5acb849 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4135.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/4135/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '4135' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4154.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4154.yaml new file mode 100644 index 000000000..a5c68a1a8 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4154.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/4154/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '4154' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_42.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_42.yaml new file mode 100644 index 000000000..b32838171 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_42.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/42/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '42' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_44.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_44.yaml new file mode 100644 index 000000000..beb5d93eb --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_44.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/44/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '44' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4534.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4534.yaml new file mode 100644 index 000000000..73926f61a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4534.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/4534/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '4534' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4538.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4538.yaml new file mode 100644 index 000000000..aa507157d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4538.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/4538/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '4538' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4541.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4541.yaml new file mode 100644 index 000000000..8c259c9b1 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_4541.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/4541/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '4541' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_458.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_458.yaml new file mode 100644 index 000000000..c0f062b8a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_458.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/458/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '458' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_46.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_46.yaml new file mode 100644 index 000000000..94aa45556 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_46.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/46/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '46' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_469.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_469.yaml new file mode 100644 index 000000000..475a466a4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_469.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/469/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '469' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_470.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_470.yaml new file mode 100644 index 000000000..13987b500 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_470.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/470/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '470' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_50.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_50.yaml new file mode 100644 index 000000000..9d8839684 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_50.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/50/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '50' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_54.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_54.yaml new file mode 100644 index 000000000..a1f0d1f47 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_54.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/54/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '54' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_554.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_554.yaml new file mode 100644 index 000000000..692d63ad8 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_554.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/554/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '554' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_6.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_6.yaml new file mode 100644 index 000000000..47208ba57 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_6.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/6/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '6' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_60.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_60.yaml new file mode 100644 index 000000000..69dc6f1e8 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_60.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/60/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '60' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_6332.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_6332.yaml new file mode 100644 index 000000000..5551be7b2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_glmnet_6332.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/6332/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '6332' + budget_type: null + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1040.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1040.yaml new file mode 100644 index 000000000..95afa60f7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1040.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1040/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1040' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1049.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1049.yaml new file mode 100644 index 000000000..2bdaa5eb6 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1049.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1049/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1049' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1050.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1050.yaml new file mode 100644 index 000000000..64a2137b1 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1050.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1050/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1050' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1053.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1053.yaml new file mode 100644 index 000000000..02ff4e2af --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1053.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1053/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1053' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1056.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1056.yaml new file mode 100644 index 000000000..c27ee3c0a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1056.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1056/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1056' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1063.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1063.yaml new file mode 100644 index 000000000..2a150804a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1063.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1063/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1063' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1067.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1067.yaml new file mode 100644 index 000000000..91654fa18 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1067.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1067/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1067' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1068.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1068.yaml new file mode 100644 index 000000000..4fddfa1ad --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1068.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1068/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1068' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_11.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_11.yaml new file mode 100644 index 000000000..d500cbebd --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_11.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/11/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '11' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1111.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1111.yaml new file mode 100644 index 000000000..a9250239b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1111.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1111/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1111' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_12.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_12.yaml new file mode 100644 index 000000000..f5ba212d9 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_12.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/12/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '12' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1220.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1220.yaml new file mode 100644 index 000000000..9fa62859b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1220.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1220/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1220' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_14.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_14.yaml new file mode 100644 index 000000000..44af7a757 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_14.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/14/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '14' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1457.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1457.yaml new file mode 100644 index 000000000..c635c6848 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1457.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1457/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1457' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1461.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1461.yaml new file mode 100644 index 000000000..a54269772 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1461.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1461/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1461' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1462.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1462.yaml new file mode 100644 index 000000000..953b999a3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1462.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1462/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1462' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1464.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1464.yaml new file mode 100644 index 000000000..ba20a4afe --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1464.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1464/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1464' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1468.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1468.yaml new file mode 100644 index 000000000..e1a385c4f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1468.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1468/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1468' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1475.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1475.yaml new file mode 100644 index 000000000..326cb610c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1475.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1475/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1475' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1476.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1476.yaml new file mode 100644 index 000000000..ec1a57e65 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1476.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1476/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1476' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1478.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1478.yaml new file mode 100644 index 000000000..b024791e1 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1478.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1478/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1478' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1479.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1479.yaml new file mode 100644 index 000000000..aa15cdfac --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1479.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1479/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1479' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1480.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1480.yaml new file mode 100644 index 000000000..0b97e7ded --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1480.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1480/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1480' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1485.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1485.yaml new file mode 100644 index 000000000..bdc842b96 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1485.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1485/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1485' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1486.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1486.yaml new file mode 100644 index 000000000..56f7a2602 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1486.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1486/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1486' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1487.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1487.yaml new file mode 100644 index 000000000..896e114b2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1487.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1487/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1487' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1489.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1489.yaml new file mode 100644 index 000000000..0222f151f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1489.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1489/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1489' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1493.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1493.yaml new file mode 100644 index 000000000..7ee9e25e6 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1493.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1493/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1493' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1494.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1494.yaml new file mode 100644 index 000000000..0b08f8989 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1494.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1494/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1494' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1497.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1497.yaml new file mode 100644 index 000000000..59ec52e95 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1497.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1497/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1497' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_15.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_15.yaml new file mode 100644 index 000000000..0e282c040 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_15.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/15/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '15' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1501.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1501.yaml new file mode 100644 index 000000000..99037045d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1501.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1501/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1501' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_151.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_151.yaml new file mode 100644 index 000000000..a83aa477b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_151.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/151/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '151' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1510.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1510.yaml new file mode 100644 index 000000000..4172b5954 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1510.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1510/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1510' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1515.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1515.yaml new file mode 100644 index 000000000..26cfa6915 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1515.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1515/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1515' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1590.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1590.yaml new file mode 100644 index 000000000..e35d783cb --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_1590.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1590/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1590' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_16.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_16.yaml new file mode 100644 index 000000000..7b9d34e84 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_16.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/16/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '16' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_18.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_18.yaml new file mode 100644 index 000000000..284c2e69d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_18.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/18/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '18' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_181.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_181.yaml new file mode 100644 index 000000000..5b9bd75f3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_181.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/181/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '181' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_182.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_182.yaml new file mode 100644 index 000000000..934ccc398 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_182.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/182/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '182' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_188.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_188.yaml new file mode 100644 index 000000000..4199d21de --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_188.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/188/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '188' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_22.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_22.yaml new file mode 100644 index 000000000..2b316bc8b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_22.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/22/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '22' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_23.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_23.yaml new file mode 100644 index 000000000..0dd47b236 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_23.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/23/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '23' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_23381.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_23381.yaml new file mode 100644 index 000000000..b3403d0d7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_23381.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/23381/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '23381' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_23512.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_23512.yaml new file mode 100644 index 000000000..ec996223c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_23512.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/23512/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '23512' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_23517.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_23517.yaml new file mode 100644 index 000000000..1642e0fd2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_23517.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/23517/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '23517' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_24.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_24.yaml new file mode 100644 index 000000000..114ece64e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_24.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/24/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '24' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_28.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_28.yaml new file mode 100644 index 000000000..3d595b645 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_28.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/28/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '28' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_29.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_29.yaml new file mode 100644 index 000000000..4e72b1321 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_29.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/29/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '29' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_3.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_3.yaml new file mode 100644 index 000000000..a4702741f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_3.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/3/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '3' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_300.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_300.yaml new file mode 100644 index 000000000..eeb18509f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_300.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/300/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '300' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_307.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_307.yaml new file mode 100644 index 000000000..07fa42fb9 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_307.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/307/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '307' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_31.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_31.yaml new file mode 100644 index 000000000..ab721f306 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_31.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/31/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '31' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_312.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_312.yaml new file mode 100644 index 000000000..46681e813 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_312.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/312/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '312' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_32.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_32.yaml new file mode 100644 index 000000000..90d33343b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_32.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/32/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '32' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_334.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_334.yaml new file mode 100644 index 000000000..5b881f332 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_334.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/334/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '334' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_37.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_37.yaml new file mode 100644 index 000000000..9a86dcb66 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_37.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/37/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '37' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_375.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_375.yaml new file mode 100644 index 000000000..acb0e6a83 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_375.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/375/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '375' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_377.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_377.yaml new file mode 100644 index 000000000..563cfdf1a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_377.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/377/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '377' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_38.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_38.yaml new file mode 100644 index 000000000..bcee1ba21 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_38.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/38/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '38' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40496.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40496.yaml new file mode 100644 index 000000000..37cf05bc8 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40496.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40496/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40496' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40498.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40498.yaml new file mode 100644 index 000000000..571733693 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40498.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40498/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40498' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40499.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40499.yaml new file mode 100644 index 000000000..10124acaa --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40499.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40499/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40499' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40536.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40536.yaml new file mode 100644 index 000000000..bd602d867 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40536.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40536/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40536' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40668.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40668.yaml new file mode 100644 index 000000000..a22166902 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40668.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40668/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40668' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40670.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40670.yaml new file mode 100644 index 000000000..417873b4a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40670.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40670/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40670' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40685.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40685.yaml new file mode 100644 index 000000000..57282456e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40685.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40685/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40685' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40701.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40701.yaml new file mode 100644 index 000000000..86d1e637f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40701.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40701/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40701' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40900.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40900.yaml new file mode 100644 index 000000000..8fc0cec95 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40900.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40900/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40900' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40923.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40923.yaml new file mode 100644 index 000000000..1861d4e08 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40923.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40923/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40923' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40927.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40927.yaml new file mode 100644 index 000000000..26e646854 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40927.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40927/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40927' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40966.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40966.yaml new file mode 100644 index 000000000..ae043b795 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40966.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40966/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40966' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40975.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40975.yaml new file mode 100644 index 000000000..db03d00f3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40975.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40975/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40975' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40978.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40978.yaml new file mode 100644 index 000000000..df0e3bd26 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40978.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40978/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40978' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40979.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40979.yaml new file mode 100644 index 000000000..15077ca67 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40979.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40979/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40979' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40981.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40981.yaml new file mode 100644 index 000000000..60a554b01 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40981.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40981/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40981' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40982.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40982.yaml new file mode 100644 index 000000000..7c2215276 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40982.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40982/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40982' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40983.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40983.yaml new file mode 100644 index 000000000..ebf6e166e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40983.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40983/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40983' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40984.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40984.yaml new file mode 100644 index 000000000..d1a95ad74 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40984.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40984/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40984' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40994.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40994.yaml new file mode 100644 index 000000000..b2cff805b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40994.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40994/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40994' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40996.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40996.yaml new file mode 100644 index 000000000..4351da8e3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_40996.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40996/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40996' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41027.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41027.yaml new file mode 100644 index 000000000..96b682a11 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41027.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41027/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41027' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41138.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41138.yaml new file mode 100644 index 000000000..e26767015 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41138.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41138/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41138' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41142.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41142.yaml new file mode 100644 index 000000000..173d4bbfa --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41142.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41142/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41142' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41143.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41143.yaml new file mode 100644 index 000000000..eaf5f3c15 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41143.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41143/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41143' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41146.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41146.yaml new file mode 100644 index 000000000..f1c1ca6a5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41146.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41146/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41146' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41150.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41150.yaml new file mode 100644 index 000000000..09fcbbae4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41150.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41150/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41150' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41156.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41156.yaml new file mode 100644 index 000000000..28ff90d62 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41156.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41156/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41156' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41157.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41157.yaml new file mode 100644 index 000000000..e7ce00f42 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41157.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41157/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41157' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41159.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41159.yaml new file mode 100644 index 000000000..ab53c756a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41159.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41159/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41159' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41161.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41161.yaml new file mode 100644 index 000000000..2d3119e28 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41161.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41161/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41161' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41162.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41162.yaml new file mode 100644 index 000000000..f6d7299bf --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41162.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41162/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41162' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41163.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41163.yaml new file mode 100644 index 000000000..092b2570b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41163.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41163/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41163' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41164.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41164.yaml new file mode 100644 index 000000000..dc0f1b01e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41164.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41164/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41164' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41165.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41165.yaml new file mode 100644 index 000000000..5131de8d7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41165.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41165/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41165' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41166.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41166.yaml new file mode 100644 index 000000000..69d3d77ea --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41166.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41166/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41166' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41168.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41168.yaml new file mode 100644 index 000000000..a1670e6a4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41168.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41168/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41168' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41169.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41169.yaml new file mode 100644 index 000000000..1ce7dc93a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41169.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41169/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41169' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41212.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41212.yaml new file mode 100644 index 000000000..390406427 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41212.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41212/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41212' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41216.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41216.yaml new file mode 100644 index 000000000..1fcab483a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41216.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41216/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41216' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41278.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41278.yaml new file mode 100644 index 000000000..2815706ee --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_41278.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41278/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41278' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4134.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4134.yaml new file mode 100644 index 000000000..747b6c182 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4134.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/4134/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '4134' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4135.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4135.yaml new file mode 100644 index 000000000..fd59dadc7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4135.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/4135/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '4135' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4154.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4154.yaml new file mode 100644 index 000000000..1c89e526a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4154.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/4154/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '4154' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_42.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_42.yaml new file mode 100644 index 000000000..4e52a9e0e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_42.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/42/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '42' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_44.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_44.yaml new file mode 100644 index 000000000..532d5510e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_44.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/44/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '44' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4534.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4534.yaml new file mode 100644 index 000000000..c6bd6eef3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4534.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/4534/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '4534' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4538.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4538.yaml new file mode 100644 index 000000000..fce46705e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4538.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/4538/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '4538' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4541.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4541.yaml new file mode 100644 index 000000000..50ac5e94d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_4541.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/4541/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '4541' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_458.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_458.yaml new file mode 100644 index 000000000..c4a4abef0 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_458.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/458/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '458' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_46.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_46.yaml new file mode 100644 index 000000000..ab10e6aae --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_46.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/46/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '46' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_469.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_469.yaml new file mode 100644 index 000000000..b27bb85bb --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_469.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/469/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '469' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_470.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_470.yaml new file mode 100644 index 000000000..e7cdb9720 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_470.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/470/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '470' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_50.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_50.yaml new file mode 100644 index 000000000..140c744df --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_50.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/50/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '50' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_54.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_54.yaml new file mode 100644 index 000000000..fe4ec3b6d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_54.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/54/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '54' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_554.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_554.yaml new file mode 100644 index 000000000..74a41f508 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_554.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/554/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '554' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_6.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_6.yaml new file mode 100644 index 000000000..61dc150d7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_6.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/6/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '6' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_60.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_60.yaml new file mode 100644 index 000000000..d8be8882f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_60.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/60/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '60' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_6332.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_6332.yaml new file mode 100644 index 000000000..1221add56 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_ranger_6332.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/6332/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '6332' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1040.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1040.yaml new file mode 100644 index 000000000..fd54c8f9d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1040.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1040/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1040' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1049.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1049.yaml new file mode 100644 index 000000000..ed71edb66 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1049.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1049/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1049' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1050.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1050.yaml new file mode 100644 index 000000000..c64dca4fc --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1050.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1050/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1050' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1053.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1053.yaml new file mode 100644 index 000000000..0f9ac3669 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1053.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1053/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1053' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1056.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1056.yaml new file mode 100644 index 000000000..1809012c6 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1056.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1056/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1056' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1063.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1063.yaml new file mode 100644 index 000000000..98d5fdc86 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1063.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1063/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1063' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1067.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1067.yaml new file mode 100644 index 000000000..42ef94e12 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1067.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1067/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1067' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1068.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1068.yaml new file mode 100644 index 000000000..a3b834e6b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1068.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1068/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1068' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_11.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_11.yaml new file mode 100644 index 000000000..343ee9575 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_11.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/11/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '11' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1111.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1111.yaml new file mode 100644 index 000000000..2689e719d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1111.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1111/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1111' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_12.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_12.yaml new file mode 100644 index 000000000..02b16cbee --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_12.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/12/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '12' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1220.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1220.yaml new file mode 100644 index 000000000..03915b312 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1220.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1220/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1220' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_14.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_14.yaml new file mode 100644 index 000000000..159ea0354 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_14.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/14/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '14' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1457.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1457.yaml new file mode 100644 index 000000000..25da2ef64 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1457.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1457/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1457' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1461.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1461.yaml new file mode 100644 index 000000000..d3644c999 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1461.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1461/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1461' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1462.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1462.yaml new file mode 100644 index 000000000..047732031 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1462.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1462/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1462' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1464.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1464.yaml new file mode 100644 index 000000000..b2e596cc9 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1464.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1464/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1464' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1468.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1468.yaml new file mode 100644 index 000000000..1b48d69bd --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1468.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1468/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1468' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1475.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1475.yaml new file mode 100644 index 000000000..cf7679f3c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1475.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1475/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1475' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1476.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1476.yaml new file mode 100644 index 000000000..51c6f8e3e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1476.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1476/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1476' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1478.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1478.yaml new file mode 100644 index 000000000..dbcb05f7d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1478.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1478/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1478' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1479.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1479.yaml new file mode 100644 index 000000000..778e6ab7a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1479.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1479/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1479' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1480.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1480.yaml new file mode 100644 index 000000000..ef7c5cb5d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1480.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1480/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1480' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1485.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1485.yaml new file mode 100644 index 000000000..1836e7631 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1485.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1485/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1485' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1486.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1486.yaml new file mode 100644 index 000000000..221fecd83 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1486.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1486/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1486' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1487.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1487.yaml new file mode 100644 index 000000000..91911c56b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1487.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1487/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1487' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1489.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1489.yaml new file mode 100644 index 000000000..fc44b1753 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1489.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1489/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1489' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1493.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1493.yaml new file mode 100644 index 000000000..f1f3279a2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1493.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1493/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1493' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1494.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1494.yaml new file mode 100644 index 000000000..21b04aa95 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1494.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1494/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1494' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1497.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1497.yaml new file mode 100644 index 000000000..fbfeb61d1 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1497.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1497/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1497' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_15.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_15.yaml new file mode 100644 index 000000000..18a01af35 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_15.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/15/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '15' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1501.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1501.yaml new file mode 100644 index 000000000..e006d52e3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1501.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1501/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1501' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_151.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_151.yaml new file mode 100644 index 000000000..bd6650002 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_151.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/151/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '151' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1510.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1510.yaml new file mode 100644 index 000000000..814d344d7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1510.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1510/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1510' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1515.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1515.yaml new file mode 100644 index 000000000..9ffa26782 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1515.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1515/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1515' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1590.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1590.yaml new file mode 100644 index 000000000..2720ced10 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_1590.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1590/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1590' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_16.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_16.yaml new file mode 100644 index 000000000..f560ecc3c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_16.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/16/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '16' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_18.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_18.yaml new file mode 100644 index 000000000..c316d7a89 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_18.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/18/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '18' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_181.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_181.yaml new file mode 100644 index 000000000..55e166883 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_181.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/181/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '181' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_182.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_182.yaml new file mode 100644 index 000000000..d5d4c7e1f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_182.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/182/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '182' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_188.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_188.yaml new file mode 100644 index 000000000..1e87ca31b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_188.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/188/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '188' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_22.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_22.yaml new file mode 100644 index 000000000..d3834ef69 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_22.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/22/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '22' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_23.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_23.yaml new file mode 100644 index 000000000..e9467089f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_23.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/23/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '23' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_23381.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_23381.yaml new file mode 100644 index 000000000..28ad422f5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_23381.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/23381/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '23381' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_23512.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_23512.yaml new file mode 100644 index 000000000..88d07c206 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_23512.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/23512/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '23512' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_23517.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_23517.yaml new file mode 100644 index 000000000..b1b501b66 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_23517.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/23517/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '23517' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_24.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_24.yaml new file mode 100644 index 000000000..408a8c6b5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_24.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/24/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '24' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_28.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_28.yaml new file mode 100644 index 000000000..e4e4c3562 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_28.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/28/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '28' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_29.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_29.yaml new file mode 100644 index 000000000..b151098a0 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_29.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/29/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '29' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_3.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_3.yaml new file mode 100644 index 000000000..b3aacb40f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_3.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/3/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '3' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_300.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_300.yaml new file mode 100644 index 000000000..4de4a47fb --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_300.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/300/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '300' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_307.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_307.yaml new file mode 100644 index 000000000..0d40b5580 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_307.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/307/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '307' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_31.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_31.yaml new file mode 100644 index 000000000..e2bf7e83b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_31.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/31/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '31' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_312.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_312.yaml new file mode 100644 index 000000000..54bae22f3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_312.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/312/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '312' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_32.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_32.yaml new file mode 100644 index 000000000..8e1842d39 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_32.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/32/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '32' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_334.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_334.yaml new file mode 100644 index 000000000..dbdac4b38 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_334.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/334/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '334' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_37.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_37.yaml new file mode 100644 index 000000000..2dae73218 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_37.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/37/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '37' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_375.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_375.yaml new file mode 100644 index 000000000..edc88f158 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_375.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/375/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '375' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_377.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_377.yaml new file mode 100644 index 000000000..0645df84d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_377.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/377/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '377' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_38.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_38.yaml new file mode 100644 index 000000000..989bb0b76 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_38.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/38/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '38' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40496.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40496.yaml new file mode 100644 index 000000000..d958325c8 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40496.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40496/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40496' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40498.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40498.yaml new file mode 100644 index 000000000..3924b1c6c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40498.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40498/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40498' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40499.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40499.yaml new file mode 100644 index 000000000..dc7884c0c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40499.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40499/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40499' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40536.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40536.yaml new file mode 100644 index 000000000..51b7b7b8e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40536.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40536/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40536' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40668.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40668.yaml new file mode 100644 index 000000000..14a18d406 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40668.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40668/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40668' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40670.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40670.yaml new file mode 100644 index 000000000..115c923f3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40670.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40670/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40670' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40685.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40685.yaml new file mode 100644 index 000000000..5dc9879e5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40685.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40685/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40685' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40701.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40701.yaml new file mode 100644 index 000000000..3b4c3f271 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40701.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40701/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40701' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40900.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40900.yaml new file mode 100644 index 000000000..5de0009e9 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40900.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40900/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40900' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40923.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40923.yaml new file mode 100644 index 000000000..45a947ff7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40923.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40923/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40923' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40927.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40927.yaml new file mode 100644 index 000000000..0cd36e386 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40927.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40927/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40927' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40966.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40966.yaml new file mode 100644 index 000000000..f8dd92ce5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40966.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40966/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40966' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40975.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40975.yaml new file mode 100644 index 000000000..d0841301b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40975.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40975/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40975' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40978.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40978.yaml new file mode 100644 index 000000000..6a4bf009b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40978.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40978/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40978' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40979.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40979.yaml new file mode 100644 index 000000000..b27cbaa86 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40979.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40979/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40979' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40981.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40981.yaml new file mode 100644 index 000000000..773570e82 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40981.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40981/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40981' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40982.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40982.yaml new file mode 100644 index 000000000..a01874e74 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40982.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40982/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40982' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40983.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40983.yaml new file mode 100644 index 000000000..3857d2657 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40983.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40983/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40983' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40984.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40984.yaml new file mode 100644 index 000000000..be87a6173 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40984.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40984/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40984' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40994.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40994.yaml new file mode 100644 index 000000000..9814a8b3e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40994.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40994/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40994' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40996.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40996.yaml new file mode 100644 index 000000000..d7843486d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_40996.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40996/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40996' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41027.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41027.yaml new file mode 100644 index 000000000..c42e9c3cd --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41027.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41027/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41027' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41138.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41138.yaml new file mode 100644 index 000000000..c5ba0f7ff --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41138.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41138/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41138' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41142.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41142.yaml new file mode 100644 index 000000000..d1fab17fe --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41142.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41142/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41142' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41143.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41143.yaml new file mode 100644 index 000000000..0f0dbe962 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41143.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41143/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41143' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41146.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41146.yaml new file mode 100644 index 000000000..b9b9a18a7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41146.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41146/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41146' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41150.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41150.yaml new file mode 100644 index 000000000..dfb604fab --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41150.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41150/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41150' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41156.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41156.yaml new file mode 100644 index 000000000..041ba0e6c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41156.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41156/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41156' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41157.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41157.yaml new file mode 100644 index 000000000..8b61a0696 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41157.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41157/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41157' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41159.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41159.yaml new file mode 100644 index 000000000..742889d91 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41159.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41159/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41159' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41161.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41161.yaml new file mode 100644 index 000000000..f516ac1d4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41161.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41161/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41161' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41162.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41162.yaml new file mode 100644 index 000000000..5dc55bd1e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41162.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41162/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41162' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41163.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41163.yaml new file mode 100644 index 000000000..7b8bfd32e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41163.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41163/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41163' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41164.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41164.yaml new file mode 100644 index 000000000..99b8242bf --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41164.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41164/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41164' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41165.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41165.yaml new file mode 100644 index 000000000..06a02735a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41165.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41165/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41165' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41166.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41166.yaml new file mode 100644 index 000000000..aaecf10be --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41166.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41166/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41166' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41168.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41168.yaml new file mode 100644 index 000000000..bb626a313 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41168.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41168/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41168' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41169.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41169.yaml new file mode 100644 index 000000000..b361c5ce3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41169.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41169/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41169' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41212.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41212.yaml new file mode 100644 index 000000000..be110efa3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_41212.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41212/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41212' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4134.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4134.yaml new file mode 100644 index 000000000..b28da9596 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4134.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/4134/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '4134' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4135.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4135.yaml new file mode 100644 index 000000000..69fd5768b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4135.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/4135/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '4135' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4154.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4154.yaml new file mode 100644 index 000000000..e2376967a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4154.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/4154/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '4154' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_42.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_42.yaml new file mode 100644 index 000000000..f1d3afc05 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_42.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/42/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '42' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_44.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_44.yaml new file mode 100644 index 000000000..3e1c0240c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_44.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/44/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '44' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4534.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4534.yaml new file mode 100644 index 000000000..ce50dbe78 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4534.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/4534/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '4534' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4538.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4538.yaml new file mode 100644 index 000000000..e2621ec31 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4538.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/4538/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '4538' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4541.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4541.yaml new file mode 100644 index 000000000..a63fbcd74 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_4541.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/4541/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '4541' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_458.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_458.yaml new file mode 100644 index 000000000..30a8e3fda --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_458.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/458/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '458' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_46.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_46.yaml new file mode 100644 index 000000000..32c42223a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_46.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/46/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '46' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_469.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_469.yaml new file mode 100644 index 000000000..3e39335ea --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_469.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/469/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '469' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_470.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_470.yaml new file mode 100644 index 000000000..5f103e62e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_470.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/470/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '470' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_50.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_50.yaml new file mode 100644 index 000000000..022d0eac9 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_50.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/50/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '50' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_54.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_54.yaml new file mode 100644 index 000000000..931486bc0 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_54.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/54/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '54' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_554.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_554.yaml new file mode 100644 index 000000000..f70120e82 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_554.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/554/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '554' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_6.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_6.yaml new file mode 100644 index 000000000..f3f789bd7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_6.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/6/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '6' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_60.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_60.yaml new file mode 100644 index 000000000..5077b875f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_60.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/60/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '60' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_6332.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_6332.yaml new file mode 100644 index 000000000..556ab602c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_rpart_6332.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/6332/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '6332' + budget_type: null + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1040.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1040.yaml new file mode 100644 index 000000000..544d381ce --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1040.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1040/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1040' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1049.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1049.yaml new file mode 100644 index 000000000..76b6eed2a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1049.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1049/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1049' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1050.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1050.yaml new file mode 100644 index 000000000..a92eca1ee --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1050.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1050/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1050' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1053.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1053.yaml new file mode 100644 index 000000000..6a4cbf158 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1053.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1053/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1053' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1056.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1056.yaml new file mode 100644 index 000000000..9d5be9ae7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1056.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1056/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1056' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1063.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1063.yaml new file mode 100644 index 000000000..55ba32551 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1063.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1063/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1063' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1067.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1067.yaml new file mode 100644 index 000000000..4c30fc3e3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1067.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1067/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1067' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1068.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1068.yaml new file mode 100644 index 000000000..67b473377 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1068.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1068/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1068' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_11.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_11.yaml new file mode 100644 index 000000000..02d33d6cb --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_11.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/11/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '11' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1111.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1111.yaml new file mode 100644 index 000000000..90b10cb9c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1111.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1111/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1111' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_12.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_12.yaml new file mode 100644 index 000000000..7ee45b125 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_12.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/12/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '12' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1220.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1220.yaml new file mode 100644 index 000000000..56f7bd681 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1220.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1220/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1220' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_14.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_14.yaml new file mode 100644 index 000000000..2cdace795 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_14.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/14/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '14' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1457.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1457.yaml new file mode 100644 index 000000000..fbe16c33c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1457.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1457/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1457' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1461.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1461.yaml new file mode 100644 index 000000000..1673a24eb --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1461.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1461/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1461' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1462.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1462.yaml new file mode 100644 index 000000000..f0bb6c480 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1462.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1462/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1462' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1464.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1464.yaml new file mode 100644 index 000000000..04ca01a19 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1464.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1464/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1464' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1468.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1468.yaml new file mode 100644 index 000000000..b7d0512a3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1468.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1468/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1468' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1475.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1475.yaml new file mode 100644 index 000000000..f82ded6e8 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1475.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1475/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1475' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1476.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1476.yaml new file mode 100644 index 000000000..51b285e53 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1476.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1476/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1476' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1478.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1478.yaml new file mode 100644 index 000000000..aa3c4ca49 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1478.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1478/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1478' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1479.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1479.yaml new file mode 100644 index 000000000..844a32eb6 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1479.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1479/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1479' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1480.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1480.yaml new file mode 100644 index 000000000..9bfbfdb65 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1480.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1480/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1480' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1485.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1485.yaml new file mode 100644 index 000000000..97b2bf9db --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1485.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1485/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1485' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1486.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1486.yaml new file mode 100644 index 000000000..19e62948b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1486.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1486/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1486' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1487.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1487.yaml new file mode 100644 index 000000000..7658641c5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1487.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1487/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1487' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1489.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1489.yaml new file mode 100644 index 000000000..0aa33e111 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1489.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1489/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1489' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1493.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1493.yaml new file mode 100644 index 000000000..a4d4b408a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1493.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1493/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1493' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1494.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1494.yaml new file mode 100644 index 000000000..fece8c984 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1494.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1494/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1494' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1497.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1497.yaml new file mode 100644 index 000000000..253d45dee --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1497.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1497/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1497' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_15.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_15.yaml new file mode 100644 index 000000000..6624d0b10 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_15.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/15/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '15' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1501.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1501.yaml new file mode 100644 index 000000000..23cacd04b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1501.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1501/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1501' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_151.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_151.yaml new file mode 100644 index 000000000..94d3c9b83 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_151.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/151/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '151' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1510.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1510.yaml new file mode 100644 index 000000000..7e4188a38 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1510.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1510/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1510' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1515.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1515.yaml new file mode 100644 index 000000000..c03e31fb1 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1515.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1515/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1515' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1590.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1590.yaml new file mode 100644 index 000000000..97c82385f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_1590.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1590/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1590' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_16.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_16.yaml new file mode 100644 index 000000000..6ea439dcf --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_16.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/16/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '16' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_18.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_18.yaml new file mode 100644 index 000000000..fd30be18c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_18.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/18/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '18' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_181.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_181.yaml new file mode 100644 index 000000000..1f57db27e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_181.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/181/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '181' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_182.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_182.yaml new file mode 100644 index 000000000..ccf1389b6 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_182.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/182/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '182' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_188.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_188.yaml new file mode 100644 index 000000000..cfd041145 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_188.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/188/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '188' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_22.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_22.yaml new file mode 100644 index 000000000..26da37b3b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_22.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/22/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '22' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_23.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_23.yaml new file mode 100644 index 000000000..b7fcd3f3e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_23.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/23/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '23' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_23381.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_23381.yaml new file mode 100644 index 000000000..efe7baf01 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_23381.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/23381/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '23381' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_24.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_24.yaml new file mode 100644 index 000000000..445089aa7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_24.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/24/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '24' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_28.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_28.yaml new file mode 100644 index 000000000..3b0897b76 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_28.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/28/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '28' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_29.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_29.yaml new file mode 100644 index 000000000..e3311aea9 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_29.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/29/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '29' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_3.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_3.yaml new file mode 100644 index 000000000..8ce5b0e01 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_3.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/3/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '3' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_300.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_300.yaml new file mode 100644 index 000000000..6cd87ceea --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_300.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/300/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '300' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_307.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_307.yaml new file mode 100644 index 000000000..8a6dadfc1 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_307.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/307/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '307' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_31.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_31.yaml new file mode 100644 index 000000000..67f9d72fd --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_31.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/31/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '31' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_312.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_312.yaml new file mode 100644 index 000000000..80ddd0190 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_312.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/312/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '312' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_32.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_32.yaml new file mode 100644 index 000000000..f04593eb0 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_32.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/32/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '32' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_334.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_334.yaml new file mode 100644 index 000000000..328aa78b5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_334.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/334/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '334' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_37.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_37.yaml new file mode 100644 index 000000000..3a6d9e42d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_37.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/37/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '37' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_375.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_375.yaml new file mode 100644 index 000000000..b569b650a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_375.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/375/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '375' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_377.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_377.yaml new file mode 100644 index 000000000..dd9d3c36b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_377.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/377/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '377' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_38.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_38.yaml new file mode 100644 index 000000000..1a79762ab --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_38.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/38/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '38' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40496.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40496.yaml new file mode 100644 index 000000000..77d856311 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40496.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40496/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40496' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40498.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40498.yaml new file mode 100644 index 000000000..c1cf026a9 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40498.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40498/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40498' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40499.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40499.yaml new file mode 100644 index 000000000..26c1a488d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40499.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40499/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40499' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40536.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40536.yaml new file mode 100644 index 000000000..0821b2fde --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40536.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40536/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40536' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40668.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40668.yaml new file mode 100644 index 000000000..0ce1d99a7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40668.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40668/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40668' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40670.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40670.yaml new file mode 100644 index 000000000..eb9497072 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40670.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40670/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40670' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40685.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40685.yaml new file mode 100644 index 000000000..06118df42 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40685.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40685/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40685' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40701.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40701.yaml new file mode 100644 index 000000000..5978ea5e9 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40701.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40701/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40701' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40900.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40900.yaml new file mode 100644 index 000000000..cf3f9d41c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40900.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40900/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40900' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40966.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40966.yaml new file mode 100644 index 000000000..3040bc6c9 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40966.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40966/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40966' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40975.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40975.yaml new file mode 100644 index 000000000..f1608040b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40975.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40975/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40975' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40978.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40978.yaml new file mode 100644 index 000000000..0c413514b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40978.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40978/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40978' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40979.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40979.yaml new file mode 100644 index 000000000..4da47b60c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40979.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40979/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40979' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40981.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40981.yaml new file mode 100644 index 000000000..928c88359 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40981.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40981/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40981' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40982.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40982.yaml new file mode 100644 index 000000000..3f9f3fcc3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40982.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40982/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40982' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40983.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40983.yaml new file mode 100644 index 000000000..212184f8a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40983.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40983/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40983' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40984.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40984.yaml new file mode 100644 index 000000000..3bedffdff --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40984.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40984/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40984' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40994.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40994.yaml new file mode 100644 index 000000000..272bd811a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_40994.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40994/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40994' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41027.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41027.yaml new file mode 100644 index 000000000..756356e81 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41027.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41027/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41027' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41138.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41138.yaml new file mode 100644 index 000000000..e078d5f9f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41138.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41138/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41138' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41142.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41142.yaml new file mode 100644 index 000000000..bf7b2efcb --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41142.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41142/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41142' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41143.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41143.yaml new file mode 100644 index 000000000..5099b1631 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41143.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41143/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41143' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41146.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41146.yaml new file mode 100644 index 000000000..02a84ec71 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41146.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41146/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41146' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41156.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41156.yaml new file mode 100644 index 000000000..1c311a04c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41156.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41156/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41156' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41157.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41157.yaml new file mode 100644 index 000000000..51c08f480 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41157.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41157/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41157' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41162.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41162.yaml new file mode 100644 index 000000000..9eac5857a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41162.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41162/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41162' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41163.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41163.yaml new file mode 100644 index 000000000..477c71861 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41163.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41163/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41163' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41164.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41164.yaml new file mode 100644 index 000000000..d95e68c3e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41164.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41164/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41164' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41169.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41169.yaml new file mode 100644 index 000000000..199d766c4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41169.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41169/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41169' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41212.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41212.yaml new file mode 100644 index 000000000..f238097a2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_41212.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41212/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41212' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_4134.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_4134.yaml new file mode 100644 index 000000000..6326b147a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_4134.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/4134/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '4134' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_4154.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_4154.yaml new file mode 100644 index 000000000..26a3b8604 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_4154.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/4154/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '4154' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_42.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_42.yaml new file mode 100644 index 000000000..3b62e0561 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_42.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/42/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '42' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_44.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_44.yaml new file mode 100644 index 000000000..c697cddff --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_44.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/44/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '44' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_4534.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_4534.yaml new file mode 100644 index 000000000..d6cd4a34b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_4534.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/4534/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '4534' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_4538.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_4538.yaml new file mode 100644 index 000000000..59be2d078 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_4538.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/4538/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '4538' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_458.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_458.yaml new file mode 100644 index 000000000..82f93c9af --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_458.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/458/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '458' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_46.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_46.yaml new file mode 100644 index 000000000..ded027ba8 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_46.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/46/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '46' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_469.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_469.yaml new file mode 100644 index 000000000..87e99e39a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_469.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/469/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '469' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_470.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_470.yaml new file mode 100644 index 000000000..7faa34f59 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_470.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/470/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '470' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_50.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_50.yaml new file mode 100644 index 000000000..7851e861f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_50.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/50/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '50' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_54.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_54.yaml new file mode 100644 index 000000000..addb8842c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_54.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/54/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '54' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_6.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_6.yaml new file mode 100644 index 000000000..a781bec61 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_6.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/6/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '6' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_60.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_60.yaml new file mode 100644 index 000000000..13722dedb --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_60.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/60/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '60' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_6332.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_6332.yaml new file mode 100644 index 000000000..a0aa387e9 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_super_6332.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/6332/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '6332' + budget_type: null + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1040.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1040.yaml new file mode 100644 index 000000000..87162bbf2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1040.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1040/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1040' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1049.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1049.yaml new file mode 100644 index 000000000..a4667c32e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1049.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1049/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1049' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1050.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1050.yaml new file mode 100644 index 000000000..c694a4099 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1050.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1050/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1050' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1053.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1053.yaml new file mode 100644 index 000000000..522c7bc7d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1053.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1053/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1053' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1056.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1056.yaml new file mode 100644 index 000000000..1a18d27c9 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1056.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1056/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1056' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1063.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1063.yaml new file mode 100644 index 000000000..45d5ded30 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1063.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1063/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1063' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1067.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1067.yaml new file mode 100644 index 000000000..774879183 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1067.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1067/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1067' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1068.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1068.yaml new file mode 100644 index 000000000..4909a7c41 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1068.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1068/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1068' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_11.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_11.yaml new file mode 100644 index 000000000..15b9833b7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_11.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/11/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '11' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1111.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1111.yaml new file mode 100644 index 000000000..d1fe7f3a1 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1111.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1111/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1111' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_12.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_12.yaml new file mode 100644 index 000000000..85a6413e1 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_12.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/12/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '12' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1220.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1220.yaml new file mode 100644 index 000000000..b4190160a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1220.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1220/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1220' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_14.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_14.yaml new file mode 100644 index 000000000..a3836e2ed --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_14.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/14/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '14' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1457.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1457.yaml new file mode 100644 index 000000000..3bf6e3d12 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1457.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1457/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1457' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1461.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1461.yaml new file mode 100644 index 000000000..82fd1997d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1461.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1461/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1461' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1462.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1462.yaml new file mode 100644 index 000000000..0ee403a19 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1462.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1462/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1462' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1464.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1464.yaml new file mode 100644 index 000000000..1e7e2126a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1464.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1464/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1464' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1468.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1468.yaml new file mode 100644 index 000000000..60a0f5ad1 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1468.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1468/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1468' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1475.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1475.yaml new file mode 100644 index 000000000..f115758dc --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1475.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1475/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1475' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1476.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1476.yaml new file mode 100644 index 000000000..001562f06 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1476.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1476/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1476' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1478.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1478.yaml new file mode 100644 index 000000000..097856b8a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1478.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1478/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1478' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1479.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1479.yaml new file mode 100644 index 000000000..0555e5848 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1479.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1479/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1479' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1480.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1480.yaml new file mode 100644 index 000000000..ca3880ed5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1480.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1480/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1480' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1485.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1485.yaml new file mode 100644 index 000000000..5bf7723f2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1485.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1485/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1485' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1486.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1486.yaml new file mode 100644 index 000000000..f8f3f42b3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1486.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1486/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1486' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1487.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1487.yaml new file mode 100644 index 000000000..0ded2f707 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1487.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1487/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1487' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1489.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1489.yaml new file mode 100644 index 000000000..89c22826f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1489.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1489/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1489' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1493.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1493.yaml new file mode 100644 index 000000000..8c22d8080 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1493.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1493/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1493' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1494.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1494.yaml new file mode 100644 index 000000000..4e66fc0c4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1494.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1494/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1494' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1497.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1497.yaml new file mode 100644 index 000000000..b9c47c6f9 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1497.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1497/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1497' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_15.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_15.yaml new file mode 100644 index 000000000..a5a353174 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_15.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/15/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '15' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1501.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1501.yaml new file mode 100644 index 000000000..8d64c8937 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1501.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1501/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1501' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_151.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_151.yaml new file mode 100644 index 000000000..ce46841c4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_151.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/151/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '151' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1510.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1510.yaml new file mode 100644 index 000000000..6a80f7e22 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1510.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1510/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1510' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1515.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1515.yaml new file mode 100644 index 000000000..ae1124e39 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1515.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1515/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1515' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1590.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1590.yaml new file mode 100644 index 000000000..932abe8fe --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_1590.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1590/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1590' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_16.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_16.yaml new file mode 100644 index 000000000..9feca8002 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_16.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/16/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '16' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_18.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_18.yaml new file mode 100644 index 000000000..83363cb5c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_18.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/18/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '18' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_181.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_181.yaml new file mode 100644 index 000000000..c4f94b528 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_181.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/181/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '181' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_182.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_182.yaml new file mode 100644 index 000000000..41c739d6c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_182.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/182/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '182' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_188.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_188.yaml new file mode 100644 index 000000000..ede6d0642 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_188.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/188/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '188' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_22.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_22.yaml new file mode 100644 index 000000000..ce10fd0e8 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_22.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/22/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '22' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_23.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_23.yaml new file mode 100644 index 000000000..57dfcc61c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_23.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/23/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '23' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_23381.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_23381.yaml new file mode 100644 index 000000000..8a0563ee4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_23381.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/23381/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '23381' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_24.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_24.yaml new file mode 100644 index 000000000..fdcb63894 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_24.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/24/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '24' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_28.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_28.yaml new file mode 100644 index 000000000..5d719f988 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_28.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/28/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '28' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_29.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_29.yaml new file mode 100644 index 000000000..a19544833 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_29.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/29/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '29' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_3.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_3.yaml new file mode 100644 index 000000000..69e795712 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_3.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/3/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '3' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_300.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_300.yaml new file mode 100644 index 000000000..febb1b028 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_300.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/300/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '300' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_307.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_307.yaml new file mode 100644 index 000000000..0abadda0a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_307.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/307/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '307' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_31.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_31.yaml new file mode 100644 index 000000000..cda82ee25 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_31.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/31/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '31' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_312.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_312.yaml new file mode 100644 index 000000000..e4495c836 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_312.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/312/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '312' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_32.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_32.yaml new file mode 100644 index 000000000..cfc94a5ea --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_32.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/32/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '32' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_334.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_334.yaml new file mode 100644 index 000000000..08edb2636 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_334.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/334/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '334' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_37.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_37.yaml new file mode 100644 index 000000000..6db080273 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_37.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/37/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '37' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_375.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_375.yaml new file mode 100644 index 000000000..30ab58f1c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_375.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/375/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '375' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_377.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_377.yaml new file mode 100644 index 000000000..f91b862f7 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_377.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/377/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '377' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_38.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_38.yaml new file mode 100644 index 000000000..0b32a303c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_38.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/38/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '38' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40496.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40496.yaml new file mode 100644 index 000000000..f25a97152 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40496.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40496/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40496' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40498.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40498.yaml new file mode 100644 index 000000000..88f6681a6 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40498.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40498/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40498' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40499.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40499.yaml new file mode 100644 index 000000000..f20b5f4c4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40499.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40499/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40499' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40536.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40536.yaml new file mode 100644 index 000000000..4bcd02285 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40536.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40536/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40536' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40668.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40668.yaml new file mode 100644 index 000000000..80b161522 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40668.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40668/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40668' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40670.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40670.yaml new file mode 100644 index 000000000..c507409ae --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40670.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40670/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40670' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40685.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40685.yaml new file mode 100644 index 000000000..ccc282753 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40685.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40685/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40685' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40701.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40701.yaml new file mode 100644 index 000000000..2b33b18c5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40701.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40701/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40701' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40900.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40900.yaml new file mode 100644 index 000000000..6008b94e1 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40900.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40900/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40900' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40966.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40966.yaml new file mode 100644 index 000000000..60913e2ab --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40966.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40966/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40966' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40975.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40975.yaml new file mode 100644 index 000000000..2952695c0 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40975.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40975/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40975' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40978.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40978.yaml new file mode 100644 index 000000000..4f60d5dd1 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40978.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40978/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40978' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40979.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40979.yaml new file mode 100644 index 000000000..0081f8a12 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40979.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40979/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40979' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40981.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40981.yaml new file mode 100644 index 000000000..094279d5a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40981.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40981/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40981' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40982.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40982.yaml new file mode 100644 index 000000000..0a816588b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40982.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40982/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40982' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40983.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40983.yaml new file mode 100644 index 000000000..6029064ee --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40983.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40983/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40983' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40984.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40984.yaml new file mode 100644 index 000000000..943f2ecbe --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40984.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40984/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40984' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40994.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40994.yaml new file mode 100644 index 000000000..b55ecd2ef --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_40994.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40994/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40994' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41027.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41027.yaml new file mode 100644 index 000000000..a1b5ea67b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41027.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41027/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41027' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41138.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41138.yaml new file mode 100644 index 000000000..8fa09c203 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41138.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41138/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41138' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41142.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41142.yaml new file mode 100644 index 000000000..bc139daa3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41142.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41142/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41142' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41143.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41143.yaml new file mode 100644 index 000000000..37415c26b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41143.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41143/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41143' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41146.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41146.yaml new file mode 100644 index 000000000..8fcc9ed15 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41146.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41146/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41146' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41156.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41156.yaml new file mode 100644 index 000000000..36bdd63c6 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41156.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41156/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41156' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41157.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41157.yaml new file mode 100644 index 000000000..077c13951 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41157.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41157/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41157' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41162.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41162.yaml new file mode 100644 index 000000000..7a9b34847 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41162.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41162/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41162' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41163.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41163.yaml new file mode 100644 index 000000000..6a09c417f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41163.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41163/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41163' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41164.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41164.yaml new file mode 100644 index 000000000..3124419a2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41164.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41164/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41164' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41169.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41169.yaml new file mode 100644 index 000000000..a533273b6 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41169.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41169/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41169' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41212.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41212.yaml new file mode 100644 index 000000000..045adf680 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41212.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41212/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41212' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41216.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41216.yaml new file mode 100644 index 000000000..64401ac83 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41216.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41216/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41216' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41278.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41278.yaml new file mode 100644 index 000000000..a63ec7c48 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_41278.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41278/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41278' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4134.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4134.yaml new file mode 100644 index 000000000..74a8b1cf3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4134.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/4134/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '4134' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4135.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4135.yaml new file mode 100644 index 000000000..a246418e4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4135.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/4135/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '4135' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4154.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4154.yaml new file mode 100644 index 000000000..b6cf8e7d0 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4154.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/4154/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '4154' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_42.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_42.yaml new file mode 100644 index 000000000..e471b21f4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_42.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/42/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '42' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_44.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_44.yaml new file mode 100644 index 000000000..c84e92b46 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_44.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/44/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '44' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4534.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4534.yaml new file mode 100644 index 000000000..c6db3a91c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4534.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/4534/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '4534' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4538.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4538.yaml new file mode 100644 index 000000000..cdf55176e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_4538.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/4538/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '4538' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_458.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_458.yaml new file mode 100644 index 000000000..cf685f8cf --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_458.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/458/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '458' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_46.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_46.yaml new file mode 100644 index 000000000..9dc4fc670 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_46.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/46/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '46' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_469.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_469.yaml new file mode 100644 index 000000000..340dacba2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_469.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/469/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '469' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_470.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_470.yaml new file mode 100644 index 000000000..3a847c318 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_470.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/470/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '470' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_50.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_50.yaml new file mode 100644 index 000000000..7e250aa3e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_50.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/50/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '50' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_54.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_54.yaml new file mode 100644 index 000000000..f28a721b9 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_54.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/54/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '54' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_6.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_6.yaml new file mode 100644 index 000000000..d27134d7a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_6.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/6/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '6' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_60.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_60.yaml new file mode 100644 index 000000000..62255bf5b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_60.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/60/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '60' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_6332.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_6332.yaml new file mode 100644 index 000000000..8013671f5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_svm_6332.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/6332/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '6332' + budget_type: null + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1040.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1040.yaml new file mode 100644 index 000000000..183afb1e3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1040.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1040/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1040' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1049.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1049.yaml new file mode 100644 index 000000000..2e8fdb5ed --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1049.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1049/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1049' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1050.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1050.yaml new file mode 100644 index 000000000..23b1954b2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1050.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1050/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1050' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1053.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1053.yaml new file mode 100644 index 000000000..58a5a8b13 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1053.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1053/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1053' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1056.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1056.yaml new file mode 100644 index 000000000..b1e9c64ab --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1056.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1056/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1056' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1063.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1063.yaml new file mode 100644 index 000000000..4f95a6ee2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1063.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1063/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1063' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1067.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1067.yaml new file mode 100644 index 000000000..0ac655783 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1067.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1067/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1067' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1068.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1068.yaml new file mode 100644 index 000000000..48a6b4155 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1068.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1068/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1068' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_11.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_11.yaml new file mode 100644 index 000000000..baf65c255 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_11.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/11/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '11' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1111.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1111.yaml new file mode 100644 index 000000000..e8abe127c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1111.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1111/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1111' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_12.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_12.yaml new file mode 100644 index 000000000..6e24e940b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_12.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/12/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '12' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1220.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1220.yaml new file mode 100644 index 000000000..1baea7326 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1220.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1220/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1220' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_14.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_14.yaml new file mode 100644 index 000000000..32634f8d2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_14.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/14/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '14' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1457.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1457.yaml new file mode 100644 index 000000000..2e0190cb3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1457.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1457/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1457' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1461.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1461.yaml new file mode 100644 index 000000000..5f048edc5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1461.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1461/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1461' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1462.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1462.yaml new file mode 100644 index 000000000..3e7b356ea --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1462.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1462/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1462' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1464.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1464.yaml new file mode 100644 index 000000000..cc47255e2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1464.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1464/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1464' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1468.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1468.yaml new file mode 100644 index 000000000..661f33b60 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1468.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1468/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1468' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1475.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1475.yaml new file mode 100644 index 000000000..24c8b8320 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1475.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1475/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1475' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1476.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1476.yaml new file mode 100644 index 000000000..be0ef6b29 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1476.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1476/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1476' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1478.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1478.yaml new file mode 100644 index 000000000..4b3ed85bc --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1478.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1478/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1478' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1479.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1479.yaml new file mode 100644 index 000000000..aecbdbb00 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1479.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1479/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1479' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1480.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1480.yaml new file mode 100644 index 000000000..de1dfc40b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1480.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1480/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1480' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1485.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1485.yaml new file mode 100644 index 000000000..bc35003f0 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1485.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1485/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1485' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1486.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1486.yaml new file mode 100644 index 000000000..80b439d1f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1486.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1486/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1486' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1487.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1487.yaml new file mode 100644 index 000000000..e1dd445f0 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1487.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1487/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1487' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1489.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1489.yaml new file mode 100644 index 000000000..94bf12ea3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1489.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1489/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1489' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1493.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1493.yaml new file mode 100644 index 000000000..d221db03a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1493.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1493/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1493' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1494.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1494.yaml new file mode 100644 index 000000000..3408713e0 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1494.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1494/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1494' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1497.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1497.yaml new file mode 100644 index 000000000..68b04ac88 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1497.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1497/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1497' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_15.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_15.yaml new file mode 100644 index 000000000..87bc681cd --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_15.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/15/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '15' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1501.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1501.yaml new file mode 100644 index 000000000..0a5220cc2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1501.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1501/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1501' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_151.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_151.yaml new file mode 100644 index 000000000..f3167b0ff --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_151.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/151/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '151' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1510.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1510.yaml new file mode 100644 index 000000000..798f7aaec --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1510.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1510/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1510' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1515.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1515.yaml new file mode 100644 index 000000000..37af21dd4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1515.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1515/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1515' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1590.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1590.yaml new file mode 100644 index 000000000..8bd5cc014 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_1590.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1590/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1590' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_16.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_16.yaml new file mode 100644 index 000000000..7ccfdd677 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_16.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/16/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '16' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_18.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_18.yaml new file mode 100644 index 000000000..fdcf508bf --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_18.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/18/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '18' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_181.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_181.yaml new file mode 100644 index 000000000..0a9aed0d0 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_181.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/181/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '181' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_182.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_182.yaml new file mode 100644 index 000000000..e2204cfdb --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_182.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/182/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '182' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_188.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_188.yaml new file mode 100644 index 000000000..3b0308368 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_188.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/188/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '188' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_22.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_22.yaml new file mode 100644 index 000000000..dcc7abe0f --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_22.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/22/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '22' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_23.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_23.yaml new file mode 100644 index 000000000..bcd61c919 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_23.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/23/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '23' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_23381.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_23381.yaml new file mode 100644 index 000000000..30616441b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_23381.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/23381/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '23381' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_23512.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_23512.yaml new file mode 100644 index 000000000..fcc3d6b27 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_23512.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/23512/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '23512' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_23517.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_23517.yaml new file mode 100644 index 000000000..7a334a964 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_23517.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/23517/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '23517' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_24.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_24.yaml new file mode 100644 index 000000000..5c4caf5e2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_24.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/24/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '24' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_28.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_28.yaml new file mode 100644 index 000000000..69ebfb810 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_28.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/28/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '28' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_29.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_29.yaml new file mode 100644 index 000000000..167b84234 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_29.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/29/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '29' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_3.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_3.yaml new file mode 100644 index 000000000..37a187274 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_3.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/3/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '3' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_300.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_300.yaml new file mode 100644 index 000000000..002432f80 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_300.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/300/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '300' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_307.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_307.yaml new file mode 100644 index 000000000..8c365c245 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_307.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/307/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '307' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_31.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_31.yaml new file mode 100644 index 000000000..f71d784d3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_31.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/31/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '31' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_312.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_312.yaml new file mode 100644 index 000000000..2d629f003 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_312.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/312/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '312' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_32.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_32.yaml new file mode 100644 index 000000000..151c03348 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_32.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/32/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '32' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_334.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_334.yaml new file mode 100644 index 000000000..b8ffd38de --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_334.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/334/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '334' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_37.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_37.yaml new file mode 100644 index 000000000..4980cbaae --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_37.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/37/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '37' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_375.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_375.yaml new file mode 100644 index 000000000..8b1ba97fd --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_375.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/375/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '375' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_377.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_377.yaml new file mode 100644 index 000000000..39cf838db --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_377.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/377/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '377' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_38.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_38.yaml new file mode 100644 index 000000000..d280f9a89 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_38.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/38/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '38' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40496.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40496.yaml new file mode 100644 index 000000000..d923148dd --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40496.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40496/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40496' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40498.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40498.yaml new file mode 100644 index 000000000..d1f84b503 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40498.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40498/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40498' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40499.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40499.yaml new file mode 100644 index 000000000..e8a13479a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40499.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40499/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40499' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40536.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40536.yaml new file mode 100644 index 000000000..60c85472c --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40536.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40536/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40536' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40668.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40668.yaml new file mode 100644 index 000000000..afb4dc260 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40668.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40668/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40668' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40670.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40670.yaml new file mode 100644 index 000000000..e3261d246 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40670.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40670/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40670' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40685.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40685.yaml new file mode 100644 index 000000000..ace9df2c5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40685.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40685/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40685' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40701.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40701.yaml new file mode 100644 index 000000000..c8f7852cc --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40701.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40701/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40701' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40900.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40900.yaml new file mode 100644 index 000000000..85db2b312 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40900.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40900/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40900' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40923.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40923.yaml new file mode 100644 index 000000000..caf12084d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40923.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40923/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40923' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40927.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40927.yaml new file mode 100644 index 000000000..2cf929da0 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40927.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40927/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40927' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40966.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40966.yaml new file mode 100644 index 000000000..e35d460e8 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40966.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40966/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40966' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40975.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40975.yaml new file mode 100644 index 000000000..281d02bfe --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40975.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40975/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40975' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40978.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40978.yaml new file mode 100644 index 000000000..2a1833b2b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40978.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40978/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40978' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40979.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40979.yaml new file mode 100644 index 000000000..ea61ed0a0 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40979.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40979/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40979' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40981.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40981.yaml new file mode 100644 index 000000000..3a855a5c2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40981.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40981/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40981' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40982.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40982.yaml new file mode 100644 index 000000000..87fad0605 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40982.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40982/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40982' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40983.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40983.yaml new file mode 100644 index 000000000..93bc905f4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40983.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40983/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40983' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40984.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40984.yaml new file mode 100644 index 000000000..61bf07b43 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40984.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40984/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40984' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40994.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40994.yaml new file mode 100644 index 000000000..d4b2bc166 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40994.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40994/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40994' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40996.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40996.yaml new file mode 100644 index 000000000..ee3541175 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_40996.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40996/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40996' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41027.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41027.yaml new file mode 100644 index 000000000..1d3c2f155 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41027.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41027/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41027' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41138.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41138.yaml new file mode 100644 index 000000000..9ad579007 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41138.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41138/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41138' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41142.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41142.yaml new file mode 100644 index 000000000..fe2d4a0e3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41142.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41142/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41142' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41143.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41143.yaml new file mode 100644 index 000000000..a9b513082 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41143.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41143/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41143' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41146.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41146.yaml new file mode 100644 index 000000000..b24a7f763 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41146.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41146/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41146' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41150.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41150.yaml new file mode 100644 index 000000000..ec26425e1 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41150.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41150/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41150' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41156.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41156.yaml new file mode 100644 index 000000000..c8f82e073 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41156.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41156/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41156' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41157.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41157.yaml new file mode 100644 index 000000000..48d558b9d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41157.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41157/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41157' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41159.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41159.yaml new file mode 100644 index 000000000..6620d3299 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41159.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41159/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41159' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41161.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41161.yaml new file mode 100644 index 000000000..38873721b --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41161.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41161/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41161' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41162.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41162.yaml new file mode 100644 index 000000000..f74e62871 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41162.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41162/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41162' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41163.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41163.yaml new file mode 100644 index 000000000..18d9cbfcb --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41163.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41163/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41163' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41164.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41164.yaml new file mode 100644 index 000000000..6be43016a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41164.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41164/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41164' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41165.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41165.yaml new file mode 100644 index 000000000..9537b5d13 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41165.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41165/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41165' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41166.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41166.yaml new file mode 100644 index 000000000..0cc0a5773 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41166.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41166/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41166' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41168.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41168.yaml new file mode 100644 index 000000000..697f4c54d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41168.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41168/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41168' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41169.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41169.yaml new file mode 100644 index 000000000..a03f867e4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41169.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41169/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41169' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41212.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41212.yaml new file mode 100644 index 000000000..ecece9a51 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41212.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41212/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41212' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41216.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41216.yaml new file mode 100644 index 000000000..0bbf43e2a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41216.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41216/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41216' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41278.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41278.yaml new file mode 100644 index 000000000..cbfee23b3 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_41278.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41278/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41278' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4134.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4134.yaml new file mode 100644 index 000000000..6d4e71594 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4134.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/4134/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '4134' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4135.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4135.yaml new file mode 100644 index 000000000..89bdf899d --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4135.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/4135/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '4135' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4154.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4154.yaml new file mode 100644 index 000000000..0f56180c9 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4154.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/4154/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '4154' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_42.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_42.yaml new file mode 100644 index 000000000..ab9c2ee80 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_42.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/42/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '42' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_44.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_44.yaml new file mode 100644 index 000000000..dbe93bb15 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_44.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/44/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '44' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4534.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4534.yaml new file mode 100644 index 000000000..8844bda3e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4534.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/4534/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '4534' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4538.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4538.yaml new file mode 100644 index 000000000..a55c36ff5 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4538.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/4538/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '4538' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4541.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4541.yaml new file mode 100644 index 000000000..19a6a6947 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_4541.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/4541/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '4541' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_458.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_458.yaml new file mode 100644 index 000000000..eb535aa9e --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_458.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/458/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '458' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_46.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_46.yaml new file mode 100644 index 000000000..de7ebe8d4 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_46.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/46/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '46' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_469.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_469.yaml new file mode 100644 index 000000000..1899f04b6 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_469.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/469/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '469' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_470.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_470.yaml new file mode 100644 index 000000000..37ea60efc --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_470.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/470/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '470' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_50.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_50.yaml new file mode 100644 index 000000000..f519a6018 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_50.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/50/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '50' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_54.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_54.yaml new file mode 100644 index 000000000..72707f046 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_54.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/54/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '54' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_554.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_554.yaml new file mode 100644 index 000000000..062effa5a --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_554.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/554/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '554' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_6.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_6.yaml new file mode 100644 index 000000000..3504ada87 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_6.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/6/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '6' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_60.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_60.yaml new file mode 100644 index 000000000..8379b6df2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_60.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/60/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '60' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_6332.yaml b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_6332.yaml new file mode 100644 index 000000000..45bca1eb2 --- /dev/null +++ b/carps/configs/problem/YAHPO/blackbox/cfg_rbv2_xgboost_6332.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/6332/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '6332' + budget_type: null + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_lcbench_167168_epoch_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_lcbench_167168_epoch_mf.yaml new file mode 100644 index 000000000..a120c962b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_lcbench_167168_epoch_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/epoch/lcbench/167168/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167168' + budget_type: epoch + metric: + - val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - val_accuracy + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_lcbench_189873_epoch_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_lcbench_189873_epoch_mf.yaml new file mode 100644 index 000000000..59b7d9753 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_lcbench_189873_epoch_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/epoch/lcbench/189873/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189873' + budget_type: epoch + metric: + - val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - val_accuracy + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_lcbench_189906_epoch_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_lcbench_189906_epoch_mf.yaml new file mode 100644 index 000000000..e61c245f4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_lcbench_189906_epoch_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/epoch/lcbench/189906/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189906' + budget_type: epoch + metric: + - val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - val_accuracy + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_nb301_CIFAR10_epoch_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_nb301_CIFAR10_epoch_mf.yaml new file mode 100644 index 000000000..76fdd77fb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_nb301_CIFAR10_epoch_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/epoch/nb301/CIFAR10/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: nb301 + instance: CIFAR10 + budget_type: epoch + metric: + - val_accuracy +task: + n_trials: 250 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - val_accuracy + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 98 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 34 + search_space_n_categoricals: 34 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_glmnet_375_repl_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_glmnet_375_repl_mf.yaml new file mode 100644 index 000000000..1485dfd42 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_glmnet_375_repl_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/repl/rbv2_glmnet/375/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '375' + budget_type: repl + metric: + - acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_glmnet_375_trainsize_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_glmnet_375_trainsize_mf.yaml new file mode 100644 index 000000000..c12e691af --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_glmnet_375_trainsize_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/trainsize/rbv2_glmnet/375/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '375' + budget_type: trainsize + metric: + - acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_glmnet_458_repl_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_glmnet_458_repl_mf.yaml new file mode 100644 index 000000000..add3cc831 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_glmnet_458_repl_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/repl/rbv2_glmnet/458/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '458' + budget_type: repl + metric: + - acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_glmnet_458_trainsize_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_glmnet_458_trainsize_mf.yaml new file mode 100644 index 000000000..2b2caecc7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_glmnet_458_trainsize_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/trainsize/rbv2_glmnet/458/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '458' + budget_type: trainsize + metric: + - acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_ranger_16_repl_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_ranger_16_repl_mf.yaml new file mode 100644 index 000000000..4e071519e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_ranger_16_repl_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/repl/rbv2_ranger/16/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '16' + budget_type: repl + metric: + - acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_ranger_16_trainsize_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_ranger_16_trainsize_mf.yaml new file mode 100644 index 000000000..b4245c831 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_ranger_16_trainsize_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/trainsize/rbv2_ranger/16/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '16' + budget_type: trainsize + metric: + - acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_ranger_42_repl_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_ranger_42_repl_mf.yaml new file mode 100644 index 000000000..4a4ccb611 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_ranger_42_repl_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/repl/rbv2_ranger/42/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '42' + budget_type: repl + metric: + - acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_ranger_42_trainsize_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_ranger_42_trainsize_mf.yaml new file mode 100644 index 000000000..cd11f3bb7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_ranger_42_trainsize_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/trainsize/rbv2_ranger/42/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '42' + budget_type: trainsize + metric: + - acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_rpart_14_repl_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_rpart_14_repl_mf.yaml new file mode 100644 index 000000000..925df335a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_rpart_14_repl_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/repl/rbv2_rpart/14/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '14' + budget_type: repl + metric: + - acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_rpart_14_trainsize_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_rpart_14_trainsize_mf.yaml new file mode 100644 index 000000000..a9b023433 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_rpart_14_trainsize_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/trainsize/rbv2_rpart/14/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '14' + budget_type: trainsize + metric: + - acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_rpart_40499_repl_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_rpart_40499_repl_mf.yaml new file mode 100644 index 000000000..3f2ab4e93 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_rpart_40499_repl_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/repl/rbv2_rpart/40499/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40499' + budget_type: repl + metric: + - acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_rpart_40499_trainsize_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_rpart_40499_trainsize_mf.yaml new file mode 100644 index 000000000..065a34596 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_rpart_40499_trainsize_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/trainsize/rbv2_rpart/40499/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40499' + budget_type: trainsize + metric: + - acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1053_repl_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1053_repl_mf.yaml new file mode 100644 index 000000000..8eeecfa11 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1053_repl_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/repl/rbv2_super/1053/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1053' + budget_type: repl + metric: + - acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1053_trainsize_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1053_trainsize_mf.yaml new file mode 100644 index 000000000..5925661ba --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1053_trainsize_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/trainsize/rbv2_super/1053/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1053' + budget_type: trainsize + metric: + - acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1063_repl_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1063_repl_mf.yaml new file mode 100644 index 000000000..abbdc81ec --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1063_repl_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/repl/rbv2_super/1063/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1063' + budget_type: repl + metric: + - acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1063_trainsize_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1063_trainsize_mf.yaml new file mode 100644 index 000000000..849dc4371 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1063_trainsize_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/trainsize/rbv2_super/1063/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1063' + budget_type: trainsize + metric: + - acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1457_repl_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1457_repl_mf.yaml new file mode 100644 index 000000000..64c6c64c4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1457_repl_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/repl/rbv2_super/1457/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1457' + budget_type: repl + metric: + - acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1457_trainsize_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1457_trainsize_mf.yaml new file mode 100644 index 000000000..5b3e6a4a6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1457_trainsize_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/trainsize/rbv2_super/1457/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1457' + budget_type: trainsize + metric: + - acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1468_repl_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1468_repl_mf.yaml new file mode 100644 index 000000000..1be2a60fd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1468_repl_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/repl/rbv2_super/1468/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1468' + budget_type: repl + metric: + - acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1468_trainsize_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1468_trainsize_mf.yaml new file mode 100644 index 000000000..cb1acbee1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1468_trainsize_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/trainsize/rbv2_super/1468/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1468' + budget_type: trainsize + metric: + - acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1479_repl_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1479_repl_mf.yaml new file mode 100644 index 000000000..dba5e7818 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1479_repl_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/repl/rbv2_super/1479/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1479' + budget_type: repl + metric: + - acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1479_trainsize_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1479_trainsize_mf.yaml new file mode 100644 index 000000000..6e7541e9f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_1479_trainsize_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/trainsize/rbv2_super/1479/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1479' + budget_type: trainsize + metric: + - acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_15_repl_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_15_repl_mf.yaml new file mode 100644 index 000000000..ed6a95077 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_15_repl_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/repl/rbv2_super/15/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '15' + budget_type: repl + metric: + - acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_15_trainsize_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_15_trainsize_mf.yaml new file mode 100644 index 000000000..624bbe551 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_super_15_trainsize_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/trainsize/rbv2_super/15/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '15' + budget_type: trainsize + metric: + - acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_12_repl_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_12_repl_mf.yaml new file mode 100644 index 000000000..7496d5b50 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_12_repl_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/repl/rbv2_xgboost/12/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '12' + budget_type: repl + metric: + - acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_12_trainsize_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_12_trainsize_mf.yaml new file mode 100644 index 000000000..6ba17cadf --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_12_trainsize_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/trainsize/rbv2_xgboost/12/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '12' + budget_type: trainsize + metric: + - acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_1501_repl_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_1501_repl_mf.yaml new file mode 100644 index 000000000..5e19c0c63 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_1501_repl_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/repl/rbv2_xgboost/1501/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1501' + budget_type: repl + metric: + - acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_1501_trainsize_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_1501_trainsize_mf.yaml new file mode 100644 index 000000000..161c72221 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_1501_trainsize_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/trainsize/rbv2_xgboost/1501/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1501' + budget_type: trainsize + metric: + - acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_16_repl_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_16_repl_mf.yaml new file mode 100644 index 000000000..e12ad8b84 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_16_repl_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/repl/rbv2_xgboost/16/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '16' + budget_type: repl + metric: + - acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_16_trainsize_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_16_trainsize_mf.yaml new file mode 100644 index 000000000..908302da0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_16_trainsize_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/trainsize/rbv2_xgboost/16/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '16' + budget_type: trainsize + metric: + - acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_40499_repl_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_40499_repl_mf.yaml new file mode 100644 index 000000000..1130bec05 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_40499_repl_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/repl/rbv2_xgboost/40499/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40499' + budget_type: repl + metric: + - acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_40499_trainsize_mf.yaml b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_40499_trainsize_mf.yaml new file mode 100644 index 000000000..33c582b63 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/SO/cfg_rbv2_xgboost_40499_trainsize_mf.yaml @@ -0,0 +1,34 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/multifidelity/so/trainsize/rbv2_xgboost/40499/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40499' + budget_type: trainsize + metric: + - acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - acc + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_fcnet_fcnet_naval_propulsion_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_fcnet_fcnet_naval_propulsion_epoch.yaml new file mode 100644 index 000000000..36364f133 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_fcnet_fcnet_naval_propulsion_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/fcnet/fcnet_naval_propulsion/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: fcnet + instance: fcnet_naval_propulsion + budget_type: epoch + metric: valid_mse +task: + n_trials: 147 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 100 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 10 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_fcnet_fcnet_parkinsons_telemonitoring_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_fcnet_fcnet_parkinsons_telemonitoring_epoch.yaml new file mode 100644 index 000000000..8fd6bef1b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_fcnet_fcnet_parkinsons_telemonitoring_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/fcnet/fcnet_parkinsons_telemonitoring/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: fcnet + instance: fcnet_parkinsons_telemonitoring + budget_type: epoch + metric: valid_mse +task: + n_trials: 147 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 100 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 10 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_fcnet_fcnet_protein_structure_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_fcnet_fcnet_protein_structure_epoch.yaml new file mode 100644 index 000000000..e720c4712 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_fcnet_fcnet_protein_structure_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/fcnet/fcnet_protein_structure/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: fcnet + instance: fcnet_protein_structure + budget_type: epoch + metric: valid_mse +task: + n_trials: 147 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 100 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 10 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_fcnet_fcnet_slice_localization_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_fcnet_fcnet_slice_localization_epoch.yaml new file mode 100644 index 000000000..398b07faf --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_fcnet_fcnet_slice_localization_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/fcnet/fcnet_slice_localization/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: fcnet + instance: fcnet_slice_localization + budget_type: epoch + metric: valid_mse +task: + n_trials: 147 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 100 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 10 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_glmnet_1067_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_glmnet_1067_trainsize.yaml new file mode 100644 index 000000000..fa51d3509 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_glmnet_1067_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_glmnet/1067/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_glmnet + instance: '1067' + budget_type: trainsize + metric: f1 +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_glmnet_1489_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_glmnet_1489_trainsize.yaml new file mode 100644 index 000000000..bd6cbc4f6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_glmnet_1489_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_glmnet/1489/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_glmnet + instance: '1489' + budget_type: trainsize + metric: f1 +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_glmnet_40981_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_glmnet_40981_trainsize.yaml new file mode 100644 index 000000000..761f713eb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_glmnet_40981_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_glmnet/40981/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_glmnet + instance: '40981' + budget_type: trainsize + metric: f1 +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_glmnet_41146_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_glmnet_41146_trainsize.yaml new file mode 100644 index 000000000..8e8b3811a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_glmnet_41146_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_glmnet/41146/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_glmnet + instance: '41146' + budget_type: trainsize + metric: f1 +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_ranger_1067_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_ranger_1067_trainsize.yaml new file mode 100644 index 000000000..c06a07dc1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_ranger_1067_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_ranger/1067/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_ranger + instance: '1067' + budget_type: trainsize + metric: f1 +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_ranger_1489_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_ranger_1489_trainsize.yaml new file mode 100644 index 000000000..1dd17bad8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_ranger_1489_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_ranger/1489/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_ranger + instance: '1489' + budget_type: trainsize + metric: f1 +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_ranger_40981_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_ranger_40981_trainsize.yaml new file mode 100644 index 000000000..58aa9ac1f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_ranger_40981_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_ranger/40981/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_ranger + instance: '40981' + budget_type: trainsize + metric: f1 +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_ranger_41146_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_ranger_41146_trainsize.yaml new file mode 100644 index 000000000..ea452362a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_ranger_41146_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_ranger/41146/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_ranger + instance: '41146' + budget_type: trainsize + metric: f1 +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_rpart_1067_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_rpart_1067_trainsize.yaml new file mode 100644 index 000000000..847b92833 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_rpart_1067_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_rpart/1067/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_rpart + instance: '1067' + budget_type: trainsize + metric: f1 +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_rpart_1489_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_rpart_1489_trainsize.yaml new file mode 100644 index 000000000..d0455b9fb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_rpart_1489_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_rpart/1489/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_rpart + instance: '1489' + budget_type: trainsize + metric: f1 +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_rpart_40981_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_rpart_40981_trainsize.yaml new file mode 100644 index 000000000..0d1881b33 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_rpart_40981_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_rpart/40981/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_rpart + instance: '40981' + budget_type: trainsize + metric: f1 +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_rpart_41146_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_rpart_41146_trainsize.yaml new file mode 100644 index 000000000..664960711 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_rpart_41146_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_rpart/41146/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_rpart + instance: '41146' + budget_type: trainsize + metric: f1 +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_super_1067_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_super_1067_trainsize.yaml new file mode 100644 index 000000000..0c3955a77 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_super_1067_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_super/1067/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_super + instance: '1067' + budget_type: trainsize + metric: f1 +task: + n_trials: 232 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 28 + search_space_n_categoricals: 5 + search_space_n_ordinals: 0 + search_space_n_integers: 8 + search_space_n_floats: 15 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_super_1489_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_super_1489_trainsize.yaml new file mode 100644 index 000000000..031d38407 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_super_1489_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_super/1489/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_super + instance: '1489' + budget_type: trainsize + metric: f1 +task: + n_trials: 232 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 28 + search_space_n_categoricals: 5 + search_space_n_ordinals: 0 + search_space_n_integers: 8 + search_space_n_floats: 15 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_super_40981_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_super_40981_trainsize.yaml new file mode 100644 index 000000000..52ef0a6fe --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_super_40981_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_super/40981/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_super + instance: '40981' + budget_type: trainsize + metric: f1 +task: + n_trials: 232 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 28 + search_space_n_categoricals: 5 + search_space_n_ordinals: 0 + search_space_n_integers: 8 + search_space_n_floats: 15 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_super_41146_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_super_41146_trainsize.yaml new file mode 100644 index 000000000..5f2faa2cb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_super_41146_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_super/41146/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_super + instance: '41146' + budget_type: trainsize + metric: f1 +task: + n_trials: 232 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 28 + search_space_n_categoricals: 5 + search_space_n_ordinals: 0 + search_space_n_integers: 8 + search_space_n_floats: 15 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_xgboost_1067_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_xgboost_1067_trainsize.yaml new file mode 100644 index 000000000..0342ec264 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_xgboost_1067_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_xgboost/1067/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_xgboost + instance: '1067' + budget_type: trainsize + metric: f1 +task: + n_trials: 165 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 13 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_xgboost_1489_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_xgboost_1489_trainsize.yaml new file mode 100644 index 000000000..12354899c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_xgboost_1489_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_xgboost/1489/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_xgboost + instance: '1489' + budget_type: trainsize + metric: f1 +task: + n_trials: 165 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 13 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_xgboost_40981_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_xgboost_40981_trainsize.yaml new file mode 100644 index 000000000..da020c1c0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_xgboost_40981_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_xgboost/40981/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_xgboost + instance: '40981' + budget_type: trainsize + metric: f1 +task: + n_trials: 165 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 13 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_xgboost_41146_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_xgboost_41146_trainsize.yaml new file mode 100644 index 000000000..5d413476f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_iaml_xgboost_41146_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/iaml_xgboost/41146/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_xgboost + instance: '41146' + budget_type: trainsize + metric: f1 +task: + n_trials: 165 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 13 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_126025_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_126025_epoch.yaml new file mode 100644 index 000000000..876922441 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_126025_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/126025/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '126025' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_126026_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_126026_epoch.yaml new file mode 100644 index 000000000..f8531a2c3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_126026_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/126026/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '126026' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_126029_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_126029_epoch.yaml new file mode 100644 index 000000000..6ef9716b1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_126029_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/126029/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '126029' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_146212_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_146212_epoch.yaml new file mode 100644 index 000000000..3a66db462 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_146212_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/146212/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '146212' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167104_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167104_epoch.yaml new file mode 100644 index 000000000..c4512ce1b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167104_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167104/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167104' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167149_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167149_epoch.yaml new file mode 100644 index 000000000..fb62a6e15 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167149_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167149/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167149' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167152_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167152_epoch.yaml new file mode 100644 index 000000000..771a36be4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167152_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167152/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167152' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167161_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167161_epoch.yaml new file mode 100644 index 000000000..492e4b741 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167161_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167161/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167161' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167168_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167168_epoch.yaml new file mode 100644 index 000000000..fb0570e6a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167168_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167168/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167168' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167181_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167181_epoch.yaml new file mode 100644 index 000000000..4bd3f5d86 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167181_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167181/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167181' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167184_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167184_epoch.yaml new file mode 100644 index 000000000..d2f95f9b1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167184_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167184/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167184' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167185_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167185_epoch.yaml new file mode 100644 index 000000000..7eae7c26d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167185_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167185/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167185' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167190_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167190_epoch.yaml new file mode 100644 index 000000000..b18d3da64 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167190_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167190/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167190' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167200_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167200_epoch.yaml new file mode 100644 index 000000000..94bc3a39c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167200_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167200/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167200' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167201_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167201_epoch.yaml new file mode 100644 index 000000000..a8a92319b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_167201_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/167201/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167201' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168329_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168329_epoch.yaml new file mode 100644 index 000000000..13e26994c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168329_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/168329/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '168329' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168330_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168330_epoch.yaml new file mode 100644 index 000000000..2ea6c5935 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168330_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/168330/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '168330' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168331_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168331_epoch.yaml new file mode 100644 index 000000000..54f2c9c83 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168331_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/168331/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '168331' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168335_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168335_epoch.yaml new file mode 100644 index 000000000..65b950540 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168335_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/168335/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '168335' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168868_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168868_epoch.yaml new file mode 100644 index 000000000..fc0d42b92 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168868_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/168868/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '168868' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168908_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168908_epoch.yaml new file mode 100644 index 000000000..09b704095 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168908_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/168908/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '168908' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168910_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168910_epoch.yaml new file mode 100644 index 000000000..ac85e2b97 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_168910_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/168910/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '168910' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189354_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189354_epoch.yaml new file mode 100644 index 000000000..b4cad4118 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189354_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/189354/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189354' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189862_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189862_epoch.yaml new file mode 100644 index 000000000..4745e73da --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189862_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/189862/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189862' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189865_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189865_epoch.yaml new file mode 100644 index 000000000..2e6818926 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189865_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/189865/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189865' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189866_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189866_epoch.yaml new file mode 100644 index 000000000..142f43029 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189866_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/189866/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189866' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189873_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189873_epoch.yaml new file mode 100644 index 000000000..8ae9831ae --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189873_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/189873/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189873' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189905_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189905_epoch.yaml new file mode 100644 index 000000000..ae36e7d56 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189905_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/189905/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189905' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189906_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189906_epoch.yaml new file mode 100644 index 000000000..318cf498f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189906_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/189906/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189906' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189908_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189908_epoch.yaml new file mode 100644 index 000000000..6e1fd3ffc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189908_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/189908/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189908' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189909_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189909_epoch.yaml new file mode 100644 index 000000000..75567ad16 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_189909_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/189909/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189909' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_34539_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_34539_epoch.yaml new file mode 100644 index 000000000..7219df447 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_34539_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/34539/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '34539' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_3945_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_3945_epoch.yaml new file mode 100644 index 000000000..f2344b139 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_3945_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/3945/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '3945' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_7593_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_7593_epoch.yaml new file mode 100644 index 000000000..d4ca85307 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_lcbench_7593_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/lcbench/7593/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '7593' + budget_type: epoch + metric: val_accuracy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_nb301_CIFAR10_epoch.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_nb301_CIFAR10_epoch.yaml new file mode 100644 index 000000000..93b3f1a59 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_nb301_CIFAR10_epoch.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/nb301/CIFAR10/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: nb301 + instance: CIFAR10 + budget_type: epoch + metric: val_accuracy +task: + n_trials: 254 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 98 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 34 + search_space_n_categoricals: 34 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1040_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1040_repl.yaml new file mode 100644 index 000000000..854ee1a2d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1040_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1040/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1040' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1040_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1040_trainsize.yaml new file mode 100644 index 000000000..7b78225c6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1040_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1040/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1040' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1049_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1049_repl.yaml new file mode 100644 index 000000000..a8af878ad --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1049_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1049/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1049' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1049_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1049_trainsize.yaml new file mode 100644 index 000000000..c8b9b6b67 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1049_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1049/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1049' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1050_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1050_repl.yaml new file mode 100644 index 000000000..ea1d1451c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1050_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1050/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1050' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1050_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1050_trainsize.yaml new file mode 100644 index 000000000..1929e0240 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1050_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1050/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1050' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1053_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1053_repl.yaml new file mode 100644 index 000000000..df12bb652 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1053_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1053/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1053' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1053_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1053_trainsize.yaml new file mode 100644 index 000000000..9ffd209ce --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1053_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1053/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1053' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1056_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1056_repl.yaml new file mode 100644 index 000000000..0f1d6f705 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1056_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1056/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1056' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1056_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1056_trainsize.yaml new file mode 100644 index 000000000..8eca13b2f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1056_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1056/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1056' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1063_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1063_repl.yaml new file mode 100644 index 000000000..d141cccd8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1063_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1063/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1063' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1063_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1063_trainsize.yaml new file mode 100644 index 000000000..439704a46 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1063_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1063/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1063' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1067_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1067_repl.yaml new file mode 100644 index 000000000..4112f672a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1067_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1067/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1067' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1067_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1067_trainsize.yaml new file mode 100644 index 000000000..9437274d2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1067_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1067/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1067' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1068_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1068_repl.yaml new file mode 100644 index 000000000..608e99631 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1068_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1068/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1068' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1068_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1068_trainsize.yaml new file mode 100644 index 000000000..4180ac1f0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1068_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1068/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1068' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1111_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1111_repl.yaml new file mode 100644 index 000000000..d4d277470 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1111_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1111/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1111' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1111_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1111_trainsize.yaml new file mode 100644 index 000000000..e3452080b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1111_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1111/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1111' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_11_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_11_repl.yaml new file mode 100644 index 000000000..523074717 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_11_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/11/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '11' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_11_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_11_trainsize.yaml new file mode 100644 index 000000000..0e68b6c3f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_11_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/11/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '11' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1220_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1220_repl.yaml new file mode 100644 index 000000000..406827420 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1220_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1220/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1220' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1220_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1220_trainsize.yaml new file mode 100644 index 000000000..ad302028e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1220_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1220/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1220' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_12_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_12_repl.yaml new file mode 100644 index 000000000..649810d90 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_12_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/12/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '12' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_12_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_12_trainsize.yaml new file mode 100644 index 000000000..612642f36 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_12_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/12/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '12' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1457_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1457_repl.yaml new file mode 100644 index 000000000..acb67505d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1457_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1457/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1457' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1457_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1457_trainsize.yaml new file mode 100644 index 000000000..0c32f57fa --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1457_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1457/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1457' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1461_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1461_repl.yaml new file mode 100644 index 000000000..8a4dd1545 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1461_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1461/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1461' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1461_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1461_trainsize.yaml new file mode 100644 index 000000000..1865931d6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1461_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1461/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1461' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1462_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1462_repl.yaml new file mode 100644 index 000000000..3cdc4395a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1462_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1462/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1462' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1462_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1462_trainsize.yaml new file mode 100644 index 000000000..9d91d03fb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1462_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1462/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1462' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1464_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1464_repl.yaml new file mode 100644 index 000000000..2f07a2c0d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1464_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1464/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1464' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1464_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1464_trainsize.yaml new file mode 100644 index 000000000..aae7085e2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1464_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1464/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1464' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1468_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1468_repl.yaml new file mode 100644 index 000000000..ea7f9ef9f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1468_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1468/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1468' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1468_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1468_trainsize.yaml new file mode 100644 index 000000000..084b17dfa --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1468_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1468/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1468' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1475_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1475_repl.yaml new file mode 100644 index 000000000..75be5508d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1475_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1475/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1475' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1475_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1475_trainsize.yaml new file mode 100644 index 000000000..81181e3d6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1475_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1475/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1475' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1476_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1476_repl.yaml new file mode 100644 index 000000000..6d1c27dd3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1476_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1476/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1476' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1476_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1476_trainsize.yaml new file mode 100644 index 000000000..9f954a384 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1476_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1476/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1476' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1478_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1478_repl.yaml new file mode 100644 index 000000000..1e85f5939 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1478_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1478/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1478' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1478_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1478_trainsize.yaml new file mode 100644 index 000000000..295c9b84c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1478_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1478/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1478' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1479_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1479_repl.yaml new file mode 100644 index 000000000..5e128291e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1479_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1479/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1479' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1479_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1479_trainsize.yaml new file mode 100644 index 000000000..82ccd103b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1479_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1479/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1479' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1480_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1480_repl.yaml new file mode 100644 index 000000000..4ab705ec5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1480_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1480/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1480' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1480_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1480_trainsize.yaml new file mode 100644 index 000000000..238ce122c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1480_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1480/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1480' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1485_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1485_repl.yaml new file mode 100644 index 000000000..90e722da4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1485_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1485/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1485' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1485_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1485_trainsize.yaml new file mode 100644 index 000000000..fe326223e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1485_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1485/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1485' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1486_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1486_repl.yaml new file mode 100644 index 000000000..5c8f06957 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1486_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1486/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1486' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1486_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1486_trainsize.yaml new file mode 100644 index 000000000..b5bf18138 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1486_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1486/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1486' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1487_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1487_repl.yaml new file mode 100644 index 000000000..7543ed5d4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1487_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1487/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1487' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1487_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1487_trainsize.yaml new file mode 100644 index 000000000..59990676c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1487_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1487/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1487' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1489_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1489_repl.yaml new file mode 100644 index 000000000..52c4f999f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1489_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1489/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1489' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1489_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1489_trainsize.yaml new file mode 100644 index 000000000..02541ed8d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1489_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1489/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1489' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1493_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1493_repl.yaml new file mode 100644 index 000000000..a221de659 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1493_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1493/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1493' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1493_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1493_trainsize.yaml new file mode 100644 index 000000000..c3311a092 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1493_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1493/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1493' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1494_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1494_repl.yaml new file mode 100644 index 000000000..eeb53d6d2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1494_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1494/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1494' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1494_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1494_trainsize.yaml new file mode 100644 index 000000000..ba0085460 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1494_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1494/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1494' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1497_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1497_repl.yaml new file mode 100644 index 000000000..67015444e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1497_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1497/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1497' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1497_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1497_trainsize.yaml new file mode 100644 index 000000000..769a17164 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1497_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1497/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1497' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_14_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_14_repl.yaml new file mode 100644 index 000000000..5f4a450bf --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_14_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/14/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '14' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_14_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_14_trainsize.yaml new file mode 100644 index 000000000..ec8b06dda --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_14_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/14/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '14' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1501_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1501_repl.yaml new file mode 100644 index 000000000..99d712aaa --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1501_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1501/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1501' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1501_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1501_trainsize.yaml new file mode 100644 index 000000000..b755b9376 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1501_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1501/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1501' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1510_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1510_repl.yaml new file mode 100644 index 000000000..24bbf8dd2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1510_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1510/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1510' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1510_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1510_trainsize.yaml new file mode 100644 index 000000000..35aa160d0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1510_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1510/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1510' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1515_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1515_repl.yaml new file mode 100644 index 000000000..c161729dd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1515_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1515/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1515' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1515_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1515_trainsize.yaml new file mode 100644 index 000000000..4dffd42dd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1515_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1515/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1515' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_151_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_151_repl.yaml new file mode 100644 index 000000000..00381d7d3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_151_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/151/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '151' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_151_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_151_trainsize.yaml new file mode 100644 index 000000000..6e0cc9cf5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_151_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/151/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '151' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1590_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1590_repl.yaml new file mode 100644 index 000000000..6e91598cc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1590_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1590/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1590' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1590_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1590_trainsize.yaml new file mode 100644 index 000000000..555ca5a7a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_1590_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/1590/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1590' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_15_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_15_repl.yaml new file mode 100644 index 000000000..fede2c8c6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_15_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/15/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '15' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_15_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_15_trainsize.yaml new file mode 100644 index 000000000..094fe6ae9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_15_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/15/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '15' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_16_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_16_repl.yaml new file mode 100644 index 000000000..69513c9bb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_16_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/16/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '16' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_16_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_16_trainsize.yaml new file mode 100644 index 000000000..a3f8813b9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_16_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/16/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '16' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_181_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_181_repl.yaml new file mode 100644 index 000000000..272a6b9ec --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_181_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/181/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '181' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_181_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_181_trainsize.yaml new file mode 100644 index 000000000..37f938e22 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_181_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/181/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '181' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_182_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_182_repl.yaml new file mode 100644 index 000000000..19505af9e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_182_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/182/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '182' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_182_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_182_trainsize.yaml new file mode 100644 index 000000000..8d01935e0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_182_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/182/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '182' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_188_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_188_repl.yaml new file mode 100644 index 000000000..832302b90 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_188_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/188/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '188' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_188_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_188_trainsize.yaml new file mode 100644 index 000000000..82f9aa599 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_188_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/188/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '188' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_18_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_18_repl.yaml new file mode 100644 index 000000000..303f57c76 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_18_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/18/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '18' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_18_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_18_trainsize.yaml new file mode 100644 index 000000000..7160298a3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_18_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/18/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '18' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_22_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_22_repl.yaml new file mode 100644 index 000000000..a32ee7f67 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_22_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/22/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '22' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_22_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_22_trainsize.yaml new file mode 100644 index 000000000..2068dba18 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_22_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/22/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '22' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23381_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23381_repl.yaml new file mode 100644 index 000000000..3697fc81d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23381_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/23381/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '23381' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23381_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23381_trainsize.yaml new file mode 100644 index 000000000..62024f1ff --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23381_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/23381/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '23381' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23512_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23512_repl.yaml new file mode 100644 index 000000000..a6f8f0ffd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23512_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/23512/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '23512' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23512_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23512_trainsize.yaml new file mode 100644 index 000000000..6837f0453 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23512_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/23512/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '23512' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23517_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23517_repl.yaml new file mode 100644 index 000000000..8923eb165 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23517_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/23517/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '23517' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23517_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23517_trainsize.yaml new file mode 100644 index 000000000..5305c2458 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23517_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/23517/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '23517' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23_repl.yaml new file mode 100644 index 000000000..7b27ee02d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/23/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '23' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23_trainsize.yaml new file mode 100644 index 000000000..a28ec9c04 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_23_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/23/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '23' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_24_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_24_repl.yaml new file mode 100644 index 000000000..1c4bcaa60 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_24_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/24/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '24' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_24_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_24_trainsize.yaml new file mode 100644 index 000000000..27764cdcc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_24_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/24/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '24' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_28_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_28_repl.yaml new file mode 100644 index 000000000..c0bfcbd99 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_28_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/28/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '28' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_28_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_28_trainsize.yaml new file mode 100644 index 000000000..68abdebf3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_28_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/28/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '28' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_29_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_29_repl.yaml new file mode 100644 index 000000000..e5e048229 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_29_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/29/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '29' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_29_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_29_trainsize.yaml new file mode 100644 index 000000000..d3850fe04 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_29_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/29/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '29' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_300_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_300_repl.yaml new file mode 100644 index 000000000..1170cc99d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_300_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/300/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '300' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_300_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_300_trainsize.yaml new file mode 100644 index 000000000..96fc32992 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_300_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/300/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '300' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_307_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_307_repl.yaml new file mode 100644 index 000000000..a898ed7e6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_307_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/307/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '307' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_307_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_307_trainsize.yaml new file mode 100644 index 000000000..11e394d03 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_307_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/307/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '307' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_312_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_312_repl.yaml new file mode 100644 index 000000000..1002ccb5a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_312_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/312/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '312' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_312_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_312_trainsize.yaml new file mode 100644 index 000000000..594177f68 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_312_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/312/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '312' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_31_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_31_repl.yaml new file mode 100644 index 000000000..b1f9b27ee --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_31_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/31/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '31' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_31_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_31_trainsize.yaml new file mode 100644 index 000000000..24e4d7f85 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_31_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/31/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '31' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_32_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_32_repl.yaml new file mode 100644 index 000000000..789830865 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_32_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/32/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '32' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_32_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_32_trainsize.yaml new file mode 100644 index 000000000..4c4eb0064 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_32_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/32/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '32' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_334_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_334_repl.yaml new file mode 100644 index 000000000..87d189f7e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_334_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/334/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '334' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_334_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_334_trainsize.yaml new file mode 100644 index 000000000..634f2e887 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_334_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/334/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '334' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_375_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_375_repl.yaml new file mode 100644 index 000000000..9376dfa54 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_375_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/375/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '375' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_375_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_375_trainsize.yaml new file mode 100644 index 000000000..0beff748c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_375_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/375/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '375' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_377_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_377_repl.yaml new file mode 100644 index 000000000..be3b3db8b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_377_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/377/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '377' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_377_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_377_trainsize.yaml new file mode 100644 index 000000000..36d980f64 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_377_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/377/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '377' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_37_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_37_repl.yaml new file mode 100644 index 000000000..b8c4df1ef --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_37_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/37/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '37' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_37_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_37_trainsize.yaml new file mode 100644 index 000000000..608ac0c13 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_37_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/37/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '37' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_38_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_38_repl.yaml new file mode 100644 index 000000000..d567c1dcb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_38_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/38/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '38' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_38_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_38_trainsize.yaml new file mode 100644 index 000000000..4a1d0b05a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_38_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/38/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '38' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_3_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_3_repl.yaml new file mode 100644 index 000000000..64bd7a353 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_3_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/3/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '3' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_3_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_3_trainsize.yaml new file mode 100644 index 000000000..c3e903c89 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_3_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/3/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '3' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40496_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40496_repl.yaml new file mode 100644 index 000000000..a38fb1151 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40496_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40496/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40496' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40496_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40496_trainsize.yaml new file mode 100644 index 000000000..10a5ffb00 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40496_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40496/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40496' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40498_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40498_repl.yaml new file mode 100644 index 000000000..97699ee62 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40498_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40498/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40498' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40498_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40498_trainsize.yaml new file mode 100644 index 000000000..72be2a9be --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40498_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40498/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40498' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40499_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40499_repl.yaml new file mode 100644 index 000000000..a2dcfb0c7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40499_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40499/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40499' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40499_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40499_trainsize.yaml new file mode 100644 index 000000000..e7af8678f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40499_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40499/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40499' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40536_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40536_repl.yaml new file mode 100644 index 000000000..2550c85fc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40536_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40536/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40536' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40536_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40536_trainsize.yaml new file mode 100644 index 000000000..65422f328 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40536_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40536/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40536' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40668_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40668_repl.yaml new file mode 100644 index 000000000..dfe716ab3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40668_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40668/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40668' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40668_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40668_trainsize.yaml new file mode 100644 index 000000000..dd920bb99 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40668_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40668/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40668' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40670_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40670_repl.yaml new file mode 100644 index 000000000..d9e87b2f7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40670_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40670/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40670' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40670_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40670_trainsize.yaml new file mode 100644 index 000000000..bfad5a3a5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40670_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40670/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40670' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40685_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40685_repl.yaml new file mode 100644 index 000000000..e7493d69a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40685_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40685/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40685' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40685_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40685_trainsize.yaml new file mode 100644 index 000000000..4e9c29c40 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40685_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40685/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40685' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40701_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40701_repl.yaml new file mode 100644 index 000000000..a237be1d5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40701_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40701/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40701' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40701_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40701_trainsize.yaml new file mode 100644 index 000000000..bb9df95c7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40701_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40701/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40701' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40900_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40900_repl.yaml new file mode 100644 index 000000000..7e7267ce3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40900_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40900/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40900' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40900_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40900_trainsize.yaml new file mode 100644 index 000000000..c96e1fcd9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40900_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40900/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40900' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40923_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40923_repl.yaml new file mode 100644 index 000000000..2be177bab --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40923_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40923/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40923' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40923_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40923_trainsize.yaml new file mode 100644 index 000000000..cc1c8c3ce --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40923_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40923/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40923' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40927_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40927_repl.yaml new file mode 100644 index 000000000..68baebb1c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40927_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40927/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40927' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40927_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40927_trainsize.yaml new file mode 100644 index 000000000..242d61015 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40927_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40927/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40927' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40966_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40966_repl.yaml new file mode 100644 index 000000000..15b25e20f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40966_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40966/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40966' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40966_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40966_trainsize.yaml new file mode 100644 index 000000000..62d731666 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40966_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40966/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40966' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40975_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40975_repl.yaml new file mode 100644 index 000000000..d80d7f0dd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40975_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40975/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40975' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40975_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40975_trainsize.yaml new file mode 100644 index 000000000..006ea0a17 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40975_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40975/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40975' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40978_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40978_repl.yaml new file mode 100644 index 000000000..bbc262ec3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40978_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40978/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40978' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40978_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40978_trainsize.yaml new file mode 100644 index 000000000..76201df07 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40978_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40978/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40978' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40979_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40979_repl.yaml new file mode 100644 index 000000000..f1c1a25b4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40979_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40979/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40979' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40979_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40979_trainsize.yaml new file mode 100644 index 000000000..79bf3da49 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40979_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40979/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40979' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40981_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40981_repl.yaml new file mode 100644 index 000000000..0b4d3b155 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40981_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40981/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40981' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40981_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40981_trainsize.yaml new file mode 100644 index 000000000..46e5ae002 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40981_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40981/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40981' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40982_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40982_repl.yaml new file mode 100644 index 000000000..5bacd1fc3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40982_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40982/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40982' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40982_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40982_trainsize.yaml new file mode 100644 index 000000000..46cd7df4f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40982_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40982/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40982' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40983_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40983_repl.yaml new file mode 100644 index 000000000..14042b5de --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40983_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40983/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40983' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40983_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40983_trainsize.yaml new file mode 100644 index 000000000..21afedc2e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40983_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40983/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40983' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40984_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40984_repl.yaml new file mode 100644 index 000000000..8faf85b6c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40984_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40984/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40984' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40984_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40984_trainsize.yaml new file mode 100644 index 000000000..c43587541 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40984_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40984/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40984' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40994_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40994_repl.yaml new file mode 100644 index 000000000..eccdd6a22 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40994_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40994/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40994' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40994_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40994_trainsize.yaml new file mode 100644 index 000000000..e7b704b01 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40994_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40994/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40994' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40996_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40996_repl.yaml new file mode 100644 index 000000000..06641fbaf --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40996_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40996/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40996' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40996_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40996_trainsize.yaml new file mode 100644 index 000000000..9b7678470 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_40996_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/40996/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40996' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41027_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41027_repl.yaml new file mode 100644 index 000000000..1edd782db --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41027_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41027/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41027' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41027_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41027_trainsize.yaml new file mode 100644 index 000000000..6ca1ed506 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41027_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41027/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41027' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41138_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41138_repl.yaml new file mode 100644 index 000000000..ef4babe43 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41138_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41138/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41138' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41138_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41138_trainsize.yaml new file mode 100644 index 000000000..743496d5c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41138_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41138/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41138' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41142_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41142_repl.yaml new file mode 100644 index 000000000..c73997897 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41142_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41142/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41142' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41142_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41142_trainsize.yaml new file mode 100644 index 000000000..3355762f7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41142_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41142/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41142' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41143_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41143_repl.yaml new file mode 100644 index 000000000..67468d703 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41143_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41143/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41143' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41143_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41143_trainsize.yaml new file mode 100644 index 000000000..59966aa0e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41143_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41143/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41143' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41146_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41146_repl.yaml new file mode 100644 index 000000000..120f5b12b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41146_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41146/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41146' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41146_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41146_trainsize.yaml new file mode 100644 index 000000000..c14554fe6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41146_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41146/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41146' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41150_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41150_repl.yaml new file mode 100644 index 000000000..c5091e5c6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41150_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41150/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41150' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41150_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41150_trainsize.yaml new file mode 100644 index 000000000..58bd65d12 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41150_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41150/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41150' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41156_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41156_repl.yaml new file mode 100644 index 000000000..3f025af4c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41156_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41156/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41156' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41156_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41156_trainsize.yaml new file mode 100644 index 000000000..401ea8023 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41156_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41156/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41156' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41157_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41157_repl.yaml new file mode 100644 index 000000000..6a73399d8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41157_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41157/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41157' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41157_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41157_trainsize.yaml new file mode 100644 index 000000000..c67b59c73 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41157_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41157/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41157' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41159_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41159_repl.yaml new file mode 100644 index 000000000..5301ecbed --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41159_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41159/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41159' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41159_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41159_trainsize.yaml new file mode 100644 index 000000000..be4dc6529 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41159_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41159/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41159' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41161_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41161_repl.yaml new file mode 100644 index 000000000..b16d2c964 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41161_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41161/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41161' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41161_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41161_trainsize.yaml new file mode 100644 index 000000000..577cabe58 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41161_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41161/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41161' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41162_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41162_repl.yaml new file mode 100644 index 000000000..02762600e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41162_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41162/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41162' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41162_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41162_trainsize.yaml new file mode 100644 index 000000000..130f19daf --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41162_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41162/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41162' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41163_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41163_repl.yaml new file mode 100644 index 000000000..d104bb628 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41163_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41163/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41163' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41163_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41163_trainsize.yaml new file mode 100644 index 000000000..b18e9350a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41163_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41163/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41163' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41164_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41164_repl.yaml new file mode 100644 index 000000000..f20b1f84c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41164_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41164/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41164' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41164_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41164_trainsize.yaml new file mode 100644 index 000000000..8d1b0ab44 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41164_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41164/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41164' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41165_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41165_repl.yaml new file mode 100644 index 000000000..3f4dae68d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41165_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41165/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41165' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41165_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41165_trainsize.yaml new file mode 100644 index 000000000..bd73f4667 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41165_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41165/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41165' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41166_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41166_repl.yaml new file mode 100644 index 000000000..14f7df987 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41166_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41166/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41166' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41166_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41166_trainsize.yaml new file mode 100644 index 000000000..af2b9d2f6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41166_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41166/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41166' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41168_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41168_repl.yaml new file mode 100644 index 000000000..63161de41 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41168_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41168/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41168' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41168_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41168_trainsize.yaml new file mode 100644 index 000000000..c54131e25 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41168_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41168/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41168' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41169_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41169_repl.yaml new file mode 100644 index 000000000..f8f33d406 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41169_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41169/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41169' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41169_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41169_trainsize.yaml new file mode 100644 index 000000000..fb8b5b02c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41169_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41169/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41169' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41212_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41212_repl.yaml new file mode 100644 index 000000000..d1f063ec2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41212_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41212/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41212' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41212_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41212_trainsize.yaml new file mode 100644 index 000000000..bad24949f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41212_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41212/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41212' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41216_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41216_repl.yaml new file mode 100644 index 000000000..ed6ccaad8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41216_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41216/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41216' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41216_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41216_trainsize.yaml new file mode 100644 index 000000000..5717a621b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41216_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41216/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41216' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41278_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41278_repl.yaml new file mode 100644 index 000000000..3f1c02ba5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41278_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41278/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41278' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41278_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41278_trainsize.yaml new file mode 100644 index 000000000..cfe0e6638 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_41278_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/41278/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '41278' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4134_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4134_repl.yaml new file mode 100644 index 000000000..5dbb267f8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4134_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/4134/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '4134' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4134_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4134_trainsize.yaml new file mode 100644 index 000000000..7812aaee3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4134_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/4134/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '4134' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4154_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4154_repl.yaml new file mode 100644 index 000000000..b50c62bb4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4154_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/4154/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '4154' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4154_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4154_trainsize.yaml new file mode 100644 index 000000000..3365e1c4c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4154_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/4154/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '4154' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_42_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_42_repl.yaml new file mode 100644 index 000000000..5e3a2eba7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_42_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/42/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '42' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_42_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_42_trainsize.yaml new file mode 100644 index 000000000..1a6149110 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_42_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/42/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '42' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_44_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_44_repl.yaml new file mode 100644 index 000000000..8a3746cb3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_44_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/44/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '44' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_44_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_44_trainsize.yaml new file mode 100644 index 000000000..2b3723411 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_44_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/44/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '44' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4534_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4534_repl.yaml new file mode 100644 index 000000000..f9461fd35 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4534_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/4534/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '4534' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4534_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4534_trainsize.yaml new file mode 100644 index 000000000..a20d8aff6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4534_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/4534/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '4534' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4538_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4538_repl.yaml new file mode 100644 index 000000000..9b823fd64 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4538_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/4538/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '4538' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4538_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4538_trainsize.yaml new file mode 100644 index 000000000..ba02b11f6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4538_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/4538/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '4538' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4541_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4541_repl.yaml new file mode 100644 index 000000000..f4b729002 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4541_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/4541/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '4541' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4541_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4541_trainsize.yaml new file mode 100644 index 000000000..4ca83d730 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_4541_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/4541/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '4541' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_458_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_458_repl.yaml new file mode 100644 index 000000000..328bba881 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_458_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/458/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '458' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_458_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_458_trainsize.yaml new file mode 100644 index 000000000..052a77868 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_458_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/458/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '458' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_469_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_469_repl.yaml new file mode 100644 index 000000000..ef65d52c1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_469_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/469/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '469' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_469_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_469_trainsize.yaml new file mode 100644 index 000000000..4f5d4fec9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_469_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/469/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '469' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_46_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_46_repl.yaml new file mode 100644 index 000000000..37226fd2b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_46_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/46/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '46' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_46_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_46_trainsize.yaml new file mode 100644 index 000000000..f30627286 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_46_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/46/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '46' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_470_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_470_repl.yaml new file mode 100644 index 000000000..2e312fa4c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_470_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/470/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '470' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_470_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_470_trainsize.yaml new file mode 100644 index 000000000..320faa886 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_470_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/470/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '470' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_50_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_50_repl.yaml new file mode 100644 index 000000000..66de7c6f4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_50_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/50/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '50' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_50_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_50_trainsize.yaml new file mode 100644 index 000000000..55945117c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_50_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/50/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '50' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_54_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_54_repl.yaml new file mode 100644 index 000000000..d909b6b80 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_54_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/54/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '54' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_54_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_54_trainsize.yaml new file mode 100644 index 000000000..2774e8160 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_54_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/54/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '54' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_554_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_554_repl.yaml new file mode 100644 index 000000000..a2b6c82d2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_554_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/554/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '554' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_554_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_554_trainsize.yaml new file mode 100644 index 000000000..af7aa6642 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_554_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/554/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '554' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_60_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_60_repl.yaml new file mode 100644 index 000000000..7b822ad2f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_60_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/60/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '60' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_60_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_60_trainsize.yaml new file mode 100644 index 000000000..25f305547 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_60_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/60/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '60' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_6332_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_6332_repl.yaml new file mode 100644 index 000000000..c73024c19 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_6332_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/6332/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '6332' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_6332_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_6332_trainsize.yaml new file mode 100644 index 000000000..054a602e1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_6332_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/6332/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '6332' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_6_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_6_repl.yaml new file mode 100644 index 000000000..94bd8433e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_6_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/6/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '6' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_6_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_6_trainsize.yaml new file mode 100644 index 000000000..9729e9e0a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_aknn_6_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_aknn/6/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '6' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1040_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1040_repl.yaml new file mode 100644 index 000000000..894d7ecd7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1040_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1040/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1040' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1040_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1040_trainsize.yaml new file mode 100644 index 000000000..691220c32 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1040_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1040/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1040' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1049_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1049_repl.yaml new file mode 100644 index 000000000..455276ab3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1049_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1049/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1049' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1049_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1049_trainsize.yaml new file mode 100644 index 000000000..cc4c61e85 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1049_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1049/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1049' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1050_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1050_repl.yaml new file mode 100644 index 000000000..866ab488a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1050_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1050/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1050' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1050_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1050_trainsize.yaml new file mode 100644 index 000000000..29eeb8799 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1050_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1050/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1050' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1053_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1053_repl.yaml new file mode 100644 index 000000000..b846bbefe --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1053_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1053/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1053' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1053_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1053_trainsize.yaml new file mode 100644 index 000000000..802110769 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1053_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1053/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1053' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1056_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1056_repl.yaml new file mode 100644 index 000000000..cfbb93cb3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1056_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1056/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1056' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1056_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1056_trainsize.yaml new file mode 100644 index 000000000..156ffdf6c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1056_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1056/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1056' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1063_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1063_repl.yaml new file mode 100644 index 000000000..cbce4f95d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1063_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1063/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1063' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1063_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1063_trainsize.yaml new file mode 100644 index 000000000..0be8a5c06 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1063_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1063/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1063' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1067_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1067_repl.yaml new file mode 100644 index 000000000..779d25305 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1067_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1067/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1067' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1067_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1067_trainsize.yaml new file mode 100644 index 000000000..3c2b4a73a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1067_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1067/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1067' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1068_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1068_repl.yaml new file mode 100644 index 000000000..3829c3f24 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1068_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1068/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1068' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1068_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1068_trainsize.yaml new file mode 100644 index 000000000..0b806db8c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1068_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1068/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1068' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1111_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1111_repl.yaml new file mode 100644 index 000000000..0fc223373 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1111_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1111/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1111' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1111_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1111_trainsize.yaml new file mode 100644 index 000000000..8bf474b23 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1111_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1111/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1111' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_11_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_11_repl.yaml new file mode 100644 index 000000000..ba6f23dde --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_11_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/11/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '11' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_11_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_11_trainsize.yaml new file mode 100644 index 000000000..844474607 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_11_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/11/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '11' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1220_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1220_repl.yaml new file mode 100644 index 000000000..37a4adcbf --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1220_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1220/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1220' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1220_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1220_trainsize.yaml new file mode 100644 index 000000000..be460c9f6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1220_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1220/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1220' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_12_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_12_repl.yaml new file mode 100644 index 000000000..65d631d7c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_12_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/12/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '12' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_12_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_12_trainsize.yaml new file mode 100644 index 000000000..25c53e350 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_12_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/12/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '12' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1457_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1457_repl.yaml new file mode 100644 index 000000000..74dd3a127 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1457_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1457/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1457' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1457_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1457_trainsize.yaml new file mode 100644 index 000000000..e5c9dfa5a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1457_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1457/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1457' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1461_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1461_repl.yaml new file mode 100644 index 000000000..917c0cad6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1461_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1461/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1461' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1461_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1461_trainsize.yaml new file mode 100644 index 000000000..3a44a5495 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1461_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1461/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1461' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1462_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1462_repl.yaml new file mode 100644 index 000000000..856ebbd16 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1462_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1462/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1462' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1462_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1462_trainsize.yaml new file mode 100644 index 000000000..737007d10 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1462_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1462/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1462' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1464_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1464_repl.yaml new file mode 100644 index 000000000..e2c01a324 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1464_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1464/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1464' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1464_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1464_trainsize.yaml new file mode 100644 index 000000000..2ab86147f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1464_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1464/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1464' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1468_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1468_repl.yaml new file mode 100644 index 000000000..0151d3ecf --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1468_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1468/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1468' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1468_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1468_trainsize.yaml new file mode 100644 index 000000000..5fd1eee84 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1468_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1468/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1468' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1475_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1475_repl.yaml new file mode 100644 index 000000000..d2bdfe5ff --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1475_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1475/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1475' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1475_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1475_trainsize.yaml new file mode 100644 index 000000000..4d62e8815 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1475_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1475/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1475' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1476_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1476_repl.yaml new file mode 100644 index 000000000..cbcbc7eb9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1476_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1476/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1476' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1476_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1476_trainsize.yaml new file mode 100644 index 000000000..bb72db44b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1476_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1476/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1476' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1478_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1478_repl.yaml new file mode 100644 index 000000000..73edabdf5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1478_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1478/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1478' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1478_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1478_trainsize.yaml new file mode 100644 index 000000000..fc838adff --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1478_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1478/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1478' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1479_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1479_repl.yaml new file mode 100644 index 000000000..cbe3a7600 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1479_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1479/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1479' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1479_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1479_trainsize.yaml new file mode 100644 index 000000000..fe1e68597 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1479_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1479/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1479' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1480_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1480_repl.yaml new file mode 100644 index 000000000..94b60afdb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1480_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1480/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1480' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1480_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1480_trainsize.yaml new file mode 100644 index 000000000..0bfce289a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1480_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1480/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1480' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1485_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1485_repl.yaml new file mode 100644 index 000000000..f9dcf81ee --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1485_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1485/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1485' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1485_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1485_trainsize.yaml new file mode 100644 index 000000000..06e0ca100 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1485_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1485/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1485' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1486_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1486_repl.yaml new file mode 100644 index 000000000..e70d56442 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1486_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1486/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1486' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1486_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1486_trainsize.yaml new file mode 100644 index 000000000..8d4506b19 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1486_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1486/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1486' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1487_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1487_repl.yaml new file mode 100644 index 000000000..3a69c76b4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1487_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1487/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1487' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1487_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1487_trainsize.yaml new file mode 100644 index 000000000..a6e5c991b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1487_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1487/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1487' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1489_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1489_repl.yaml new file mode 100644 index 000000000..9479f8ad8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1489_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1489/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1489' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1489_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1489_trainsize.yaml new file mode 100644 index 000000000..2332f960b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1489_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1489/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1489' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1493_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1493_repl.yaml new file mode 100644 index 000000000..3a5dd5366 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1493_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1493/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1493' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1493_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1493_trainsize.yaml new file mode 100644 index 000000000..06e47e48a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1493_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1493/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1493' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1494_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1494_repl.yaml new file mode 100644 index 000000000..12c0b570f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1494_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1494/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1494' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1494_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1494_trainsize.yaml new file mode 100644 index 000000000..eca306fd5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1494_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1494/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1494' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1497_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1497_repl.yaml new file mode 100644 index 000000000..24c9197e9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1497_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1497/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1497' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1497_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1497_trainsize.yaml new file mode 100644 index 000000000..b8d725718 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1497_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1497/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1497' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_14_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_14_repl.yaml new file mode 100644 index 000000000..39c048d9c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_14_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/14/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '14' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_14_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_14_trainsize.yaml new file mode 100644 index 000000000..48adf277d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_14_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/14/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '14' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1501_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1501_repl.yaml new file mode 100644 index 000000000..af9b78f50 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1501_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1501/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1501' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1501_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1501_trainsize.yaml new file mode 100644 index 000000000..d03534f51 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1501_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1501/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1501' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1510_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1510_repl.yaml new file mode 100644 index 000000000..6f4c7f5df --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1510_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1510/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1510' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1510_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1510_trainsize.yaml new file mode 100644 index 000000000..54127df33 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1510_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1510/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1510' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1515_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1515_repl.yaml new file mode 100644 index 000000000..1f007e8f5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1515_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1515/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1515' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1515_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1515_trainsize.yaml new file mode 100644 index 000000000..e77a6ad8a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1515_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1515/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1515' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_151_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_151_repl.yaml new file mode 100644 index 000000000..7650d99ce --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_151_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/151/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '151' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_151_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_151_trainsize.yaml new file mode 100644 index 000000000..8d2e11482 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_151_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/151/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '151' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1590_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1590_repl.yaml new file mode 100644 index 000000000..2c201c537 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1590_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1590/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1590' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1590_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1590_trainsize.yaml new file mode 100644 index 000000000..87d31329c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_1590_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/1590/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '1590' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_15_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_15_repl.yaml new file mode 100644 index 000000000..456d447fc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_15_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/15/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '15' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_15_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_15_trainsize.yaml new file mode 100644 index 000000000..c247d2709 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_15_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/15/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '15' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_16_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_16_repl.yaml new file mode 100644 index 000000000..a384696aa --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_16_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/16/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '16' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_16_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_16_trainsize.yaml new file mode 100644 index 000000000..5b0f685ff --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_16_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/16/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '16' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_181_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_181_repl.yaml new file mode 100644 index 000000000..a2685e506 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_181_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/181/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '181' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_181_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_181_trainsize.yaml new file mode 100644 index 000000000..b3d237e81 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_181_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/181/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '181' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_182_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_182_repl.yaml new file mode 100644 index 000000000..edf8ac8de --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_182_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/182/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '182' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_182_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_182_trainsize.yaml new file mode 100644 index 000000000..b17a90353 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_182_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/182/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '182' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_188_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_188_repl.yaml new file mode 100644 index 000000000..70b97f836 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_188_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/188/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '188' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_188_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_188_trainsize.yaml new file mode 100644 index 000000000..5ab17cf52 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_188_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/188/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '188' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_18_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_18_repl.yaml new file mode 100644 index 000000000..6e747a92f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_18_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/18/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '18' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_18_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_18_trainsize.yaml new file mode 100644 index 000000000..8baf2df40 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_18_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/18/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '18' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_22_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_22_repl.yaml new file mode 100644 index 000000000..4d7be2d82 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_22_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/22/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '22' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_22_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_22_trainsize.yaml new file mode 100644 index 000000000..7e76d5118 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_22_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/22/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '22' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23381_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23381_repl.yaml new file mode 100644 index 000000000..2d36a9900 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23381_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/23381/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '23381' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23381_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23381_trainsize.yaml new file mode 100644 index 000000000..5805ec9e0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23381_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/23381/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '23381' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23512_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23512_repl.yaml new file mode 100644 index 000000000..5d8c8a192 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23512_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/23512/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '23512' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23512_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23512_trainsize.yaml new file mode 100644 index 000000000..4f51d4515 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23512_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/23512/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '23512' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23517_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23517_repl.yaml new file mode 100644 index 000000000..35076c61e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23517_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/23517/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '23517' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23517_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23517_trainsize.yaml new file mode 100644 index 000000000..f03e505b1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23517_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/23517/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '23517' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23_repl.yaml new file mode 100644 index 000000000..02cbfb8f7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/23/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '23' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23_trainsize.yaml new file mode 100644 index 000000000..c0a74fb43 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_23_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/23/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '23' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_24_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_24_repl.yaml new file mode 100644 index 000000000..9f219e563 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_24_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/24/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '24' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_24_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_24_trainsize.yaml new file mode 100644 index 000000000..fea5532f5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_24_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/24/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '24' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_28_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_28_repl.yaml new file mode 100644 index 000000000..67b6aa3b2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_28_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/28/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '28' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_28_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_28_trainsize.yaml new file mode 100644 index 000000000..1f3a2d0d1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_28_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/28/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '28' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_29_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_29_repl.yaml new file mode 100644 index 000000000..8832c0710 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_29_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/29/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '29' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_29_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_29_trainsize.yaml new file mode 100644 index 000000000..2a3dea7e6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_29_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/29/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '29' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_300_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_300_repl.yaml new file mode 100644 index 000000000..561804c4b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_300_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/300/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '300' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_300_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_300_trainsize.yaml new file mode 100644 index 000000000..8925f7568 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_300_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/300/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '300' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_307_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_307_repl.yaml new file mode 100644 index 000000000..89fe57ef7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_307_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/307/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '307' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_307_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_307_trainsize.yaml new file mode 100644 index 000000000..93e09ddbc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_307_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/307/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '307' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_312_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_312_repl.yaml new file mode 100644 index 000000000..1207f0430 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_312_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/312/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '312' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_312_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_312_trainsize.yaml new file mode 100644 index 000000000..65c17594e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_312_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/312/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '312' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_31_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_31_repl.yaml new file mode 100644 index 000000000..5e3e2c9d8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_31_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/31/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '31' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_31_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_31_trainsize.yaml new file mode 100644 index 000000000..70d3d4655 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_31_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/31/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '31' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_32_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_32_repl.yaml new file mode 100644 index 000000000..ef099bad0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_32_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/32/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '32' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_32_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_32_trainsize.yaml new file mode 100644 index 000000000..e0d0035f2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_32_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/32/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '32' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_334_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_334_repl.yaml new file mode 100644 index 000000000..ceba07922 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_334_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/334/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '334' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_334_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_334_trainsize.yaml new file mode 100644 index 000000000..fcdeb8188 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_334_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/334/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '334' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_375_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_375_repl.yaml new file mode 100644 index 000000000..6f27455a9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_375_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/375/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '375' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_375_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_375_trainsize.yaml new file mode 100644 index 000000000..03848740c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_375_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/375/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '375' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_377_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_377_repl.yaml new file mode 100644 index 000000000..71df2b2be --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_377_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/377/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '377' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_377_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_377_trainsize.yaml new file mode 100644 index 000000000..4950360f1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_377_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/377/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '377' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_37_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_37_repl.yaml new file mode 100644 index 000000000..0b0ba03a1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_37_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/37/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '37' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_37_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_37_trainsize.yaml new file mode 100644 index 000000000..6b1060940 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_37_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/37/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '37' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_38_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_38_repl.yaml new file mode 100644 index 000000000..7c0f3e2eb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_38_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/38/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '38' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_38_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_38_trainsize.yaml new file mode 100644 index 000000000..d125b600a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_38_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/38/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '38' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_3_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_3_repl.yaml new file mode 100644 index 000000000..100e221d8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_3_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/3/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '3' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_3_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_3_trainsize.yaml new file mode 100644 index 000000000..f32e4da6f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_3_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/3/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '3' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40496_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40496_repl.yaml new file mode 100644 index 000000000..f7f5dd86a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40496_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40496/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40496' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40496_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40496_trainsize.yaml new file mode 100644 index 000000000..848f2eb51 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40496_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40496/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40496' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40498_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40498_repl.yaml new file mode 100644 index 000000000..0b37baa09 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40498_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40498/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40498' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40498_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40498_trainsize.yaml new file mode 100644 index 000000000..709deee3f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40498_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40498/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40498' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40499_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40499_repl.yaml new file mode 100644 index 000000000..9aa87a3e3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40499_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40499/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40499' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40499_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40499_trainsize.yaml new file mode 100644 index 000000000..8e2e01658 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40499_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40499/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40499' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40536_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40536_repl.yaml new file mode 100644 index 000000000..be3dca860 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40536_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40536/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40536' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40536_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40536_trainsize.yaml new file mode 100644 index 000000000..a0c0c95a8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40536_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40536/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40536' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40668_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40668_repl.yaml new file mode 100644 index 000000000..1e598dcf2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40668_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40668/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40668' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40668_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40668_trainsize.yaml new file mode 100644 index 000000000..30c03e4e9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40668_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40668/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40668' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40670_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40670_repl.yaml new file mode 100644 index 000000000..d627e2202 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40670_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40670/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40670' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40670_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40670_trainsize.yaml new file mode 100644 index 000000000..31295bc56 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40670_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40670/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40670' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40685_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40685_repl.yaml new file mode 100644 index 000000000..a20cdef4d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40685_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40685/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40685' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40685_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40685_trainsize.yaml new file mode 100644 index 000000000..635d35824 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40685_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40685/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40685' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40701_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40701_repl.yaml new file mode 100644 index 000000000..5f99b0ad9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40701_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40701/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40701' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40701_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40701_trainsize.yaml new file mode 100644 index 000000000..02421e226 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40701_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40701/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40701' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40900_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40900_repl.yaml new file mode 100644 index 000000000..056e8719a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40900_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40900/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40900' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40900_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40900_trainsize.yaml new file mode 100644 index 000000000..e59b40ad0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40900_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40900/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40900' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40966_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40966_repl.yaml new file mode 100644 index 000000000..7e22a2f49 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40966_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40966/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40966' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40966_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40966_trainsize.yaml new file mode 100644 index 000000000..cc1ae2828 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40966_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40966/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40966' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40975_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40975_repl.yaml new file mode 100644 index 000000000..976969f13 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40975_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40975/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40975' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40975_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40975_trainsize.yaml new file mode 100644 index 000000000..205694de6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40975_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40975/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40975' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40978_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40978_repl.yaml new file mode 100644 index 000000000..febf70b66 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40978_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40978/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40978' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40978_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40978_trainsize.yaml new file mode 100644 index 000000000..7c852316f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40978_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40978/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40978' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40979_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40979_repl.yaml new file mode 100644 index 000000000..cb4d9d710 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40979_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40979/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40979' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40979_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40979_trainsize.yaml new file mode 100644 index 000000000..a342b1a39 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40979_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40979/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40979' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40981_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40981_repl.yaml new file mode 100644 index 000000000..f0b0db42f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40981_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40981/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40981' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40981_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40981_trainsize.yaml new file mode 100644 index 000000000..bd37d064c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40981_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40981/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40981' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40982_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40982_repl.yaml new file mode 100644 index 000000000..40127efb9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40982_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40982/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40982' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40982_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40982_trainsize.yaml new file mode 100644 index 000000000..bcfb2c0e3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40982_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40982/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40982' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40983_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40983_repl.yaml new file mode 100644 index 000000000..e63a2dbd3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40983_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40983/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40983' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40983_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40983_trainsize.yaml new file mode 100644 index 000000000..2c045ce2f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40983_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40983/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40983' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40984_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40984_repl.yaml new file mode 100644 index 000000000..977f9f98e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40984_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40984/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40984' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40984_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40984_trainsize.yaml new file mode 100644 index 000000000..0923c7862 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40984_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40984/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40984' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40994_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40994_repl.yaml new file mode 100644 index 000000000..91bac8db0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40994_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40994/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40994' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40994_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40994_trainsize.yaml new file mode 100644 index 000000000..89164e23b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_40994_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/40994/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '40994' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41027_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41027_repl.yaml new file mode 100644 index 000000000..73254b284 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41027_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41027/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41027' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41027_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41027_trainsize.yaml new file mode 100644 index 000000000..e1981ed6e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41027_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41027/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41027' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41138_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41138_repl.yaml new file mode 100644 index 000000000..7302155d8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41138_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41138/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41138' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41138_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41138_trainsize.yaml new file mode 100644 index 000000000..d65a376e4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41138_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41138/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41138' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41142_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41142_repl.yaml new file mode 100644 index 000000000..e1e8a62ff --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41142_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41142/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41142' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41142_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41142_trainsize.yaml new file mode 100644 index 000000000..92bd5af3c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41142_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41142/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41142' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41143_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41143_repl.yaml new file mode 100644 index 000000000..00c26abed --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41143_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41143/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41143' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41143_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41143_trainsize.yaml new file mode 100644 index 000000000..b626cd4fa --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41143_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41143/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41143' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41146_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41146_repl.yaml new file mode 100644 index 000000000..0f0a264d8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41146_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41146/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41146' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41146_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41146_trainsize.yaml new file mode 100644 index 000000000..343a31ce4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41146_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41146/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41146' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41150_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41150_repl.yaml new file mode 100644 index 000000000..7ef6200dd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41150_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41150/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41150' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41150_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41150_trainsize.yaml new file mode 100644 index 000000000..b6c622a94 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41150_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41150/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41150' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41156_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41156_repl.yaml new file mode 100644 index 000000000..e3ab23437 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41156_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41156/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41156' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41156_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41156_trainsize.yaml new file mode 100644 index 000000000..46770babf --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41156_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41156/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41156' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41157_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41157_repl.yaml new file mode 100644 index 000000000..3a8cccb1c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41157_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41157/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41157' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41157_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41157_trainsize.yaml new file mode 100644 index 000000000..fb5aeeca3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41157_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41157/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41157' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41159_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41159_repl.yaml new file mode 100644 index 000000000..da225bd84 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41159_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41159/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41159' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41159_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41159_trainsize.yaml new file mode 100644 index 000000000..d385a01b5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41159_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41159/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41159' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41161_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41161_repl.yaml new file mode 100644 index 000000000..425ce2f97 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41161_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41161/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41161' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41161_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41161_trainsize.yaml new file mode 100644 index 000000000..bf4755656 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41161_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41161/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41161' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41162_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41162_repl.yaml new file mode 100644 index 000000000..fa48c3127 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41162_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41162/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41162' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41162_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41162_trainsize.yaml new file mode 100644 index 000000000..3ef51ba0b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41162_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41162/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41162' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41163_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41163_repl.yaml new file mode 100644 index 000000000..37838cc24 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41163_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41163/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41163' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41163_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41163_trainsize.yaml new file mode 100644 index 000000000..adcc7239b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41163_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41163/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41163' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41164_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41164_repl.yaml new file mode 100644 index 000000000..2ddf9955a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41164_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41164/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41164' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41164_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41164_trainsize.yaml new file mode 100644 index 000000000..34fe75d9c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41164_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41164/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41164' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41166_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41166_repl.yaml new file mode 100644 index 000000000..01deb5041 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41166_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41166/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41166' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41166_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41166_trainsize.yaml new file mode 100644 index 000000000..a8cb6950c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41166_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41166/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41166' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41168_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41168_repl.yaml new file mode 100644 index 000000000..e66eb0caa --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41168_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41168/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41168' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41168_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41168_trainsize.yaml new file mode 100644 index 000000000..96c16700d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41168_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41168/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41168' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41169_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41169_repl.yaml new file mode 100644 index 000000000..09283c32d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41169_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41169/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41169' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41169_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41169_trainsize.yaml new file mode 100644 index 000000000..e299b9989 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41169_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41169/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41169' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41212_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41212_repl.yaml new file mode 100644 index 000000000..eca53e1f1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41212_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41212/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41212' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41212_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41212_trainsize.yaml new file mode 100644 index 000000000..f8054eeb7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41212_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41212/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41212' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41216_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41216_repl.yaml new file mode 100644 index 000000000..ca647567b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41216_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41216/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41216' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41216_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41216_trainsize.yaml new file mode 100644 index 000000000..70c4012a0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41216_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41216/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41216' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41278_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41278_repl.yaml new file mode 100644 index 000000000..f870df855 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41278_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41278/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41278' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41278_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41278_trainsize.yaml new file mode 100644 index 000000000..40761924d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_41278_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/41278/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41278' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4134_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4134_repl.yaml new file mode 100644 index 000000000..78fdbef1f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4134_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/4134/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '4134' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4134_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4134_trainsize.yaml new file mode 100644 index 000000000..571b32ab1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4134_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/4134/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '4134' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4135_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4135_repl.yaml new file mode 100644 index 000000000..b80c135df --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4135_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/4135/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '4135' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4135_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4135_trainsize.yaml new file mode 100644 index 000000000..96d9bb3a8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4135_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/4135/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '4135' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4154_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4154_repl.yaml new file mode 100644 index 000000000..fa29634cc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4154_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/4154/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '4154' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4154_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4154_trainsize.yaml new file mode 100644 index 000000000..8d07e095b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4154_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/4154/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '4154' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_42_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_42_repl.yaml new file mode 100644 index 000000000..a21ddec93 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_42_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/42/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '42' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_42_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_42_trainsize.yaml new file mode 100644 index 000000000..daae7d042 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_42_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/42/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '42' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_44_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_44_repl.yaml new file mode 100644 index 000000000..427c834e1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_44_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/44/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '44' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_44_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_44_trainsize.yaml new file mode 100644 index 000000000..6e6049b28 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_44_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/44/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '44' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4534_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4534_repl.yaml new file mode 100644 index 000000000..f4dd7cf98 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4534_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/4534/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '4534' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4534_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4534_trainsize.yaml new file mode 100644 index 000000000..84d29c8bc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4534_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/4534/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '4534' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4538_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4538_repl.yaml new file mode 100644 index 000000000..b48a90a41 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4538_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/4538/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '4538' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4538_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4538_trainsize.yaml new file mode 100644 index 000000000..3d977aeb5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4538_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/4538/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '4538' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4541_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4541_repl.yaml new file mode 100644 index 000000000..886502f6f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4541_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/4541/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '4541' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4541_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4541_trainsize.yaml new file mode 100644 index 000000000..c4678283e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_4541_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/4541/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '4541' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_458_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_458_repl.yaml new file mode 100644 index 000000000..963a1c01c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_458_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/458/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '458' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_458_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_458_trainsize.yaml new file mode 100644 index 000000000..aa79d7aa4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_458_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/458/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '458' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_469_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_469_repl.yaml new file mode 100644 index 000000000..63f6d88d8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_469_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/469/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '469' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_469_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_469_trainsize.yaml new file mode 100644 index 000000000..0626eb226 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_469_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/469/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '469' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_46_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_46_repl.yaml new file mode 100644 index 000000000..f5418b2d2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_46_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/46/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '46' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_46_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_46_trainsize.yaml new file mode 100644 index 000000000..412237ceb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_46_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/46/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '46' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_470_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_470_repl.yaml new file mode 100644 index 000000000..f0a5e3b44 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_470_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/470/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '470' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_470_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_470_trainsize.yaml new file mode 100644 index 000000000..88a7da96a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_470_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/470/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '470' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_50_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_50_repl.yaml new file mode 100644 index 000000000..e3190b57d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_50_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/50/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '50' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_50_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_50_trainsize.yaml new file mode 100644 index 000000000..8c309d8b6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_50_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/50/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '50' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_54_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_54_repl.yaml new file mode 100644 index 000000000..ef8dcbc83 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_54_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/54/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '54' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_54_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_54_trainsize.yaml new file mode 100644 index 000000000..fa8b0853b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_54_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/54/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '54' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_554_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_554_repl.yaml new file mode 100644 index 000000000..3e4e8459c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_554_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/554/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '554' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_554_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_554_trainsize.yaml new file mode 100644 index 000000000..97655c9a7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_554_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/554/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '554' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_60_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_60_repl.yaml new file mode 100644 index 000000000..fa62ff98e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_60_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/60/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '60' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_60_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_60_trainsize.yaml new file mode 100644 index 000000000..0323aa1d3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_60_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/60/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '60' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_6332_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_6332_repl.yaml new file mode 100644 index 000000000..af9d4208a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_6332_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/6332/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '6332' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_6332_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_6332_trainsize.yaml new file mode 100644 index 000000000..1c2aff84d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_6332_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/6332/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '6332' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_6_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_6_repl.yaml new file mode 100644 index 000000000..8d231a7c7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_6_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/6/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '6' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_6_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_6_trainsize.yaml new file mode 100644 index 000000000..3d3c89205 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_glmnet_6_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_glmnet/6/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '6' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1040_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1040_repl.yaml new file mode 100644 index 000000000..cf2419e0a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1040_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1040/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1040' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1040_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1040_trainsize.yaml new file mode 100644 index 000000000..5f96c5d51 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1040_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1040/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1040' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1049_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1049_repl.yaml new file mode 100644 index 000000000..0711ff3ec --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1049_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1049/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1049' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1049_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1049_trainsize.yaml new file mode 100644 index 000000000..df08e6cf5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1049_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1049/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1049' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1050_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1050_repl.yaml new file mode 100644 index 000000000..024c59113 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1050_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1050/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1050' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1050_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1050_trainsize.yaml new file mode 100644 index 000000000..b2806197e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1050_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1050/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1050' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1053_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1053_repl.yaml new file mode 100644 index 000000000..9a2da3932 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1053_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1053/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1053' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1053_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1053_trainsize.yaml new file mode 100644 index 000000000..ce10d65c1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1053_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1053/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1053' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1056_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1056_repl.yaml new file mode 100644 index 000000000..7cf87199a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1056_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1056/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1056' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1056_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1056_trainsize.yaml new file mode 100644 index 000000000..9dc5631a2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1056_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1056/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1056' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1063_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1063_repl.yaml new file mode 100644 index 000000000..6f64fb127 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1063_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1063/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1063' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1063_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1063_trainsize.yaml new file mode 100644 index 000000000..3e1bbd7de --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1063_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1063/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1063' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1067_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1067_repl.yaml new file mode 100644 index 000000000..62a224933 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1067_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1067/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1067' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1067_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1067_trainsize.yaml new file mode 100644 index 000000000..4541ba0ac --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1067_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1067/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1067' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1068_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1068_repl.yaml new file mode 100644 index 000000000..4a7f76f39 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1068_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1068/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1068' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1068_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1068_trainsize.yaml new file mode 100644 index 000000000..127319366 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1068_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1068/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1068' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1111_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1111_repl.yaml new file mode 100644 index 000000000..366f4ab60 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1111_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1111/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1111' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1111_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1111_trainsize.yaml new file mode 100644 index 000000000..1d279ad7c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1111_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1111/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1111' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_11_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_11_repl.yaml new file mode 100644 index 000000000..7b6eb82e2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_11_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/11/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '11' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_11_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_11_trainsize.yaml new file mode 100644 index 000000000..260072e9b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_11_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/11/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '11' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1220_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1220_repl.yaml new file mode 100644 index 000000000..8b3c3eb5f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1220_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1220/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1220' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1220_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1220_trainsize.yaml new file mode 100644 index 000000000..67e614ed5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1220_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1220/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1220' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_12_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_12_repl.yaml new file mode 100644 index 000000000..f5162f192 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_12_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/12/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '12' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_12_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_12_trainsize.yaml new file mode 100644 index 000000000..8914cc5a2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_12_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/12/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '12' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1457_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1457_repl.yaml new file mode 100644 index 000000000..46ba938dd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1457_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1457/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1457' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1457_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1457_trainsize.yaml new file mode 100644 index 000000000..7cff89a32 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1457_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1457/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1457' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1461_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1461_repl.yaml new file mode 100644 index 000000000..f6d6c921e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1461_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1461/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1461' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1461_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1461_trainsize.yaml new file mode 100644 index 000000000..3428a1b0f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1461_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1461/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1461' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1462_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1462_repl.yaml new file mode 100644 index 000000000..454de44de --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1462_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1462/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1462' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1462_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1462_trainsize.yaml new file mode 100644 index 000000000..3836a9324 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1462_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1462/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1462' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1464_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1464_repl.yaml new file mode 100644 index 000000000..de635edac --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1464_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1464/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1464' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1464_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1464_trainsize.yaml new file mode 100644 index 000000000..3732d71dd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1464_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1464/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1464' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1468_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1468_repl.yaml new file mode 100644 index 000000000..9c6bf1123 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1468_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1468/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1468' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1468_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1468_trainsize.yaml new file mode 100644 index 000000000..831c8371c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1468_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1468/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1468' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1475_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1475_repl.yaml new file mode 100644 index 000000000..3974a6a84 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1475_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1475/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1475' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1475_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1475_trainsize.yaml new file mode 100644 index 000000000..73d352d1c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1475_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1475/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1475' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1476_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1476_repl.yaml new file mode 100644 index 000000000..e424b6ca7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1476_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1476/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1476' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1476_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1476_trainsize.yaml new file mode 100644 index 000000000..1b4c15697 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1476_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1476/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1476' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1478_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1478_repl.yaml new file mode 100644 index 000000000..b6e334a75 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1478_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1478/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1478' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1478_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1478_trainsize.yaml new file mode 100644 index 000000000..cd0258e34 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1478_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1478/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1478' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1479_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1479_repl.yaml new file mode 100644 index 000000000..f596da38a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1479_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1479/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1479' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1479_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1479_trainsize.yaml new file mode 100644 index 000000000..997951475 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1479_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1479/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1479' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1480_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1480_repl.yaml new file mode 100644 index 000000000..19723d920 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1480_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1480/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1480' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1480_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1480_trainsize.yaml new file mode 100644 index 000000000..a9402d3df --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1480_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1480/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1480' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1485_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1485_repl.yaml new file mode 100644 index 000000000..47e1f7bd0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1485_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1485/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1485' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1485_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1485_trainsize.yaml new file mode 100644 index 000000000..7125b04db --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1485_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1485/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1485' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1486_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1486_repl.yaml new file mode 100644 index 000000000..3ba0c0370 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1486_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1486/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1486' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1486_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1486_trainsize.yaml new file mode 100644 index 000000000..a69ac95d3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1486_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1486/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1486' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1487_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1487_repl.yaml new file mode 100644 index 000000000..347e6753c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1487_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1487/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1487' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1487_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1487_trainsize.yaml new file mode 100644 index 000000000..840cb436b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1487_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1487/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1487' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1489_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1489_repl.yaml new file mode 100644 index 000000000..7b7e8ae8f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1489_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1489/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1489' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1489_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1489_trainsize.yaml new file mode 100644 index 000000000..476a53314 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1489_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1489/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1489' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1493_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1493_repl.yaml new file mode 100644 index 000000000..f64cd6dca --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1493_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1493/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1493' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1493_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1493_trainsize.yaml new file mode 100644 index 000000000..6706b11e5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1493_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1493/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1493' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1494_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1494_repl.yaml new file mode 100644 index 000000000..0973a1080 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1494_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1494/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1494' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1494_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1494_trainsize.yaml new file mode 100644 index 000000000..016464332 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1494_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1494/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1494' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1497_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1497_repl.yaml new file mode 100644 index 000000000..dbd65b217 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1497_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1497/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1497' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1497_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1497_trainsize.yaml new file mode 100644 index 000000000..9fef802fb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1497_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1497/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1497' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_14_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_14_repl.yaml new file mode 100644 index 000000000..510c8338c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_14_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/14/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '14' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_14_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_14_trainsize.yaml new file mode 100644 index 000000000..8ea12be94 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_14_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/14/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '14' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1501_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1501_repl.yaml new file mode 100644 index 000000000..183f1c78a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1501_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1501/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1501' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1501_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1501_trainsize.yaml new file mode 100644 index 000000000..91bcb0404 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1501_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1501/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1501' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1510_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1510_repl.yaml new file mode 100644 index 000000000..321669512 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1510_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1510/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1510' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1510_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1510_trainsize.yaml new file mode 100644 index 000000000..4f66c51f0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1510_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1510/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1510' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1515_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1515_repl.yaml new file mode 100644 index 000000000..6ddea9a0b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1515_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1515/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1515' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1515_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1515_trainsize.yaml new file mode 100644 index 000000000..a3c12745e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1515_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1515/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1515' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_151_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_151_repl.yaml new file mode 100644 index 000000000..bca239ee7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_151_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/151/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '151' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_151_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_151_trainsize.yaml new file mode 100644 index 000000000..448828578 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_151_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/151/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '151' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1590_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1590_repl.yaml new file mode 100644 index 000000000..8959ec2ae --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1590_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1590/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1590' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1590_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1590_trainsize.yaml new file mode 100644 index 000000000..8b9421845 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_1590_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/1590/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1590' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_15_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_15_repl.yaml new file mode 100644 index 000000000..3d1f8d390 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_15_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/15/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '15' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_15_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_15_trainsize.yaml new file mode 100644 index 000000000..79553c2d9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_15_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/15/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '15' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_16_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_16_repl.yaml new file mode 100644 index 000000000..aebfc7da2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_16_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/16/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '16' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_16_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_16_trainsize.yaml new file mode 100644 index 000000000..e46c3d954 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_16_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/16/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '16' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_181_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_181_repl.yaml new file mode 100644 index 000000000..aa636736c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_181_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/181/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '181' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_181_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_181_trainsize.yaml new file mode 100644 index 000000000..d7ce66c08 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_181_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/181/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '181' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_182_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_182_repl.yaml new file mode 100644 index 000000000..e618f8ada --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_182_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/182/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '182' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_182_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_182_trainsize.yaml new file mode 100644 index 000000000..300597aa3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_182_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/182/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '182' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_188_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_188_repl.yaml new file mode 100644 index 000000000..b07af82bd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_188_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/188/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '188' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_188_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_188_trainsize.yaml new file mode 100644 index 000000000..3dc0cd06d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_188_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/188/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '188' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_18_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_18_repl.yaml new file mode 100644 index 000000000..b474bfefa --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_18_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/18/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '18' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_18_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_18_trainsize.yaml new file mode 100644 index 000000000..57e739de1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_18_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/18/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '18' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_22_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_22_repl.yaml new file mode 100644 index 000000000..f0b4656ee --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_22_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/22/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '22' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_22_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_22_trainsize.yaml new file mode 100644 index 000000000..df90cd5cc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_22_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/22/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '22' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23381_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23381_repl.yaml new file mode 100644 index 000000000..cfa53ed8e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23381_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/23381/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '23381' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23381_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23381_trainsize.yaml new file mode 100644 index 000000000..1799f597c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23381_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/23381/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '23381' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23512_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23512_repl.yaml new file mode 100644 index 000000000..71d6ffa64 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23512_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/23512/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '23512' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23512_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23512_trainsize.yaml new file mode 100644 index 000000000..fab9a71a4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23512_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/23512/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '23512' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23517_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23517_repl.yaml new file mode 100644 index 000000000..6ec7860c4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23517_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/23517/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '23517' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23517_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23517_trainsize.yaml new file mode 100644 index 000000000..49743a02c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23517_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/23517/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '23517' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23_repl.yaml new file mode 100644 index 000000000..6f8333113 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/23/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '23' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23_trainsize.yaml new file mode 100644 index 000000000..b4a09e8ca --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_23_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/23/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '23' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_24_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_24_repl.yaml new file mode 100644 index 000000000..325d71117 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_24_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/24/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '24' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_24_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_24_trainsize.yaml new file mode 100644 index 000000000..00b7849a1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_24_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/24/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '24' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_28_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_28_repl.yaml new file mode 100644 index 000000000..2dd3ed4bd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_28_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/28/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '28' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_28_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_28_trainsize.yaml new file mode 100644 index 000000000..2432e9e3d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_28_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/28/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '28' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_29_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_29_repl.yaml new file mode 100644 index 000000000..56d85a734 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_29_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/29/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '29' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_29_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_29_trainsize.yaml new file mode 100644 index 000000000..c83b92794 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_29_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/29/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '29' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_300_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_300_repl.yaml new file mode 100644 index 000000000..730be451f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_300_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/300/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '300' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_300_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_300_trainsize.yaml new file mode 100644 index 000000000..c8ec4fc31 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_300_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/300/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '300' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_307_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_307_repl.yaml new file mode 100644 index 000000000..4282c26ec --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_307_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/307/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '307' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_307_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_307_trainsize.yaml new file mode 100644 index 000000000..f1e5ce898 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_307_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/307/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '307' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_312_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_312_repl.yaml new file mode 100644 index 000000000..f31d6325e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_312_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/312/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '312' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_312_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_312_trainsize.yaml new file mode 100644 index 000000000..d2d7802ce --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_312_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/312/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '312' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_31_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_31_repl.yaml new file mode 100644 index 000000000..656259e79 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_31_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/31/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '31' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_31_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_31_trainsize.yaml new file mode 100644 index 000000000..9bd9d8c48 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_31_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/31/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '31' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_32_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_32_repl.yaml new file mode 100644 index 000000000..780019af9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_32_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/32/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '32' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_32_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_32_trainsize.yaml new file mode 100644 index 000000000..045bf2494 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_32_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/32/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '32' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_334_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_334_repl.yaml new file mode 100644 index 000000000..9a9f110ee --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_334_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/334/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '334' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_334_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_334_trainsize.yaml new file mode 100644 index 000000000..fd9aeaa7d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_334_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/334/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '334' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_375_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_375_repl.yaml new file mode 100644 index 000000000..d03811d80 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_375_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/375/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '375' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_375_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_375_trainsize.yaml new file mode 100644 index 000000000..f2e13380f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_375_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/375/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '375' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_377_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_377_repl.yaml new file mode 100644 index 000000000..2dbf9d037 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_377_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/377/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '377' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_377_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_377_trainsize.yaml new file mode 100644 index 000000000..878a73e69 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_377_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/377/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '377' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_37_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_37_repl.yaml new file mode 100644 index 000000000..3b1d65087 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_37_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/37/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '37' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_37_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_37_trainsize.yaml new file mode 100644 index 000000000..a67aa4105 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_37_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/37/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '37' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_38_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_38_repl.yaml new file mode 100644 index 000000000..73d0c6190 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_38_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/38/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '38' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_38_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_38_trainsize.yaml new file mode 100644 index 000000000..23d862d67 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_38_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/38/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '38' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_3_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_3_repl.yaml new file mode 100644 index 000000000..7d955e846 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_3_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/3/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '3' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_3_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_3_trainsize.yaml new file mode 100644 index 000000000..859c1ec45 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_3_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/3/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '3' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40496_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40496_repl.yaml new file mode 100644 index 000000000..9683d3301 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40496_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40496/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40496' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40496_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40496_trainsize.yaml new file mode 100644 index 000000000..6332ab51e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40496_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40496/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40496' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40498_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40498_repl.yaml new file mode 100644 index 000000000..15ece9483 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40498_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40498/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40498' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40498_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40498_trainsize.yaml new file mode 100644 index 000000000..d339eb8bc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40498_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40498/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40498' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40499_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40499_repl.yaml new file mode 100644 index 000000000..837c1488b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40499_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40499/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40499' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40499_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40499_trainsize.yaml new file mode 100644 index 000000000..a522fe5eb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40499_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40499/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40499' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40536_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40536_repl.yaml new file mode 100644 index 000000000..041e063eb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40536_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40536/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40536' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40536_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40536_trainsize.yaml new file mode 100644 index 000000000..4d0efa9da --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40536_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40536/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40536' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40668_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40668_repl.yaml new file mode 100644 index 000000000..6152a1885 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40668_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40668/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40668' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40668_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40668_trainsize.yaml new file mode 100644 index 000000000..27db37239 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40668_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40668/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40668' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40670_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40670_repl.yaml new file mode 100644 index 000000000..4984da2c7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40670_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40670/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40670' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40670_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40670_trainsize.yaml new file mode 100644 index 000000000..254633cd2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40670_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40670/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40670' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40685_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40685_repl.yaml new file mode 100644 index 000000000..3f3b74c91 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40685_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40685/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40685' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40685_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40685_trainsize.yaml new file mode 100644 index 000000000..3096896b4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40685_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40685/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40685' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40701_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40701_repl.yaml new file mode 100644 index 000000000..5fa7810bc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40701_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40701/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40701' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40701_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40701_trainsize.yaml new file mode 100644 index 000000000..d6326044d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40701_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40701/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40701' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40900_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40900_repl.yaml new file mode 100644 index 000000000..897bb5941 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40900_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40900/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40900' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40900_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40900_trainsize.yaml new file mode 100644 index 000000000..c003b1557 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40900_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40900/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40900' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40923_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40923_repl.yaml new file mode 100644 index 000000000..5a6423eea --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40923_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40923/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40923' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40923_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40923_trainsize.yaml new file mode 100644 index 000000000..f4a829e9c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40923_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40923/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40923' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40927_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40927_repl.yaml new file mode 100644 index 000000000..aaef0ece9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40927_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40927/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40927' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40927_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40927_trainsize.yaml new file mode 100644 index 000000000..e64bccec9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40927_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40927/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40927' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40966_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40966_repl.yaml new file mode 100644 index 000000000..a1f2b5841 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40966_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40966/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40966' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40966_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40966_trainsize.yaml new file mode 100644 index 000000000..15ab95111 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40966_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40966/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40966' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40975_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40975_repl.yaml new file mode 100644 index 000000000..1d7e643f7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40975_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40975/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40975' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40975_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40975_trainsize.yaml new file mode 100644 index 000000000..ce4596c62 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40975_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40975/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40975' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40978_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40978_repl.yaml new file mode 100644 index 000000000..33ba4302f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40978_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40978/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40978' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40978_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40978_trainsize.yaml new file mode 100644 index 000000000..4378b6264 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40978_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40978/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40978' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40979_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40979_repl.yaml new file mode 100644 index 000000000..a32df6404 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40979_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40979/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40979' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40979_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40979_trainsize.yaml new file mode 100644 index 000000000..7b3cc4f6f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40979_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40979/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40979' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40981_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40981_repl.yaml new file mode 100644 index 000000000..39d1e33ba --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40981_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40981/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40981' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40981_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40981_trainsize.yaml new file mode 100644 index 000000000..fb603ef57 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40981_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40981/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40981' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40982_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40982_repl.yaml new file mode 100644 index 000000000..cfb5e979a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40982_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40982/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40982' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40982_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40982_trainsize.yaml new file mode 100644 index 000000000..a9779f9d9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40982_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40982/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40982' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40983_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40983_repl.yaml new file mode 100644 index 000000000..a49f3e9a2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40983_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40983/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40983' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40983_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40983_trainsize.yaml new file mode 100644 index 000000000..4bdad933c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40983_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40983/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40983' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40984_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40984_repl.yaml new file mode 100644 index 000000000..65c669275 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40984_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40984/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40984' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40984_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40984_trainsize.yaml new file mode 100644 index 000000000..03fab0cfe --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40984_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40984/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40984' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40994_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40994_repl.yaml new file mode 100644 index 000000000..03fe599d9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40994_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40994/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40994' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40994_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40994_trainsize.yaml new file mode 100644 index 000000000..b60f447fb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40994_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40994/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40994' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40996_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40996_repl.yaml new file mode 100644 index 000000000..0c555a7e2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40996_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40996/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40996' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40996_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40996_trainsize.yaml new file mode 100644 index 000000000..f30eb0004 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_40996_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/40996/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40996' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41027_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41027_repl.yaml new file mode 100644 index 000000000..c738ac055 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41027_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41027/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41027' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41027_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41027_trainsize.yaml new file mode 100644 index 000000000..ee5e62987 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41027_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41027/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41027' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41138_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41138_repl.yaml new file mode 100644 index 000000000..a11d6b594 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41138_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41138/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41138' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41138_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41138_trainsize.yaml new file mode 100644 index 000000000..e8402b171 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41138_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41138/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41138' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41142_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41142_repl.yaml new file mode 100644 index 000000000..f504f7009 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41142_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41142/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41142' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41142_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41142_trainsize.yaml new file mode 100644 index 000000000..cd58f236c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41142_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41142/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41142' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41143_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41143_repl.yaml new file mode 100644 index 000000000..6552ff1a9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41143_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41143/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41143' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41143_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41143_trainsize.yaml new file mode 100644 index 000000000..926403d43 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41143_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41143/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41143' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41146_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41146_repl.yaml new file mode 100644 index 000000000..0c6eaac07 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41146_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41146/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41146' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41146_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41146_trainsize.yaml new file mode 100644 index 000000000..e1a3d4f24 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41146_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41146/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41146' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41150_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41150_repl.yaml new file mode 100644 index 000000000..bb01d994e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41150_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41150/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41150' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41150_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41150_trainsize.yaml new file mode 100644 index 000000000..1d13b7a7f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41150_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41150/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41150' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41156_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41156_repl.yaml new file mode 100644 index 000000000..fc6f6096a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41156_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41156/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41156' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41156_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41156_trainsize.yaml new file mode 100644 index 000000000..8fc8f3095 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41156_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41156/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41156' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41157_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41157_repl.yaml new file mode 100644 index 000000000..b99288fc6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41157_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41157/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41157' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41157_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41157_trainsize.yaml new file mode 100644 index 000000000..af97f815c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41157_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41157/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41157' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41159_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41159_repl.yaml new file mode 100644 index 000000000..9cee77a8e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41159_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41159/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41159' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41159_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41159_trainsize.yaml new file mode 100644 index 000000000..f0e87b6e9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41159_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41159/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41159' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41161_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41161_repl.yaml new file mode 100644 index 000000000..766bb3981 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41161_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41161/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41161' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41161_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41161_trainsize.yaml new file mode 100644 index 000000000..c22192f16 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41161_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41161/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41161' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41162_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41162_repl.yaml new file mode 100644 index 000000000..fa04683a4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41162_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41162/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41162' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41162_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41162_trainsize.yaml new file mode 100644 index 000000000..1629af360 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41162_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41162/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41162' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41163_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41163_repl.yaml new file mode 100644 index 000000000..d22c333da --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41163_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41163/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41163' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41163_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41163_trainsize.yaml new file mode 100644 index 000000000..1b5a9e540 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41163_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41163/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41163' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41164_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41164_repl.yaml new file mode 100644 index 000000000..004713705 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41164_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41164/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41164' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41164_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41164_trainsize.yaml new file mode 100644 index 000000000..029dddadc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41164_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41164/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41164' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41165_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41165_repl.yaml new file mode 100644 index 000000000..f96fbde99 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41165_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41165/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41165' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41165_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41165_trainsize.yaml new file mode 100644 index 000000000..95cf40ef8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41165_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41165/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41165' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41166_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41166_repl.yaml new file mode 100644 index 000000000..866786743 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41166_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41166/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41166' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41166_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41166_trainsize.yaml new file mode 100644 index 000000000..af7238239 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41166_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41166/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41166' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41168_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41168_repl.yaml new file mode 100644 index 000000000..ac6176cc4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41168_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41168/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41168' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41168_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41168_trainsize.yaml new file mode 100644 index 000000000..49a33d5e2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41168_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41168/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41168' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41169_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41169_repl.yaml new file mode 100644 index 000000000..233c9edb0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41169_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41169/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41169' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41169_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41169_trainsize.yaml new file mode 100644 index 000000000..f935ce797 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41169_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41169/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41169' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41212_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41212_repl.yaml new file mode 100644 index 000000000..2d6f62c8a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41212_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41212/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41212' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41212_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41212_trainsize.yaml new file mode 100644 index 000000000..681460afe --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41212_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41212/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41212' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41216_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41216_repl.yaml new file mode 100644 index 000000000..1a0a8e444 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41216_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41216/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41216' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41216_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41216_trainsize.yaml new file mode 100644 index 000000000..edcfb1a79 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41216_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41216/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41216' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41278_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41278_repl.yaml new file mode 100644 index 000000000..826157890 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41278_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41278/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41278' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41278_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41278_trainsize.yaml new file mode 100644 index 000000000..c9c13eeab --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_41278_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/41278/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41278' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4134_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4134_repl.yaml new file mode 100644 index 000000000..be1e8b0d2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4134_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/4134/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '4134' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4134_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4134_trainsize.yaml new file mode 100644 index 000000000..e6f988a7a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4134_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/4134/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '4134' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4135_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4135_repl.yaml new file mode 100644 index 000000000..21a2ed2d3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4135_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/4135/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '4135' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4135_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4135_trainsize.yaml new file mode 100644 index 000000000..9411e1eb5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4135_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/4135/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '4135' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4154_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4154_repl.yaml new file mode 100644 index 000000000..7550b3111 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4154_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/4154/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '4154' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4154_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4154_trainsize.yaml new file mode 100644 index 000000000..a9cfb0fe0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4154_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/4154/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '4154' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_42_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_42_repl.yaml new file mode 100644 index 000000000..4d7b5e99d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_42_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/42/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '42' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_42_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_42_trainsize.yaml new file mode 100644 index 000000000..6a38a7f4d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_42_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/42/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '42' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_44_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_44_repl.yaml new file mode 100644 index 000000000..0adacbd9f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_44_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/44/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '44' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_44_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_44_trainsize.yaml new file mode 100644 index 000000000..4c74be48b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_44_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/44/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '44' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4534_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4534_repl.yaml new file mode 100644 index 000000000..dd7f8bfe2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4534_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/4534/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '4534' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4534_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4534_trainsize.yaml new file mode 100644 index 000000000..955b81fbe --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4534_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/4534/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '4534' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4538_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4538_repl.yaml new file mode 100644 index 000000000..f7a154367 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4538_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/4538/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '4538' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4538_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4538_trainsize.yaml new file mode 100644 index 000000000..32f453746 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4538_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/4538/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '4538' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4541_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4541_repl.yaml new file mode 100644 index 000000000..c30540ac7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4541_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/4541/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '4541' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4541_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4541_trainsize.yaml new file mode 100644 index 000000000..9b80461fc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_4541_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/4541/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '4541' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_458_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_458_repl.yaml new file mode 100644 index 000000000..ae305de8a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_458_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/458/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '458' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_458_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_458_trainsize.yaml new file mode 100644 index 000000000..45eb30096 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_458_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/458/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '458' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_469_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_469_repl.yaml new file mode 100644 index 000000000..7259d2b56 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_469_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/469/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '469' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_469_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_469_trainsize.yaml new file mode 100644 index 000000000..94811a67a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_469_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/469/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '469' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_46_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_46_repl.yaml new file mode 100644 index 000000000..5c4e00847 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_46_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/46/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '46' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_46_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_46_trainsize.yaml new file mode 100644 index 000000000..c620185b1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_46_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/46/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '46' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_470_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_470_repl.yaml new file mode 100644 index 000000000..ae5685429 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_470_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/470/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '470' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_470_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_470_trainsize.yaml new file mode 100644 index 000000000..19135cf91 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_470_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/470/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '470' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_50_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_50_repl.yaml new file mode 100644 index 000000000..c1fba8e53 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_50_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/50/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '50' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_50_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_50_trainsize.yaml new file mode 100644 index 000000000..2ed46c19a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_50_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/50/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '50' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_54_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_54_repl.yaml new file mode 100644 index 000000000..34e40d79e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_54_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/54/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '54' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_54_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_54_trainsize.yaml new file mode 100644 index 000000000..d59bd7b73 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_54_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/54/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '54' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_554_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_554_repl.yaml new file mode 100644 index 000000000..1d594741b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_554_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/554/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '554' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_554_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_554_trainsize.yaml new file mode 100644 index 000000000..c2cfdefcc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_554_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/554/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '554' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_60_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_60_repl.yaml new file mode 100644 index 000000000..182c2e44d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_60_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/60/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '60' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_60_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_60_trainsize.yaml new file mode 100644 index 000000000..9f64d67a0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_60_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/60/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '60' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_6332_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_6332_repl.yaml new file mode 100644 index 000000000..8e7cc4d0a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_6332_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/6332/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '6332' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_6332_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_6332_trainsize.yaml new file mode 100644 index 000000000..1c6ec9756 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_6332_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/6332/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '6332' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_6_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_6_repl.yaml new file mode 100644 index 000000000..b85dad959 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_6_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/6/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '6' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_6_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_6_trainsize.yaml new file mode 100644 index 000000000..747f0af1e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_ranger_6_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_ranger/6/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '6' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1040_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1040_repl.yaml new file mode 100644 index 000000000..9087905f4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1040_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1040/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1040' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1040_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1040_trainsize.yaml new file mode 100644 index 000000000..bd78ec70f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1040_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1040/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1040' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1049_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1049_repl.yaml new file mode 100644 index 000000000..8bb12ff83 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1049_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1049/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1049' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1049_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1049_trainsize.yaml new file mode 100644 index 000000000..80d3bd6fa --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1049_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1049/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1049' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1050_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1050_repl.yaml new file mode 100644 index 000000000..a0a7a0a87 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1050_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1050/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1050' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1050_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1050_trainsize.yaml new file mode 100644 index 000000000..994ed8100 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1050_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1050/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1050' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1053_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1053_repl.yaml new file mode 100644 index 000000000..011a8a91e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1053_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1053/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1053' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1053_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1053_trainsize.yaml new file mode 100644 index 000000000..372f9f3d1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1053_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1053/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1053' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1056_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1056_repl.yaml new file mode 100644 index 000000000..7f70d9d30 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1056_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1056/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1056' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1056_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1056_trainsize.yaml new file mode 100644 index 000000000..275ecc79d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1056_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1056/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1056' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1063_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1063_repl.yaml new file mode 100644 index 000000000..5b17cc1e1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1063_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1063/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1063' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1063_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1063_trainsize.yaml new file mode 100644 index 000000000..63c23343e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1063_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1063/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1063' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1067_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1067_repl.yaml new file mode 100644 index 000000000..1d4c78503 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1067_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1067/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1067' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1067_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1067_trainsize.yaml new file mode 100644 index 000000000..60cafaca2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1067_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1067/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1067' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1068_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1068_repl.yaml new file mode 100644 index 000000000..26b5c435f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1068_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1068/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1068' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1068_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1068_trainsize.yaml new file mode 100644 index 000000000..61cbb8dfb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1068_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1068/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1068' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1111_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1111_repl.yaml new file mode 100644 index 000000000..e82f443f4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1111_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1111/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1111' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1111_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1111_trainsize.yaml new file mode 100644 index 000000000..9bfa9c754 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1111_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1111/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1111' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_11_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_11_repl.yaml new file mode 100644 index 000000000..3cdfafc41 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_11_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/11/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '11' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_11_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_11_trainsize.yaml new file mode 100644 index 000000000..0b7555b1c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_11_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/11/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '11' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1220_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1220_repl.yaml new file mode 100644 index 000000000..0005fc679 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1220_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1220/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1220' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1220_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1220_trainsize.yaml new file mode 100644 index 000000000..48581a04a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1220_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1220/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1220' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_12_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_12_repl.yaml new file mode 100644 index 000000000..eb91a4937 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_12_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/12/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '12' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_12_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_12_trainsize.yaml new file mode 100644 index 000000000..966c46e0a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_12_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/12/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '12' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1457_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1457_repl.yaml new file mode 100644 index 000000000..5a0fecea3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1457_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1457/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1457' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1457_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1457_trainsize.yaml new file mode 100644 index 000000000..ad5502a02 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1457_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1457/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1457' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1461_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1461_repl.yaml new file mode 100644 index 000000000..05adcd3e2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1461_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1461/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1461' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1461_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1461_trainsize.yaml new file mode 100644 index 000000000..15a3efe36 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1461_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1461/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1461' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1462_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1462_repl.yaml new file mode 100644 index 000000000..515b4e77f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1462_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1462/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1462' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1462_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1462_trainsize.yaml new file mode 100644 index 000000000..f1babf4d4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1462_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1462/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1462' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1464_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1464_repl.yaml new file mode 100644 index 000000000..78fbe5fbd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1464_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1464/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1464' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1464_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1464_trainsize.yaml new file mode 100644 index 000000000..56e0cb4fd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1464_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1464/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1464' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1468_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1468_repl.yaml new file mode 100644 index 000000000..f60b6fa82 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1468_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1468/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1468' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1468_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1468_trainsize.yaml new file mode 100644 index 000000000..3613ad6f1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1468_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1468/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1468' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1475_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1475_repl.yaml new file mode 100644 index 000000000..96b04ef13 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1475_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1475/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1475' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1475_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1475_trainsize.yaml new file mode 100644 index 000000000..c7c648bca --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1475_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1475/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1475' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1476_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1476_repl.yaml new file mode 100644 index 000000000..399f06d52 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1476_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1476/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1476' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1476_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1476_trainsize.yaml new file mode 100644 index 000000000..d012102f3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1476_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1476/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1476' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1478_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1478_repl.yaml new file mode 100644 index 000000000..08fde7726 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1478_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1478/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1478' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1478_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1478_trainsize.yaml new file mode 100644 index 000000000..90313da9d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1478_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1478/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1478' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1479_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1479_repl.yaml new file mode 100644 index 000000000..f7803c8b6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1479_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1479/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1479' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1479_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1479_trainsize.yaml new file mode 100644 index 000000000..4718f99d8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1479_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1479/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1479' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1480_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1480_repl.yaml new file mode 100644 index 000000000..64e4297ce --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1480_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1480/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1480' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1480_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1480_trainsize.yaml new file mode 100644 index 000000000..cc790a3dc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1480_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1480/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1480' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1485_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1485_repl.yaml new file mode 100644 index 000000000..af68558e7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1485_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1485/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1485' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1485_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1485_trainsize.yaml new file mode 100644 index 000000000..0f9b420c5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1485_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1485/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1485' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1486_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1486_repl.yaml new file mode 100644 index 000000000..e6b03c904 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1486_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1486/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1486' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1486_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1486_trainsize.yaml new file mode 100644 index 000000000..ec99258de --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1486_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1486/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1486' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1487_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1487_repl.yaml new file mode 100644 index 000000000..b7c08399e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1487_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1487/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1487' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1487_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1487_trainsize.yaml new file mode 100644 index 000000000..3fd49c98a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1487_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1487/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1487' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1489_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1489_repl.yaml new file mode 100644 index 000000000..37ffabf1e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1489_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1489/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1489' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1489_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1489_trainsize.yaml new file mode 100644 index 000000000..df9d17eac --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1489_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1489/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1489' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1493_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1493_repl.yaml new file mode 100644 index 000000000..ba603c09e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1493_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1493/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1493' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1493_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1493_trainsize.yaml new file mode 100644 index 000000000..ed7f53945 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1493_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1493/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1493' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1494_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1494_repl.yaml new file mode 100644 index 000000000..86ebbbfb9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1494_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1494/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1494' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1494_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1494_trainsize.yaml new file mode 100644 index 000000000..d1c86912b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1494_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1494/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1494' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1497_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1497_repl.yaml new file mode 100644 index 000000000..d4bd937f3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1497_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1497/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1497' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1497_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1497_trainsize.yaml new file mode 100644 index 000000000..8d77d6ff6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1497_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1497/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1497' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_14_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_14_repl.yaml new file mode 100644 index 000000000..2edbcf6bc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_14_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/14/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '14' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_14_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_14_trainsize.yaml new file mode 100644 index 000000000..3225c8c5e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_14_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/14/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '14' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1501_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1501_repl.yaml new file mode 100644 index 000000000..26432741b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1501_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1501/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1501' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1501_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1501_trainsize.yaml new file mode 100644 index 000000000..1b75bbeb0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1501_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1501/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1501' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1510_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1510_repl.yaml new file mode 100644 index 000000000..f599247d9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1510_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1510/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1510' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1510_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1510_trainsize.yaml new file mode 100644 index 000000000..330ae068c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1510_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1510/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1510' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1515_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1515_repl.yaml new file mode 100644 index 000000000..2886bcf8a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1515_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1515/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1515' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1515_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1515_trainsize.yaml new file mode 100644 index 000000000..7f037edc8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1515_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1515/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1515' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_151_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_151_repl.yaml new file mode 100644 index 000000000..57e66b525 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_151_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/151/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '151' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_151_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_151_trainsize.yaml new file mode 100644 index 000000000..6f3612444 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_151_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/151/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '151' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1590_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1590_repl.yaml new file mode 100644 index 000000000..b85535dcb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1590_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1590/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1590' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1590_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1590_trainsize.yaml new file mode 100644 index 000000000..356e1f663 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_1590_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/1590/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1590' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_15_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_15_repl.yaml new file mode 100644 index 000000000..d2331bcc9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_15_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/15/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '15' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_15_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_15_trainsize.yaml new file mode 100644 index 000000000..02f2c82b1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_15_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/15/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '15' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_16_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_16_repl.yaml new file mode 100644 index 000000000..e6d38a67c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_16_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/16/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '16' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_16_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_16_trainsize.yaml new file mode 100644 index 000000000..eec072b0b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_16_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/16/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '16' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_181_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_181_repl.yaml new file mode 100644 index 000000000..72f8e32b7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_181_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/181/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '181' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_181_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_181_trainsize.yaml new file mode 100644 index 000000000..cc6e22409 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_181_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/181/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '181' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_182_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_182_repl.yaml new file mode 100644 index 000000000..a343a8c1b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_182_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/182/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '182' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_182_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_182_trainsize.yaml new file mode 100644 index 000000000..3a9366186 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_182_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/182/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '182' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_188_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_188_repl.yaml new file mode 100644 index 000000000..4640c0867 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_188_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/188/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '188' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_188_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_188_trainsize.yaml new file mode 100644 index 000000000..944779f38 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_188_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/188/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '188' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_18_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_18_repl.yaml new file mode 100644 index 000000000..4cfb7885d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_18_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/18/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '18' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_18_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_18_trainsize.yaml new file mode 100644 index 000000000..34b7c2c6f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_18_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/18/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '18' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_22_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_22_repl.yaml new file mode 100644 index 000000000..6d3c99bf4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_22_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/22/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '22' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_22_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_22_trainsize.yaml new file mode 100644 index 000000000..27077b581 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_22_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/22/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '22' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23381_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23381_repl.yaml new file mode 100644 index 000000000..c527e82bc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23381_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/23381/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '23381' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23381_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23381_trainsize.yaml new file mode 100644 index 000000000..5cbcc6cb0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23381_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/23381/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '23381' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23512_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23512_repl.yaml new file mode 100644 index 000000000..3843e2d92 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23512_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/23512/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '23512' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23512_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23512_trainsize.yaml new file mode 100644 index 000000000..97fa4e3f8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23512_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/23512/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '23512' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23517_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23517_repl.yaml new file mode 100644 index 000000000..898a72f65 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23517_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/23517/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '23517' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23517_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23517_trainsize.yaml new file mode 100644 index 000000000..a840e1c20 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23517_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/23517/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '23517' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23_repl.yaml new file mode 100644 index 000000000..f3c7cc1d2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/23/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '23' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23_trainsize.yaml new file mode 100644 index 000000000..28975e06d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_23_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/23/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '23' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_24_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_24_repl.yaml new file mode 100644 index 000000000..01ad2f486 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_24_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/24/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '24' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_24_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_24_trainsize.yaml new file mode 100644 index 000000000..9503538ca --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_24_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/24/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '24' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_28_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_28_repl.yaml new file mode 100644 index 000000000..73887ac9c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_28_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/28/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '28' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_28_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_28_trainsize.yaml new file mode 100644 index 000000000..461d3acae --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_28_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/28/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '28' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_29_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_29_repl.yaml new file mode 100644 index 000000000..7d54d33ab --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_29_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/29/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '29' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_29_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_29_trainsize.yaml new file mode 100644 index 000000000..f888091af --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_29_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/29/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '29' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_300_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_300_repl.yaml new file mode 100644 index 000000000..d564949a5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_300_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/300/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '300' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_300_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_300_trainsize.yaml new file mode 100644 index 000000000..e9e2ca741 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_300_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/300/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '300' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_307_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_307_repl.yaml new file mode 100644 index 000000000..ca60728a0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_307_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/307/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '307' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_307_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_307_trainsize.yaml new file mode 100644 index 000000000..f0ff5b11e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_307_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/307/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '307' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_312_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_312_repl.yaml new file mode 100644 index 000000000..31e88e498 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_312_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/312/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '312' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_312_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_312_trainsize.yaml new file mode 100644 index 000000000..4d5af0241 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_312_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/312/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '312' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_31_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_31_repl.yaml new file mode 100644 index 000000000..27e883f25 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_31_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/31/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '31' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_31_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_31_trainsize.yaml new file mode 100644 index 000000000..3fbc6efe4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_31_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/31/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '31' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_32_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_32_repl.yaml new file mode 100644 index 000000000..b7a35dcce --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_32_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/32/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '32' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_32_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_32_trainsize.yaml new file mode 100644 index 000000000..01f880d02 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_32_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/32/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '32' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_334_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_334_repl.yaml new file mode 100644 index 000000000..3dfa8d630 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_334_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/334/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '334' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_334_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_334_trainsize.yaml new file mode 100644 index 000000000..0f01bbe1e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_334_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/334/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '334' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_375_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_375_repl.yaml new file mode 100644 index 000000000..fd12c6e9c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_375_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/375/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '375' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_375_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_375_trainsize.yaml new file mode 100644 index 000000000..42e3b3710 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_375_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/375/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '375' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_377_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_377_repl.yaml new file mode 100644 index 000000000..780021ef7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_377_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/377/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '377' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_377_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_377_trainsize.yaml new file mode 100644 index 000000000..82c70e6eb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_377_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/377/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '377' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_37_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_37_repl.yaml new file mode 100644 index 000000000..b592ed8fc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_37_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/37/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '37' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_37_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_37_trainsize.yaml new file mode 100644 index 000000000..ac534b9a1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_37_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/37/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '37' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_38_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_38_repl.yaml new file mode 100644 index 000000000..7cec7ed66 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_38_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/38/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '38' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_38_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_38_trainsize.yaml new file mode 100644 index 000000000..089eecb21 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_38_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/38/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '38' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_3_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_3_repl.yaml new file mode 100644 index 000000000..44db67940 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_3_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/3/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '3' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_3_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_3_trainsize.yaml new file mode 100644 index 000000000..eabc30edf --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_3_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/3/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '3' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40496_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40496_repl.yaml new file mode 100644 index 000000000..71c2963d0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40496_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40496/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40496' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40496_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40496_trainsize.yaml new file mode 100644 index 000000000..506046eaa --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40496_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40496/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40496' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40498_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40498_repl.yaml new file mode 100644 index 000000000..7e1544ef6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40498_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40498/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40498' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40498_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40498_trainsize.yaml new file mode 100644 index 000000000..0c0cddfec --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40498_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40498/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40498' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40499_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40499_repl.yaml new file mode 100644 index 000000000..043bd2e81 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40499_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40499/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40499' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40499_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40499_trainsize.yaml new file mode 100644 index 000000000..f3db48a9a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40499_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40499/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40499' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40536_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40536_repl.yaml new file mode 100644 index 000000000..29d44be5b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40536_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40536/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40536' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40536_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40536_trainsize.yaml new file mode 100644 index 000000000..ce480df47 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40536_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40536/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40536' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40668_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40668_repl.yaml new file mode 100644 index 000000000..0eedf6c74 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40668_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40668/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40668' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40668_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40668_trainsize.yaml new file mode 100644 index 000000000..585d8d136 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40668_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40668/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40668' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40670_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40670_repl.yaml new file mode 100644 index 000000000..0f9b5e79f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40670_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40670/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40670' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40670_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40670_trainsize.yaml new file mode 100644 index 000000000..c035ae9e2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40670_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40670/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40670' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40685_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40685_repl.yaml new file mode 100644 index 000000000..0a8f2d98a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40685_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40685/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40685' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40685_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40685_trainsize.yaml new file mode 100644 index 000000000..a28ee8ce6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40685_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40685/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40685' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40701_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40701_repl.yaml new file mode 100644 index 000000000..3aca91a1e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40701_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40701/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40701' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40701_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40701_trainsize.yaml new file mode 100644 index 000000000..6547bd1d4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40701_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40701/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40701' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40900_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40900_repl.yaml new file mode 100644 index 000000000..c50036c34 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40900_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40900/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40900' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40900_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40900_trainsize.yaml new file mode 100644 index 000000000..8aca9dbab --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40900_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40900/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40900' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40923_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40923_repl.yaml new file mode 100644 index 000000000..e1e2423dd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40923_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40923/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40923' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40923_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40923_trainsize.yaml new file mode 100644 index 000000000..e74b5055e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40923_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40923/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40923' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40927_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40927_repl.yaml new file mode 100644 index 000000000..9bd996281 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40927_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40927/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40927' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40927_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40927_trainsize.yaml new file mode 100644 index 000000000..37a3ea478 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40927_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40927/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40927' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40966_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40966_repl.yaml new file mode 100644 index 000000000..ea88d8b16 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40966_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40966/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40966' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40966_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40966_trainsize.yaml new file mode 100644 index 000000000..d690c3347 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40966_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40966/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40966' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40975_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40975_repl.yaml new file mode 100644 index 000000000..6b60097ec --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40975_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40975/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40975' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40975_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40975_trainsize.yaml new file mode 100644 index 000000000..833085d7b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40975_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40975/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40975' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40978_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40978_repl.yaml new file mode 100644 index 000000000..d2ec3f184 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40978_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40978/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40978' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40978_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40978_trainsize.yaml new file mode 100644 index 000000000..4e527c637 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40978_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40978/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40978' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40979_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40979_repl.yaml new file mode 100644 index 000000000..98c5a5c5e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40979_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40979/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40979' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40979_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40979_trainsize.yaml new file mode 100644 index 000000000..5562c1dba --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40979_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40979/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40979' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40981_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40981_repl.yaml new file mode 100644 index 000000000..1dc57e454 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40981_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40981/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40981' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40981_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40981_trainsize.yaml new file mode 100644 index 000000000..09f5b58a0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40981_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40981/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40981' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40982_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40982_repl.yaml new file mode 100644 index 000000000..f32fc01d1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40982_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40982/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40982' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40982_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40982_trainsize.yaml new file mode 100644 index 000000000..5b2eb3ffa --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40982_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40982/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40982' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40983_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40983_repl.yaml new file mode 100644 index 000000000..83bdcff44 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40983_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40983/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40983' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40983_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40983_trainsize.yaml new file mode 100644 index 000000000..91dd45ee0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40983_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40983/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40983' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40984_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40984_repl.yaml new file mode 100644 index 000000000..349975dcb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40984_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40984/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40984' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40984_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40984_trainsize.yaml new file mode 100644 index 000000000..32c78ffd0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40984_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40984/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40984' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40994_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40994_repl.yaml new file mode 100644 index 000000000..abf0ae952 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40994_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40994/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40994' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40994_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40994_trainsize.yaml new file mode 100644 index 000000000..b52c0d7d1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40994_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40994/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40994' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40996_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40996_repl.yaml new file mode 100644 index 000000000..e41f8107d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40996_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40996/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40996' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40996_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40996_trainsize.yaml new file mode 100644 index 000000000..c2fcfbbb8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_40996_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/40996/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40996' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41027_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41027_repl.yaml new file mode 100644 index 000000000..cba4689e9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41027_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41027/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41027' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41027_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41027_trainsize.yaml new file mode 100644 index 000000000..d688803d8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41027_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41027/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41027' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41138_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41138_repl.yaml new file mode 100644 index 000000000..41eb71643 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41138_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41138/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41138' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41138_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41138_trainsize.yaml new file mode 100644 index 000000000..2de09fd26 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41138_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41138/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41138' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41142_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41142_repl.yaml new file mode 100644 index 000000000..6213cdc12 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41142_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41142/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41142' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41142_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41142_trainsize.yaml new file mode 100644 index 000000000..d4768a64a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41142_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41142/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41142' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41143_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41143_repl.yaml new file mode 100644 index 000000000..0ad6bc853 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41143_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41143/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41143' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41143_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41143_trainsize.yaml new file mode 100644 index 000000000..edc97e324 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41143_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41143/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41143' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41146_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41146_repl.yaml new file mode 100644 index 000000000..4908c1e22 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41146_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41146/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41146' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41146_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41146_trainsize.yaml new file mode 100644 index 000000000..ce455f6aa --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41146_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41146/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41146' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41150_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41150_repl.yaml new file mode 100644 index 000000000..48dcbea93 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41150_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41150/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41150' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41150_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41150_trainsize.yaml new file mode 100644 index 000000000..17445f97e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41150_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41150/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41150' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41156_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41156_repl.yaml new file mode 100644 index 000000000..d1560d811 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41156_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41156/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41156' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41156_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41156_trainsize.yaml new file mode 100644 index 000000000..46c55daf8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41156_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41156/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41156' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41157_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41157_repl.yaml new file mode 100644 index 000000000..a732e2635 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41157_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41157/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41157' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41157_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41157_trainsize.yaml new file mode 100644 index 000000000..0e90d52d1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41157_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41157/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41157' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41159_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41159_repl.yaml new file mode 100644 index 000000000..2d6206c78 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41159_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41159/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41159' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41159_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41159_trainsize.yaml new file mode 100644 index 000000000..4c8c5aa2f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41159_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41159/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41159' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41161_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41161_repl.yaml new file mode 100644 index 000000000..5fa7d20a4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41161_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41161/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41161' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41161_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41161_trainsize.yaml new file mode 100644 index 000000000..fcb8fa67e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41161_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41161/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41161' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41162_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41162_repl.yaml new file mode 100644 index 000000000..9d051f491 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41162_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41162/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41162' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41162_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41162_trainsize.yaml new file mode 100644 index 000000000..4bcc6b373 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41162_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41162/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41162' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41163_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41163_repl.yaml new file mode 100644 index 000000000..17c88271d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41163_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41163/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41163' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41163_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41163_trainsize.yaml new file mode 100644 index 000000000..6b3895118 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41163_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41163/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41163' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41164_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41164_repl.yaml new file mode 100644 index 000000000..7f2c3f6ae --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41164_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41164/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41164' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41164_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41164_trainsize.yaml new file mode 100644 index 000000000..a42a543cd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41164_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41164/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41164' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41165_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41165_repl.yaml new file mode 100644 index 000000000..17287bd71 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41165_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41165/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41165' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41165_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41165_trainsize.yaml new file mode 100644 index 000000000..28a7d02ec --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41165_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41165/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41165' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41166_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41166_repl.yaml new file mode 100644 index 000000000..fdd5e70b9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41166_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41166/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41166' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41166_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41166_trainsize.yaml new file mode 100644 index 000000000..3132bae3e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41166_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41166/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41166' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41168_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41168_repl.yaml new file mode 100644 index 000000000..4800c33c0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41168_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41168/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41168' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41168_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41168_trainsize.yaml new file mode 100644 index 000000000..204418912 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41168_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41168/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41168' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41169_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41169_repl.yaml new file mode 100644 index 000000000..8825531ff --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41169_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41169/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41169' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41169_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41169_trainsize.yaml new file mode 100644 index 000000000..9c1487e18 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41169_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41169/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41169' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41212_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41212_repl.yaml new file mode 100644 index 000000000..6da9cb0b0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41212_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41212/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41212' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41212_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41212_trainsize.yaml new file mode 100644 index 000000000..9b3394e07 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_41212_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/41212/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41212' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4134_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4134_repl.yaml new file mode 100644 index 000000000..baedb24ca --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4134_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/4134/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '4134' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4134_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4134_trainsize.yaml new file mode 100644 index 000000000..8465bc3dd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4134_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/4134/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '4134' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4135_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4135_repl.yaml new file mode 100644 index 000000000..d671eea44 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4135_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/4135/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '4135' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4135_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4135_trainsize.yaml new file mode 100644 index 000000000..e656afdc3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4135_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/4135/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '4135' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4154_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4154_repl.yaml new file mode 100644 index 000000000..7f48ec98b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4154_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/4154/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '4154' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4154_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4154_trainsize.yaml new file mode 100644 index 000000000..6da9e2827 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4154_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/4154/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '4154' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_42_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_42_repl.yaml new file mode 100644 index 000000000..c8e4c95b2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_42_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/42/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '42' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_42_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_42_trainsize.yaml new file mode 100644 index 000000000..930a83dfe --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_42_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/42/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '42' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_44_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_44_repl.yaml new file mode 100644 index 000000000..4636492f4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_44_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/44/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '44' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_44_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_44_trainsize.yaml new file mode 100644 index 000000000..4a608ddab --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_44_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/44/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '44' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4534_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4534_repl.yaml new file mode 100644 index 000000000..d10e36dea --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4534_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/4534/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '4534' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4534_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4534_trainsize.yaml new file mode 100644 index 000000000..59cd3f5f4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4534_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/4534/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '4534' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4538_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4538_repl.yaml new file mode 100644 index 000000000..b7d7274de --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4538_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/4538/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '4538' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4538_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4538_trainsize.yaml new file mode 100644 index 000000000..4fe977500 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4538_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/4538/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '4538' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4541_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4541_repl.yaml new file mode 100644 index 000000000..801ae49c4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4541_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/4541/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '4541' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4541_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4541_trainsize.yaml new file mode 100644 index 000000000..3cc4c426d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_4541_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/4541/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '4541' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_458_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_458_repl.yaml new file mode 100644 index 000000000..ec84fa1f8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_458_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/458/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '458' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_458_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_458_trainsize.yaml new file mode 100644 index 000000000..6924fccfd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_458_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/458/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '458' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_469_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_469_repl.yaml new file mode 100644 index 000000000..3a60c29a7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_469_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/469/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '469' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_469_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_469_trainsize.yaml new file mode 100644 index 000000000..85e2270a0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_469_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/469/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '469' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_46_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_46_repl.yaml new file mode 100644 index 000000000..5e1ef8db4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_46_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/46/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '46' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_46_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_46_trainsize.yaml new file mode 100644 index 000000000..41dceba68 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_46_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/46/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '46' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_470_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_470_repl.yaml new file mode 100644 index 000000000..c91a33e69 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_470_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/470/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '470' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_470_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_470_trainsize.yaml new file mode 100644 index 000000000..c88b69556 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_470_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/470/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '470' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_50_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_50_repl.yaml new file mode 100644 index 000000000..4ba9925a1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_50_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/50/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '50' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_50_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_50_trainsize.yaml new file mode 100644 index 000000000..3c92f4c2b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_50_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/50/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '50' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_54_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_54_repl.yaml new file mode 100644 index 000000000..6608bd534 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_54_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/54/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '54' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_54_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_54_trainsize.yaml new file mode 100644 index 000000000..fe604795d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_54_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/54/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '54' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_554_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_554_repl.yaml new file mode 100644 index 000000000..048eab6d9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_554_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/554/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '554' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_554_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_554_trainsize.yaml new file mode 100644 index 000000000..17c89d367 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_554_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/554/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '554' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_60_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_60_repl.yaml new file mode 100644 index 000000000..c49a8280a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_60_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/60/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '60' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_60_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_60_trainsize.yaml new file mode 100644 index 000000000..b4c593280 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_60_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/60/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '60' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_6332_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_6332_repl.yaml new file mode 100644 index 000000000..67013ceae --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_6332_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/6332/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '6332' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_6332_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_6332_trainsize.yaml new file mode 100644 index 000000000..387ba1ab5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_6332_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/6332/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '6332' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_6_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_6_repl.yaml new file mode 100644 index 000000000..0a597463e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_6_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/6/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '6' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_6_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_6_trainsize.yaml new file mode 100644 index 000000000..fbcf18182 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_rpart_6_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_rpart/6/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '6' + budget_type: trainsize + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1040_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1040_repl.yaml new file mode 100644 index 000000000..a8528767e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1040_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1040/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1040' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1040_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1040_trainsize.yaml new file mode 100644 index 000000000..92c83bac4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1040_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1040/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1040' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1049_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1049_repl.yaml new file mode 100644 index 000000000..ad8f64d42 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1049_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1049/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1049' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1049_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1049_trainsize.yaml new file mode 100644 index 000000000..09ba7dfde --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1049_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1049/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1049' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1050_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1050_repl.yaml new file mode 100644 index 000000000..c70dea8fe --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1050_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1050/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1050' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1050_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1050_trainsize.yaml new file mode 100644 index 000000000..ad079004a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1050_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1050/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1050' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1053_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1053_repl.yaml new file mode 100644 index 000000000..e9b022b4f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1053_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1053/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1053' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1053_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1053_trainsize.yaml new file mode 100644 index 000000000..bfab6bd83 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1053_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1053/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1053' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1056_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1056_repl.yaml new file mode 100644 index 000000000..3a30988b9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1056_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1056/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1056' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1056_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1056_trainsize.yaml new file mode 100644 index 000000000..92eaafa2b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1056_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1056/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1056' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1063_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1063_repl.yaml new file mode 100644 index 000000000..f37634638 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1063_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1063/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1063' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1063_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1063_trainsize.yaml new file mode 100644 index 000000000..b72c11c3b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1063_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1063/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1063' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1067_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1067_repl.yaml new file mode 100644 index 000000000..09c160110 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1067_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1067/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1067' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1067_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1067_trainsize.yaml new file mode 100644 index 000000000..0e1b70836 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1067_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1067/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1067' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1068_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1068_repl.yaml new file mode 100644 index 000000000..879ab0e25 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1068_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1068/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1068' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1068_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1068_trainsize.yaml new file mode 100644 index 000000000..8f1de15ea --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1068_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1068/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1068' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1111_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1111_repl.yaml new file mode 100644 index 000000000..9df875fbb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1111_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1111/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1111' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1111_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1111_trainsize.yaml new file mode 100644 index 000000000..8c5d5c8e9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1111_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1111/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1111' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_11_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_11_repl.yaml new file mode 100644 index 000000000..58b1489df --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_11_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/11/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '11' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_11_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_11_trainsize.yaml new file mode 100644 index 000000000..f47dfd130 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_11_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/11/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '11' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1220_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1220_repl.yaml new file mode 100644 index 000000000..75493b07e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1220_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1220/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1220' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1220_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1220_trainsize.yaml new file mode 100644 index 000000000..dfb440c4d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1220_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1220/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1220' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_12_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_12_repl.yaml new file mode 100644 index 000000000..b917119bd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_12_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/12/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '12' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_12_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_12_trainsize.yaml new file mode 100644 index 000000000..7ad0d2217 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_12_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/12/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '12' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1457_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1457_repl.yaml new file mode 100644 index 000000000..4b08dea0e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1457_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1457/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1457' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1457_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1457_trainsize.yaml new file mode 100644 index 000000000..fd22f7418 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1457_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1457/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1457' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1461_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1461_repl.yaml new file mode 100644 index 000000000..c0873579c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1461_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1461/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1461' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1461_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1461_trainsize.yaml new file mode 100644 index 000000000..38ab06346 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1461_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1461/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1461' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1462_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1462_repl.yaml new file mode 100644 index 000000000..0e40751f2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1462_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1462/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1462' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1462_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1462_trainsize.yaml new file mode 100644 index 000000000..afe2b3cec --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1462_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1462/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1462' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1464_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1464_repl.yaml new file mode 100644 index 000000000..b45d9ebc3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1464_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1464/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1464' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1464_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1464_trainsize.yaml new file mode 100644 index 000000000..e757193c7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1464_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1464/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1464' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1468_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1468_repl.yaml new file mode 100644 index 000000000..9f8018a9e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1468_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1468/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1468' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1468_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1468_trainsize.yaml new file mode 100644 index 000000000..50cf2a16b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1468_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1468/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1468' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1475_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1475_repl.yaml new file mode 100644 index 000000000..da0b8a413 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1475_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1475/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1475' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1475_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1475_trainsize.yaml new file mode 100644 index 000000000..9c6106e25 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1475_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1475/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1475' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1476_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1476_repl.yaml new file mode 100644 index 000000000..27d21a78d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1476_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1476/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1476' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1476_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1476_trainsize.yaml new file mode 100644 index 000000000..0eb2da9a2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1476_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1476/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1476' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1478_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1478_repl.yaml new file mode 100644 index 000000000..a68e9ddea --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1478_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1478/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1478' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1478_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1478_trainsize.yaml new file mode 100644 index 000000000..d4f0388a2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1478_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1478/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1478' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1479_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1479_repl.yaml new file mode 100644 index 000000000..304e49605 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1479_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1479/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1479' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1479_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1479_trainsize.yaml new file mode 100644 index 000000000..85f5207cc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1479_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1479/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1479' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1480_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1480_repl.yaml new file mode 100644 index 000000000..86554768d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1480_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1480/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1480' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1480_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1480_trainsize.yaml new file mode 100644 index 000000000..6470b471c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1480_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1480/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1480' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1485_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1485_repl.yaml new file mode 100644 index 000000000..1316286b3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1485_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1485/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1485' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1485_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1485_trainsize.yaml new file mode 100644 index 000000000..f1669a01d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1485_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1485/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1485' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1486_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1486_repl.yaml new file mode 100644 index 000000000..aec074c39 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1486_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1486/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1486' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1486_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1486_trainsize.yaml new file mode 100644 index 000000000..521521604 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1486_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1486/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1486' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1487_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1487_repl.yaml new file mode 100644 index 000000000..1d44ea249 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1487_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1487/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1487' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1487_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1487_trainsize.yaml new file mode 100644 index 000000000..f76c56c05 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1487_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1487/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1487' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1489_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1489_repl.yaml new file mode 100644 index 000000000..bb8758d2c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1489_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1489/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1489' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1489_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1489_trainsize.yaml new file mode 100644 index 000000000..47f5f3643 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1489_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1489/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1489' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1493_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1493_repl.yaml new file mode 100644 index 000000000..957646022 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1493_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1493/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1493' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1493_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1493_trainsize.yaml new file mode 100644 index 000000000..1469fa7f5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1493_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1493/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1493' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1494_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1494_repl.yaml new file mode 100644 index 000000000..4f3389349 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1494_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1494/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1494' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1494_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1494_trainsize.yaml new file mode 100644 index 000000000..f84a9ae52 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1494_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1494/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1494' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1497_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1497_repl.yaml new file mode 100644 index 000000000..044554d11 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1497_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1497/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1497' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1497_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1497_trainsize.yaml new file mode 100644 index 000000000..2466812eb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1497_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1497/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1497' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_14_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_14_repl.yaml new file mode 100644 index 000000000..aadb0df9b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_14_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/14/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '14' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_14_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_14_trainsize.yaml new file mode 100644 index 000000000..c241a99ab --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_14_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/14/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '14' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1501_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1501_repl.yaml new file mode 100644 index 000000000..0a5a2ab4e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1501_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1501/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1501' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1501_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1501_trainsize.yaml new file mode 100644 index 000000000..56ece9fa4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1501_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1501/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1501' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1510_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1510_repl.yaml new file mode 100644 index 000000000..35fb3d536 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1510_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1510/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1510' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1510_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1510_trainsize.yaml new file mode 100644 index 000000000..932aa5c73 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1510_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1510/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1510' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1515_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1515_repl.yaml new file mode 100644 index 000000000..e20fc8905 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1515_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1515/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1515' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1515_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1515_trainsize.yaml new file mode 100644 index 000000000..0cd1f0fcd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1515_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1515/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1515' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_151_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_151_repl.yaml new file mode 100644 index 000000000..87e9ed7bc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_151_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/151/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '151' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_151_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_151_trainsize.yaml new file mode 100644 index 000000000..194766bd2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_151_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/151/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '151' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1590_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1590_repl.yaml new file mode 100644 index 000000000..1c92c4538 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1590_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1590/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1590' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1590_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1590_trainsize.yaml new file mode 100644 index 000000000..7be1ce77a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_1590_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/1590/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '1590' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_15_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_15_repl.yaml new file mode 100644 index 000000000..990de79c6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_15_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/15/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '15' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_15_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_15_trainsize.yaml new file mode 100644 index 000000000..cfd6652fc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_15_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/15/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '15' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_16_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_16_repl.yaml new file mode 100644 index 000000000..6cbd9ba92 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_16_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/16/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '16' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_16_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_16_trainsize.yaml new file mode 100644 index 000000000..2e89a25bf --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_16_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/16/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '16' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_181_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_181_repl.yaml new file mode 100644 index 000000000..ffe43f472 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_181_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/181/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '181' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_181_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_181_trainsize.yaml new file mode 100644 index 000000000..b768ce635 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_181_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/181/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '181' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_182_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_182_repl.yaml new file mode 100644 index 000000000..6e4362f8b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_182_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/182/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '182' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_182_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_182_trainsize.yaml new file mode 100644 index 000000000..0ab3e4990 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_182_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/182/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '182' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_188_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_188_repl.yaml new file mode 100644 index 000000000..3b3d1481e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_188_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/188/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '188' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_188_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_188_trainsize.yaml new file mode 100644 index 000000000..257b1d728 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_188_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/188/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '188' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_18_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_18_repl.yaml new file mode 100644 index 000000000..1127de03e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_18_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/18/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '18' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_18_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_18_trainsize.yaml new file mode 100644 index 000000000..3ac42f736 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_18_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/18/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '18' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_22_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_22_repl.yaml new file mode 100644 index 000000000..d12c3ef06 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_22_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/22/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '22' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_22_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_22_trainsize.yaml new file mode 100644 index 000000000..351eabb14 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_22_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/22/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '22' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_23381_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_23381_repl.yaml new file mode 100644 index 000000000..d08567574 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_23381_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/23381/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '23381' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_23381_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_23381_trainsize.yaml new file mode 100644 index 000000000..9be0df93b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_23381_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/23381/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '23381' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_23_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_23_repl.yaml new file mode 100644 index 000000000..c78095ca0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_23_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/23/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '23' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_23_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_23_trainsize.yaml new file mode 100644 index 000000000..6b2a1b3bf --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_23_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/23/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '23' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_24_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_24_repl.yaml new file mode 100644 index 000000000..7404a770b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_24_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/24/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '24' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_24_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_24_trainsize.yaml new file mode 100644 index 000000000..dab3a2764 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_24_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/24/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '24' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_28_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_28_repl.yaml new file mode 100644 index 000000000..e8f58b585 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_28_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/28/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '28' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_28_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_28_trainsize.yaml new file mode 100644 index 000000000..e566a61ba --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_28_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/28/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '28' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_29_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_29_repl.yaml new file mode 100644 index 000000000..28fdd0d08 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_29_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/29/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '29' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_29_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_29_trainsize.yaml new file mode 100644 index 000000000..f7f455d92 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_29_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/29/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '29' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_300_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_300_repl.yaml new file mode 100644 index 000000000..3e04c477b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_300_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/300/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '300' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_300_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_300_trainsize.yaml new file mode 100644 index 000000000..cdf46d4e2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_300_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/300/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '300' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_307_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_307_repl.yaml new file mode 100644 index 000000000..61aede0dc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_307_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/307/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '307' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_307_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_307_trainsize.yaml new file mode 100644 index 000000000..a664818c8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_307_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/307/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '307' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_312_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_312_repl.yaml new file mode 100644 index 000000000..b2570a6f4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_312_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/312/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '312' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_312_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_312_trainsize.yaml new file mode 100644 index 000000000..2846a165f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_312_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/312/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '312' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_31_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_31_repl.yaml new file mode 100644 index 000000000..e94f1c3e8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_31_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/31/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '31' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_31_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_31_trainsize.yaml new file mode 100644 index 000000000..63ca492d5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_31_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/31/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '31' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_32_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_32_repl.yaml new file mode 100644 index 000000000..2eb650a49 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_32_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/32/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '32' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_32_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_32_trainsize.yaml new file mode 100644 index 000000000..d48e2d69b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_32_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/32/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '32' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_334_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_334_repl.yaml new file mode 100644 index 000000000..78b79e77c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_334_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/334/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '334' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_334_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_334_trainsize.yaml new file mode 100644 index 000000000..65c2003d5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_334_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/334/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '334' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_375_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_375_repl.yaml new file mode 100644 index 000000000..e8d66eb89 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_375_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/375/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '375' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_375_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_375_trainsize.yaml new file mode 100644 index 000000000..43784e3d4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_375_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/375/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '375' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_377_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_377_repl.yaml new file mode 100644 index 000000000..77b340bc6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_377_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/377/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '377' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_377_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_377_trainsize.yaml new file mode 100644 index 000000000..76d4a2e4e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_377_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/377/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '377' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_37_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_37_repl.yaml new file mode 100644 index 000000000..c4a8b17ad --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_37_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/37/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '37' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_37_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_37_trainsize.yaml new file mode 100644 index 000000000..e23fddc32 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_37_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/37/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '37' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_38_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_38_repl.yaml new file mode 100644 index 000000000..c056e0c05 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_38_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/38/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '38' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_38_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_38_trainsize.yaml new file mode 100644 index 000000000..13a9800d1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_38_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/38/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '38' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_3_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_3_repl.yaml new file mode 100644 index 000000000..2a3a85b03 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_3_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/3/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '3' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_3_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_3_trainsize.yaml new file mode 100644 index 000000000..efe36a4b7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_3_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/3/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '3' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40496_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40496_repl.yaml new file mode 100644 index 000000000..c97f2bdd9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40496_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40496/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40496' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40496_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40496_trainsize.yaml new file mode 100644 index 000000000..e523e62e6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40496_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40496/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40496' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40498_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40498_repl.yaml new file mode 100644 index 000000000..29e8c437b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40498_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40498/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40498' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40498_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40498_trainsize.yaml new file mode 100644 index 000000000..d73de8158 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40498_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40498/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40498' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40499_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40499_repl.yaml new file mode 100644 index 000000000..7d2bd05fc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40499_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40499/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40499' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40499_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40499_trainsize.yaml new file mode 100644 index 000000000..858ef56e9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40499_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40499/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40499' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40536_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40536_repl.yaml new file mode 100644 index 000000000..16b7b12fc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40536_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40536/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40536' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40536_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40536_trainsize.yaml new file mode 100644 index 000000000..4ad243b89 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40536_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40536/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40536' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40668_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40668_repl.yaml new file mode 100644 index 000000000..a660e064a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40668_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40668/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40668' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40668_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40668_trainsize.yaml new file mode 100644 index 000000000..622ddc216 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40668_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40668/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40668' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40670_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40670_repl.yaml new file mode 100644 index 000000000..84148925a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40670_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40670/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40670' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40670_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40670_trainsize.yaml new file mode 100644 index 000000000..550b8fd9f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40670_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40670/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40670' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40685_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40685_repl.yaml new file mode 100644 index 000000000..16352b82e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40685_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40685/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40685' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40685_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40685_trainsize.yaml new file mode 100644 index 000000000..426df6377 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40685_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40685/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40685' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40701_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40701_repl.yaml new file mode 100644 index 000000000..22bacc3c4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40701_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40701/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40701' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40701_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40701_trainsize.yaml new file mode 100644 index 000000000..c2f3db691 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40701_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40701/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40701' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40900_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40900_repl.yaml new file mode 100644 index 000000000..a35057901 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40900_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40900/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40900' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40900_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40900_trainsize.yaml new file mode 100644 index 000000000..558a5c391 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40900_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40900/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40900' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40966_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40966_repl.yaml new file mode 100644 index 000000000..a76f766b4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40966_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40966/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40966' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40966_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40966_trainsize.yaml new file mode 100644 index 000000000..ae82d940f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40966_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40966/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40966' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40975_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40975_repl.yaml new file mode 100644 index 000000000..61d4304bc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40975_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40975/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40975' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40975_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40975_trainsize.yaml new file mode 100644 index 000000000..4b33076bc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40975_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40975/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40975' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40978_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40978_repl.yaml new file mode 100644 index 000000000..204d442b5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40978_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40978/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40978' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40978_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40978_trainsize.yaml new file mode 100644 index 000000000..0842f14e6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40978_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40978/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40978' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40979_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40979_repl.yaml new file mode 100644 index 000000000..054667de9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40979_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40979/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40979' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40979_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40979_trainsize.yaml new file mode 100644 index 000000000..f52a0ddc2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40979_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40979/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40979' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40981_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40981_repl.yaml new file mode 100644 index 000000000..bb2716724 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40981_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40981/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40981' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40981_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40981_trainsize.yaml new file mode 100644 index 000000000..f33147a73 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40981_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40981/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40981' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40982_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40982_repl.yaml new file mode 100644 index 000000000..d3511c9be --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40982_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40982/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40982' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40982_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40982_trainsize.yaml new file mode 100644 index 000000000..d505dd5a3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40982_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40982/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40982' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40983_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40983_repl.yaml new file mode 100644 index 000000000..be63803a6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40983_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40983/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40983' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40983_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40983_trainsize.yaml new file mode 100644 index 000000000..1d0177893 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40983_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40983/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40983' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40984_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40984_repl.yaml new file mode 100644 index 000000000..099e2dbf7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40984_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40984/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40984' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40984_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40984_trainsize.yaml new file mode 100644 index 000000000..0b333f4fc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40984_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40984/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40984' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40994_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40994_repl.yaml new file mode 100644 index 000000000..8d2fb17ff --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40994_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40994/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40994' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40994_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40994_trainsize.yaml new file mode 100644 index 000000000..ea0f76918 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_40994_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/40994/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40994' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41027_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41027_repl.yaml new file mode 100644 index 000000000..b606188ec --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41027_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41027/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41027' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41027_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41027_trainsize.yaml new file mode 100644 index 000000000..f957af9da --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41027_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41027/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41027' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41138_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41138_repl.yaml new file mode 100644 index 000000000..6cea0c32e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41138_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41138/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41138' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41138_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41138_trainsize.yaml new file mode 100644 index 000000000..ee54e6e61 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41138_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41138/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41138' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41142_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41142_repl.yaml new file mode 100644 index 000000000..95d97d814 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41142_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41142/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41142' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41142_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41142_trainsize.yaml new file mode 100644 index 000000000..49fb27722 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41142_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41142/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41142' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41143_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41143_repl.yaml new file mode 100644 index 000000000..df7c93c6c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41143_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41143/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41143' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41143_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41143_trainsize.yaml new file mode 100644 index 000000000..bbb1d8e54 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41143_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41143/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41143' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41146_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41146_repl.yaml new file mode 100644 index 000000000..f6e1823ab --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41146_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41146/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41146' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41146_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41146_trainsize.yaml new file mode 100644 index 000000000..f0063e030 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41146_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41146/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41146' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41156_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41156_repl.yaml new file mode 100644 index 000000000..e686b8d25 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41156_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41156/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41156' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41156_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41156_trainsize.yaml new file mode 100644 index 000000000..57e56b3ef --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41156_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41156/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41156' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41157_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41157_repl.yaml new file mode 100644 index 000000000..a89938e8c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41157_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41157/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41157' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41157_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41157_trainsize.yaml new file mode 100644 index 000000000..161cda7b8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41157_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41157/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41157' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41162_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41162_repl.yaml new file mode 100644 index 000000000..09f768d7d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41162_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41162/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41162' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41162_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41162_trainsize.yaml new file mode 100644 index 000000000..67600c758 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41162_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41162/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41162' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41163_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41163_repl.yaml new file mode 100644 index 000000000..c862dc4bc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41163_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41163/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41163' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41163_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41163_trainsize.yaml new file mode 100644 index 000000000..3739eacce --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41163_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41163/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41163' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41164_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41164_repl.yaml new file mode 100644 index 000000000..5bdf3da32 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41164_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41164/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41164' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41164_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41164_trainsize.yaml new file mode 100644 index 000000000..800242e58 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41164_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41164/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41164' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41169_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41169_repl.yaml new file mode 100644 index 000000000..44e9a48f3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41169_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41169/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41169' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41169_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41169_trainsize.yaml new file mode 100644 index 000000000..bbfcd2782 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41169_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41169/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41169' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41212_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41212_repl.yaml new file mode 100644 index 000000000..641f44999 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41212_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41212/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41212' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41212_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41212_trainsize.yaml new file mode 100644 index 000000000..c1865245e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_41212_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/41212/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41212' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4134_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4134_repl.yaml new file mode 100644 index 000000000..0ea0bd884 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4134_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/4134/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '4134' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4134_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4134_trainsize.yaml new file mode 100644 index 000000000..07309ea7a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4134_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/4134/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '4134' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4154_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4154_repl.yaml new file mode 100644 index 000000000..9e77b5cec --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4154_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/4154/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '4154' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4154_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4154_trainsize.yaml new file mode 100644 index 000000000..75343a700 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4154_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/4154/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '4154' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_42_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_42_repl.yaml new file mode 100644 index 000000000..158737291 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_42_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/42/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '42' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_42_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_42_trainsize.yaml new file mode 100644 index 000000000..6a756dca8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_42_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/42/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '42' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_44_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_44_repl.yaml new file mode 100644 index 000000000..a16652b2a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_44_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/44/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '44' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_44_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_44_trainsize.yaml new file mode 100644 index 000000000..380ba88ae --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_44_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/44/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '44' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4534_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4534_repl.yaml new file mode 100644 index 000000000..d7512aa3f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4534_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/4534/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '4534' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4534_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4534_trainsize.yaml new file mode 100644 index 000000000..bd0b6cf30 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4534_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/4534/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '4534' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4538_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4538_repl.yaml new file mode 100644 index 000000000..6afbeaea0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4538_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/4538/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '4538' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4538_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4538_trainsize.yaml new file mode 100644 index 000000000..1cfff85db --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_4538_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/4538/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '4538' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_458_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_458_repl.yaml new file mode 100644 index 000000000..a88badef0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_458_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/458/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '458' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_458_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_458_trainsize.yaml new file mode 100644 index 000000000..ef1ba13df --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_458_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/458/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '458' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_469_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_469_repl.yaml new file mode 100644 index 000000000..9cd10095f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_469_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/469/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '469' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_469_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_469_trainsize.yaml new file mode 100644 index 000000000..e00d0d1cf --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_469_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/469/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '469' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_46_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_46_repl.yaml new file mode 100644 index 000000000..a79e29013 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_46_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/46/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '46' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_46_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_46_trainsize.yaml new file mode 100644 index 000000000..24c375dbe --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_46_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/46/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '46' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_470_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_470_repl.yaml new file mode 100644 index 000000000..8c3c9aa35 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_470_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/470/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '470' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_470_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_470_trainsize.yaml new file mode 100644 index 000000000..b0dd20807 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_470_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/470/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '470' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_50_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_50_repl.yaml new file mode 100644 index 000000000..46ffacdd0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_50_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/50/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '50' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_50_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_50_trainsize.yaml new file mode 100644 index 000000000..9a97df3c7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_50_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/50/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '50' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_54_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_54_repl.yaml new file mode 100644 index 000000000..e613b0350 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_54_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/54/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '54' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_54_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_54_trainsize.yaml new file mode 100644 index 000000000..4bcbfec56 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_54_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/54/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '54' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_60_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_60_repl.yaml new file mode 100644 index 000000000..2cf7d12f9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_60_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/60/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '60' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_60_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_60_trainsize.yaml new file mode 100644 index 000000000..f80e0208e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_60_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/60/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '60' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_6332_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_6332_repl.yaml new file mode 100644 index 000000000..001442817 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_6332_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/6332/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '6332' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_6332_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_6332_trainsize.yaml new file mode 100644 index 000000000..a0dfca7f9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_6332_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/6332/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '6332' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_6_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_6_repl.yaml new file mode 100644 index 000000000..400c257ac --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_6_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/6/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '6' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_6_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_6_trainsize.yaml new file mode 100644 index 000000000..41c44bf3d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_super_6_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_super/6/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '6' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1040_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1040_repl.yaml new file mode 100644 index 000000000..412ec23b4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1040_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1040/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1040' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1040_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1040_trainsize.yaml new file mode 100644 index 000000000..90d42448a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1040_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1040/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1040' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1049_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1049_repl.yaml new file mode 100644 index 000000000..2fa3ecdfb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1049_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1049/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1049' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1049_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1049_trainsize.yaml new file mode 100644 index 000000000..6e9b3c94e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1049_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1049/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1049' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1050_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1050_repl.yaml new file mode 100644 index 000000000..e9a76fd09 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1050_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1050/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1050' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1050_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1050_trainsize.yaml new file mode 100644 index 000000000..40bfe264e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1050_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1050/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1050' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1053_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1053_repl.yaml new file mode 100644 index 000000000..b15fac271 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1053_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1053/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1053' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1053_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1053_trainsize.yaml new file mode 100644 index 000000000..c62245ff2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1053_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1053/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1053' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1056_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1056_repl.yaml new file mode 100644 index 000000000..5e11724d1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1056_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1056/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1056' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1056_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1056_trainsize.yaml new file mode 100644 index 000000000..d01fdb4ea --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1056_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1056/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1056' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1063_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1063_repl.yaml new file mode 100644 index 000000000..175b205f2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1063_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1063/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1063' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1063_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1063_trainsize.yaml new file mode 100644 index 000000000..7694b7d82 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1063_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1063/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1063' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1067_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1067_repl.yaml new file mode 100644 index 000000000..dc67730e8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1067_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1067/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1067' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1067_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1067_trainsize.yaml new file mode 100644 index 000000000..d8b9c9ec2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1067_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1067/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1067' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1068_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1068_repl.yaml new file mode 100644 index 000000000..486608441 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1068_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1068/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1068' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1068_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1068_trainsize.yaml new file mode 100644 index 000000000..700a611e1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1068_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1068/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1068' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1111_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1111_repl.yaml new file mode 100644 index 000000000..5213fcddb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1111_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1111/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1111' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1111_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1111_trainsize.yaml new file mode 100644 index 000000000..d1329e6b6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1111_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1111/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1111' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_11_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_11_repl.yaml new file mode 100644 index 000000000..f68101dff --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_11_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/11/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '11' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_11_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_11_trainsize.yaml new file mode 100644 index 000000000..94d59eba3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_11_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/11/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '11' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1220_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1220_repl.yaml new file mode 100644 index 000000000..511ecd316 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1220_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1220/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1220' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1220_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1220_trainsize.yaml new file mode 100644 index 000000000..f46f4e3b7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1220_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1220/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1220' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_12_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_12_repl.yaml new file mode 100644 index 000000000..d2549c470 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_12_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/12/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '12' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_12_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_12_trainsize.yaml new file mode 100644 index 000000000..2c06a2e17 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_12_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/12/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '12' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1457_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1457_repl.yaml new file mode 100644 index 000000000..e3e42908d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1457_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1457/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1457' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1457_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1457_trainsize.yaml new file mode 100644 index 000000000..e7b5c1aee --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1457_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1457/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1457' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1461_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1461_repl.yaml new file mode 100644 index 000000000..626d739ae --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1461_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1461/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1461' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1461_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1461_trainsize.yaml new file mode 100644 index 000000000..4ca10902f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1461_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1461/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1461' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1462_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1462_repl.yaml new file mode 100644 index 000000000..01eb20e2d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1462_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1462/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1462' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1462_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1462_trainsize.yaml new file mode 100644 index 000000000..d2296404d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1462_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1462/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1462' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1464_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1464_repl.yaml new file mode 100644 index 000000000..a947f3d08 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1464_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1464/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1464' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1464_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1464_trainsize.yaml new file mode 100644 index 000000000..7686f5ee1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1464_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1464/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1464' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1468_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1468_repl.yaml new file mode 100644 index 000000000..3b29c11bd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1468_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1468/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1468' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1468_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1468_trainsize.yaml new file mode 100644 index 000000000..725f724f3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1468_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1468/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1468' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1475_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1475_repl.yaml new file mode 100644 index 000000000..92e3e089d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1475_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1475/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1475' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1475_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1475_trainsize.yaml new file mode 100644 index 000000000..0c8a63641 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1475_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1475/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1475' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1476_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1476_repl.yaml new file mode 100644 index 000000000..aa369b660 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1476_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1476/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1476' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1476_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1476_trainsize.yaml new file mode 100644 index 000000000..5be2bbcd5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1476_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1476/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1476' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1478_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1478_repl.yaml new file mode 100644 index 000000000..cf6e5f3ff --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1478_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1478/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1478' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1478_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1478_trainsize.yaml new file mode 100644 index 000000000..637f74e74 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1478_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1478/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1478' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1479_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1479_repl.yaml new file mode 100644 index 000000000..9cac773e4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1479_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1479/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1479' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1479_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1479_trainsize.yaml new file mode 100644 index 000000000..65638542c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1479_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1479/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1479' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1480_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1480_repl.yaml new file mode 100644 index 000000000..e399d6007 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1480_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1480/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1480' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1480_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1480_trainsize.yaml new file mode 100644 index 000000000..cfb243b60 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1480_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1480/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1480' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1485_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1485_repl.yaml new file mode 100644 index 000000000..6d159f43b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1485_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1485/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1485' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1485_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1485_trainsize.yaml new file mode 100644 index 000000000..bc46ddbd6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1485_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1485/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1485' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1486_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1486_repl.yaml new file mode 100644 index 000000000..7bb5b9100 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1486_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1486/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1486' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1486_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1486_trainsize.yaml new file mode 100644 index 000000000..69df5e92c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1486_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1486/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1486' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1487_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1487_repl.yaml new file mode 100644 index 000000000..455d09e86 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1487_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1487/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1487' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1487_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1487_trainsize.yaml new file mode 100644 index 000000000..84e463bfc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1487_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1487/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1487' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1489_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1489_repl.yaml new file mode 100644 index 000000000..5596040e4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1489_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1489/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1489' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1489_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1489_trainsize.yaml new file mode 100644 index 000000000..6064e0e7f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1489_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1489/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1489' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1493_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1493_repl.yaml new file mode 100644 index 000000000..672c8a83b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1493_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1493/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1493' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1493_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1493_trainsize.yaml new file mode 100644 index 000000000..0fc286c92 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1493_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1493/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1493' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1494_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1494_repl.yaml new file mode 100644 index 000000000..a0e11f705 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1494_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1494/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1494' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1494_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1494_trainsize.yaml new file mode 100644 index 000000000..de5e47c1c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1494_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1494/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1494' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1497_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1497_repl.yaml new file mode 100644 index 000000000..c515829df --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1497_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1497/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1497' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1497_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1497_trainsize.yaml new file mode 100644 index 000000000..e24b531c6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1497_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1497/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1497' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_14_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_14_repl.yaml new file mode 100644 index 000000000..1f3524f7e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_14_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/14/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '14' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_14_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_14_trainsize.yaml new file mode 100644 index 000000000..6b7e03715 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_14_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/14/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '14' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1501_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1501_repl.yaml new file mode 100644 index 000000000..b1bbed179 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1501_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1501/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1501' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1501_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1501_trainsize.yaml new file mode 100644 index 000000000..6e28840e5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1501_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1501/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1501' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1510_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1510_repl.yaml new file mode 100644 index 000000000..21e10b455 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1510_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1510/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1510' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1510_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1510_trainsize.yaml new file mode 100644 index 000000000..da6ed6b4d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1510_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1510/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1510' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1515_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1515_repl.yaml new file mode 100644 index 000000000..809448d3d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1515_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1515/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1515' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1515_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1515_trainsize.yaml new file mode 100644 index 000000000..2a09ebfd5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1515_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1515/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1515' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_151_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_151_repl.yaml new file mode 100644 index 000000000..59ecacebc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_151_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/151/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '151' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_151_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_151_trainsize.yaml new file mode 100644 index 000000000..6204888f9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_151_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/151/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '151' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1590_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1590_repl.yaml new file mode 100644 index 000000000..fe3712e25 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1590_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1590/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1590' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1590_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1590_trainsize.yaml new file mode 100644 index 000000000..bcef68931 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_1590_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/1590/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '1590' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_15_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_15_repl.yaml new file mode 100644 index 000000000..a0a2bb3a5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_15_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/15/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '15' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_15_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_15_trainsize.yaml new file mode 100644 index 000000000..747a74582 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_15_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/15/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '15' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_16_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_16_repl.yaml new file mode 100644 index 000000000..2a2de4277 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_16_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/16/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '16' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_16_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_16_trainsize.yaml new file mode 100644 index 000000000..357822620 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_16_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/16/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '16' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_181_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_181_repl.yaml new file mode 100644 index 000000000..4f97d288f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_181_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/181/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '181' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_181_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_181_trainsize.yaml new file mode 100644 index 000000000..025a5c074 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_181_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/181/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '181' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_182_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_182_repl.yaml new file mode 100644 index 000000000..72ad04411 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_182_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/182/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '182' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_182_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_182_trainsize.yaml new file mode 100644 index 000000000..bc18d5c53 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_182_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/182/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '182' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_188_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_188_repl.yaml new file mode 100644 index 000000000..0cd8f2c95 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_188_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/188/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '188' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_188_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_188_trainsize.yaml new file mode 100644 index 000000000..b825115a9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_188_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/188/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '188' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_18_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_18_repl.yaml new file mode 100644 index 000000000..048ba63f9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_18_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/18/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '18' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_18_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_18_trainsize.yaml new file mode 100644 index 000000000..900857dde --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_18_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/18/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '18' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_22_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_22_repl.yaml new file mode 100644 index 000000000..fda002600 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_22_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/22/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '22' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_22_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_22_trainsize.yaml new file mode 100644 index 000000000..c8a740ba5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_22_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/22/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '22' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_23381_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_23381_repl.yaml new file mode 100644 index 000000000..69faf6003 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_23381_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/23381/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '23381' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_23381_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_23381_trainsize.yaml new file mode 100644 index 000000000..df1afa39c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_23381_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/23381/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '23381' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_23_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_23_repl.yaml new file mode 100644 index 000000000..4cd513211 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_23_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/23/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '23' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_23_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_23_trainsize.yaml new file mode 100644 index 000000000..b41c53785 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_23_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/23/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '23' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_24_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_24_repl.yaml new file mode 100644 index 000000000..3e091f792 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_24_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/24/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '24' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_24_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_24_trainsize.yaml new file mode 100644 index 000000000..0b5d55ddb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_24_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/24/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '24' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_28_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_28_repl.yaml new file mode 100644 index 000000000..18ca0549c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_28_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/28/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '28' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_28_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_28_trainsize.yaml new file mode 100644 index 000000000..e7daee533 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_28_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/28/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '28' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_29_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_29_repl.yaml new file mode 100644 index 000000000..c3691ca3a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_29_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/29/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '29' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_29_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_29_trainsize.yaml new file mode 100644 index 000000000..29e13512f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_29_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/29/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '29' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_300_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_300_repl.yaml new file mode 100644 index 000000000..d984c8104 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_300_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/300/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '300' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_300_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_300_trainsize.yaml new file mode 100644 index 000000000..f9edae1c4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_300_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/300/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '300' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_307_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_307_repl.yaml new file mode 100644 index 000000000..016208cce --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_307_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/307/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '307' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_307_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_307_trainsize.yaml new file mode 100644 index 000000000..23cfbbbaf --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_307_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/307/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '307' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_312_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_312_repl.yaml new file mode 100644 index 000000000..daa24594a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_312_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/312/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '312' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_312_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_312_trainsize.yaml new file mode 100644 index 000000000..6d53ed2f0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_312_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/312/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '312' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_31_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_31_repl.yaml new file mode 100644 index 000000000..3b267560d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_31_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/31/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '31' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_31_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_31_trainsize.yaml new file mode 100644 index 000000000..cae97410e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_31_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/31/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '31' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_32_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_32_repl.yaml new file mode 100644 index 000000000..e5e358ff9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_32_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/32/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '32' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_32_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_32_trainsize.yaml new file mode 100644 index 000000000..cc53be30e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_32_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/32/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '32' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_334_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_334_repl.yaml new file mode 100644 index 000000000..6b03c87cb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_334_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/334/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '334' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_334_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_334_trainsize.yaml new file mode 100644 index 000000000..b11eb4e3a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_334_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/334/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '334' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_375_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_375_repl.yaml new file mode 100644 index 000000000..af8703a70 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_375_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/375/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '375' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_375_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_375_trainsize.yaml new file mode 100644 index 000000000..4e9d96ee5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_375_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/375/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '375' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_377_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_377_repl.yaml new file mode 100644 index 000000000..6375d8165 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_377_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/377/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '377' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_377_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_377_trainsize.yaml new file mode 100644 index 000000000..3592936df --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_377_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/377/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '377' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_37_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_37_repl.yaml new file mode 100644 index 000000000..6d1bde919 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_37_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/37/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '37' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_37_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_37_trainsize.yaml new file mode 100644 index 000000000..c1161f91c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_37_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/37/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '37' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_38_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_38_repl.yaml new file mode 100644 index 000000000..bee9c2de4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_38_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/38/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '38' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_38_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_38_trainsize.yaml new file mode 100644 index 000000000..d59adc929 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_38_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/38/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '38' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_3_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_3_repl.yaml new file mode 100644 index 000000000..6ec52bffe --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_3_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/3/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '3' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_3_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_3_trainsize.yaml new file mode 100644 index 000000000..733fdfd75 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_3_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/3/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '3' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40496_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40496_repl.yaml new file mode 100644 index 000000000..85b0c6ace --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40496_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40496/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40496' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40496_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40496_trainsize.yaml new file mode 100644 index 000000000..334918923 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40496_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40496/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40496' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40498_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40498_repl.yaml new file mode 100644 index 000000000..323f0466a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40498_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40498/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40498' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40498_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40498_trainsize.yaml new file mode 100644 index 000000000..9a60efa40 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40498_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40498/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40498' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40499_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40499_repl.yaml new file mode 100644 index 000000000..47aa299f9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40499_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40499/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40499' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40499_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40499_trainsize.yaml new file mode 100644 index 000000000..e50d5bd12 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40499_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40499/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40499' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40536_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40536_repl.yaml new file mode 100644 index 000000000..af761e6f4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40536_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40536/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40536' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40536_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40536_trainsize.yaml new file mode 100644 index 000000000..1da4d9493 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40536_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40536/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40536' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40668_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40668_repl.yaml new file mode 100644 index 000000000..376fd5ae6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40668_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40668/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40668' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40668_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40668_trainsize.yaml new file mode 100644 index 000000000..3da6b06ae --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40668_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40668/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40668' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40670_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40670_repl.yaml new file mode 100644 index 000000000..c7c1c36f2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40670_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40670/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40670' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40670_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40670_trainsize.yaml new file mode 100644 index 000000000..f6ec9ca41 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40670_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40670/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40670' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40685_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40685_repl.yaml new file mode 100644 index 000000000..c20382540 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40685_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40685/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40685' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40685_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40685_trainsize.yaml new file mode 100644 index 000000000..5096ae905 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40685_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40685/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40685' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40701_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40701_repl.yaml new file mode 100644 index 000000000..3af40d750 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40701_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40701/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40701' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40701_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40701_trainsize.yaml new file mode 100644 index 000000000..51e279984 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40701_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40701/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40701' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40900_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40900_repl.yaml new file mode 100644 index 000000000..8e7473e91 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40900_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40900/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40900' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40900_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40900_trainsize.yaml new file mode 100644 index 000000000..10269516e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40900_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40900/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40900' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40966_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40966_repl.yaml new file mode 100644 index 000000000..a16b2d1c8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40966_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40966/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40966' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40966_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40966_trainsize.yaml new file mode 100644 index 000000000..39052f0a9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40966_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40966/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40966' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40975_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40975_repl.yaml new file mode 100644 index 000000000..18ecadd76 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40975_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40975/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40975' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40975_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40975_trainsize.yaml new file mode 100644 index 000000000..6df74ceab --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40975_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40975/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40975' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40978_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40978_repl.yaml new file mode 100644 index 000000000..623ac5bf5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40978_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40978/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40978' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40978_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40978_trainsize.yaml new file mode 100644 index 000000000..2222909bf --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40978_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40978/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40978' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40979_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40979_repl.yaml new file mode 100644 index 000000000..39e626dd4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40979_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40979/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40979' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40979_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40979_trainsize.yaml new file mode 100644 index 000000000..6c38689fe --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40979_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40979/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40979' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40981_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40981_repl.yaml new file mode 100644 index 000000000..1d603fbf5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40981_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40981/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40981' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40981_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40981_trainsize.yaml new file mode 100644 index 000000000..5bd47a75b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40981_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40981/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40981' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40982_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40982_repl.yaml new file mode 100644 index 000000000..34d2bd62e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40982_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40982/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40982' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40982_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40982_trainsize.yaml new file mode 100644 index 000000000..d2e20c181 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40982_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40982/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40982' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40983_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40983_repl.yaml new file mode 100644 index 000000000..506614f54 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40983_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40983/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40983' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40983_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40983_trainsize.yaml new file mode 100644 index 000000000..d4764db41 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40983_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40983/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40983' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40984_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40984_repl.yaml new file mode 100644 index 000000000..8062fe559 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40984_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40984/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40984' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40984_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40984_trainsize.yaml new file mode 100644 index 000000000..f86bb51b0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40984_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40984/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40984' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40994_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40994_repl.yaml new file mode 100644 index 000000000..a88b1bb44 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40994_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40994/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40994' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40994_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40994_trainsize.yaml new file mode 100644 index 000000000..cc4ab5fe2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_40994_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/40994/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40994' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41027_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41027_repl.yaml new file mode 100644 index 000000000..6af3b412c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41027_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41027/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41027' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41027_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41027_trainsize.yaml new file mode 100644 index 000000000..5fe2224b6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41027_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41027/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41027' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41138_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41138_repl.yaml new file mode 100644 index 000000000..a8bfb425e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41138_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41138/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41138' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41138_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41138_trainsize.yaml new file mode 100644 index 000000000..fce5e7def --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41138_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41138/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41138' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41142_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41142_repl.yaml new file mode 100644 index 000000000..2bd5d1342 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41142_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41142/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41142' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41142_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41142_trainsize.yaml new file mode 100644 index 000000000..490eb8875 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41142_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41142/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41142' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41143_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41143_repl.yaml new file mode 100644 index 000000000..3a1c8d756 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41143_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41143/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41143' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41143_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41143_trainsize.yaml new file mode 100644 index 000000000..0fbff420c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41143_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41143/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41143' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41146_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41146_repl.yaml new file mode 100644 index 000000000..fb688d488 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41146_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41146/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41146' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41146_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41146_trainsize.yaml new file mode 100644 index 000000000..388151cd5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41146_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41146/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41146' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41156_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41156_repl.yaml new file mode 100644 index 000000000..bdb0e8145 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41156_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41156/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41156' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41156_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41156_trainsize.yaml new file mode 100644 index 000000000..7e68d5757 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41156_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41156/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41156' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41157_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41157_repl.yaml new file mode 100644 index 000000000..910aa58d8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41157_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41157/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41157' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41157_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41157_trainsize.yaml new file mode 100644 index 000000000..ab3936ba7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41157_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41157/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41157' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41162_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41162_repl.yaml new file mode 100644 index 000000000..3c49a2067 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41162_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41162/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41162' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41162_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41162_trainsize.yaml new file mode 100644 index 000000000..920eba9b4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41162_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41162/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41162' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41163_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41163_repl.yaml new file mode 100644 index 000000000..b21e6b598 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41163_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41163/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41163' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41163_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41163_trainsize.yaml new file mode 100644 index 000000000..cec5f9686 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41163_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41163/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41163' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41164_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41164_repl.yaml new file mode 100644 index 000000000..c4af752cb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41164_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41164/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41164' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41164_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41164_trainsize.yaml new file mode 100644 index 000000000..446e92c01 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41164_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41164/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41164' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41169_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41169_repl.yaml new file mode 100644 index 000000000..cda9bc47e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41169_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41169/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41169' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41169_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41169_trainsize.yaml new file mode 100644 index 000000000..2b0877444 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41169_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41169/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41169' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41212_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41212_repl.yaml new file mode 100644 index 000000000..993ec3148 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41212_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41212/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41212' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41212_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41212_trainsize.yaml new file mode 100644 index 000000000..79a6f8d34 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41212_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41212/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41212' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41216_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41216_repl.yaml new file mode 100644 index 000000000..dc8a9182a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41216_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41216/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41216' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41216_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41216_trainsize.yaml new file mode 100644 index 000000000..21f978a1e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41216_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41216/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41216' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41278_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41278_repl.yaml new file mode 100644 index 000000000..af6bd762f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41278_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41278/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41278' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41278_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41278_trainsize.yaml new file mode 100644 index 000000000..f0e9ee5ec --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_41278_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/41278/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '41278' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4134_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4134_repl.yaml new file mode 100644 index 000000000..ebdec7887 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4134_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/4134/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '4134' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4134_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4134_trainsize.yaml new file mode 100644 index 000000000..ebd67292a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4134_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/4134/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '4134' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4135_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4135_repl.yaml new file mode 100644 index 000000000..ffb251547 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4135_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/4135/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '4135' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4135_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4135_trainsize.yaml new file mode 100644 index 000000000..03fdbec6d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4135_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/4135/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '4135' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4154_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4154_repl.yaml new file mode 100644 index 000000000..d404a954a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4154_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/4154/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '4154' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4154_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4154_trainsize.yaml new file mode 100644 index 000000000..3cf0afd9c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4154_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/4154/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '4154' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_42_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_42_repl.yaml new file mode 100644 index 000000000..d85355523 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_42_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/42/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '42' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_42_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_42_trainsize.yaml new file mode 100644 index 000000000..803dbc945 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_42_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/42/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '42' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_44_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_44_repl.yaml new file mode 100644 index 000000000..f617508f2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_44_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/44/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '44' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_44_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_44_trainsize.yaml new file mode 100644 index 000000000..fd044dde6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_44_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/44/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '44' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4534_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4534_repl.yaml new file mode 100644 index 000000000..e4dc82515 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4534_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/4534/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '4534' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4534_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4534_trainsize.yaml new file mode 100644 index 000000000..67a293597 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4534_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/4534/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '4534' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4538_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4538_repl.yaml new file mode 100644 index 000000000..e513e3538 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4538_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/4538/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '4538' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4538_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4538_trainsize.yaml new file mode 100644 index 000000000..3d5e78693 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_4538_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/4538/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '4538' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_458_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_458_repl.yaml new file mode 100644 index 000000000..4c9e28327 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_458_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/458/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '458' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_458_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_458_trainsize.yaml new file mode 100644 index 000000000..78e140db3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_458_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/458/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '458' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_469_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_469_repl.yaml new file mode 100644 index 000000000..7cf57d750 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_469_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/469/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '469' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_469_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_469_trainsize.yaml new file mode 100644 index 000000000..678cd74db --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_469_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/469/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '469' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_46_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_46_repl.yaml new file mode 100644 index 000000000..2de78bcb8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_46_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/46/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '46' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_46_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_46_trainsize.yaml new file mode 100644 index 000000000..d932b5838 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_46_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/46/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '46' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_470_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_470_repl.yaml new file mode 100644 index 000000000..2e78c1d43 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_470_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/470/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '470' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_470_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_470_trainsize.yaml new file mode 100644 index 000000000..2381467b3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_470_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/470/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '470' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_50_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_50_repl.yaml new file mode 100644 index 000000000..c83fc266d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_50_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/50/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '50' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_50_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_50_trainsize.yaml new file mode 100644 index 000000000..2f19e9332 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_50_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/50/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '50' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_54_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_54_repl.yaml new file mode 100644 index 000000000..b994adbc5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_54_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/54/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '54' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_54_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_54_trainsize.yaml new file mode 100644 index 000000000..8107531c6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_54_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/54/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '54' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_60_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_60_repl.yaml new file mode 100644 index 000000000..f7c339d41 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_60_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/60/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '60' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_60_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_60_trainsize.yaml new file mode 100644 index 000000000..c9d190c5e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_60_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/60/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '60' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_6332_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_6332_repl.yaml new file mode 100644 index 000000000..61f17cf83 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_6332_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/6332/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '6332' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_6332_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_6332_trainsize.yaml new file mode 100644 index 000000000..a151821f8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_6332_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/6332/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '6332' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_6_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_6_repl.yaml new file mode 100644 index 000000000..d0d2461cf --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_6_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/6/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '6' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_6_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_6_trainsize.yaml new file mode 100644 index 000000000..9791af7d3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_svm_6_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_svm/6/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '6' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1040_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1040_repl.yaml new file mode 100644 index 000000000..43e635616 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1040_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1040/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1040' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1040_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1040_trainsize.yaml new file mode 100644 index 000000000..5376ade8b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1040_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1040/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1040' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1049_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1049_repl.yaml new file mode 100644 index 000000000..ed34f1cf9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1049_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1049/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1049' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1049_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1049_trainsize.yaml new file mode 100644 index 000000000..91ad1dadc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1049_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1049/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1049' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1050_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1050_repl.yaml new file mode 100644 index 000000000..ab040f608 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1050_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1050/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1050' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1050_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1050_trainsize.yaml new file mode 100644 index 000000000..e8692ad78 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1050_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1050/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1050' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1053_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1053_repl.yaml new file mode 100644 index 000000000..3d312db69 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1053_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1053/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1053' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1053_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1053_trainsize.yaml new file mode 100644 index 000000000..5517fb14d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1053_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1053/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1053' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1056_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1056_repl.yaml new file mode 100644 index 000000000..b36944d03 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1056_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1056/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1056' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1056_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1056_trainsize.yaml new file mode 100644 index 000000000..d79d89866 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1056_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1056/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1056' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1063_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1063_repl.yaml new file mode 100644 index 000000000..28bf84e9d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1063_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1063/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1063' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1063_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1063_trainsize.yaml new file mode 100644 index 000000000..32c25d903 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1063_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1063/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1063' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1067_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1067_repl.yaml new file mode 100644 index 000000000..126bb295b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1067_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1067/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1067' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1067_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1067_trainsize.yaml new file mode 100644 index 000000000..8a3f0322d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1067_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1067/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1067' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1068_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1068_repl.yaml new file mode 100644 index 000000000..e0df2c238 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1068_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1068/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1068' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1068_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1068_trainsize.yaml new file mode 100644 index 000000000..1781d433e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1068_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1068/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1068' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1111_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1111_repl.yaml new file mode 100644 index 000000000..725ffffdc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1111_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1111/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1111' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1111_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1111_trainsize.yaml new file mode 100644 index 000000000..806610a49 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1111_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1111/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1111' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_11_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_11_repl.yaml new file mode 100644 index 000000000..24c02786e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_11_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/11/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '11' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_11_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_11_trainsize.yaml new file mode 100644 index 000000000..60cc25368 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_11_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/11/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '11' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1220_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1220_repl.yaml new file mode 100644 index 000000000..3384cc98d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1220_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1220/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1220' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1220_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1220_trainsize.yaml new file mode 100644 index 000000000..4c21c1a09 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1220_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1220/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1220' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_12_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_12_repl.yaml new file mode 100644 index 000000000..47f86b579 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_12_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/12/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '12' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_12_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_12_trainsize.yaml new file mode 100644 index 000000000..786d7e94f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_12_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/12/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '12' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1457_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1457_repl.yaml new file mode 100644 index 000000000..cdd8d99cd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1457_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1457/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1457' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1457_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1457_trainsize.yaml new file mode 100644 index 000000000..47e04e5e6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1457_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1457/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1457' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1461_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1461_repl.yaml new file mode 100644 index 000000000..58df162b7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1461_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1461/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1461' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1461_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1461_trainsize.yaml new file mode 100644 index 000000000..eed1f300b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1461_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1461/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1461' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1462_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1462_repl.yaml new file mode 100644 index 000000000..49acf0080 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1462_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1462/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1462' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1462_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1462_trainsize.yaml new file mode 100644 index 000000000..4ac91d20c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1462_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1462/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1462' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1464_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1464_repl.yaml new file mode 100644 index 000000000..1bb04e6c9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1464_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1464/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1464' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1464_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1464_trainsize.yaml new file mode 100644 index 000000000..97cbc74d7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1464_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1464/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1464' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1468_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1468_repl.yaml new file mode 100644 index 000000000..9df32013a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1468_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1468/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1468' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1468_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1468_trainsize.yaml new file mode 100644 index 000000000..79fef414a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1468_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1468/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1468' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1475_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1475_repl.yaml new file mode 100644 index 000000000..d8f04adde --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1475_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1475/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1475' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1475_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1475_trainsize.yaml new file mode 100644 index 000000000..86757d23e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1475_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1475/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1475' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1476_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1476_repl.yaml new file mode 100644 index 000000000..0ecd61342 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1476_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1476/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1476' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1476_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1476_trainsize.yaml new file mode 100644 index 000000000..b643cde00 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1476_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1476/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1476' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1478_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1478_repl.yaml new file mode 100644 index 000000000..f786130fe --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1478_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1478/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1478' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1478_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1478_trainsize.yaml new file mode 100644 index 000000000..231aeb78c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1478_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1478/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1478' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1479_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1479_repl.yaml new file mode 100644 index 000000000..13fa152c1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1479_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1479/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1479' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1479_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1479_trainsize.yaml new file mode 100644 index 000000000..2d0ff7a25 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1479_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1479/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1479' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1480_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1480_repl.yaml new file mode 100644 index 000000000..ed6920e3a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1480_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1480/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1480' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1480_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1480_trainsize.yaml new file mode 100644 index 000000000..dd2faf91a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1480_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1480/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1480' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1485_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1485_repl.yaml new file mode 100644 index 000000000..3c101c4e0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1485_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1485/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1485' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1485_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1485_trainsize.yaml new file mode 100644 index 000000000..ceff1444b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1485_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1485/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1485' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1486_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1486_repl.yaml new file mode 100644 index 000000000..9d1cbb6a6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1486_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1486/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1486' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1486_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1486_trainsize.yaml new file mode 100644 index 000000000..c75f028e8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1486_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1486/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1486' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1487_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1487_repl.yaml new file mode 100644 index 000000000..ee82e3a5f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1487_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1487/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1487' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1487_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1487_trainsize.yaml new file mode 100644 index 000000000..c5da28b52 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1487_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1487/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1487' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1489_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1489_repl.yaml new file mode 100644 index 000000000..e1de7ac60 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1489_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1489/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1489' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1489_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1489_trainsize.yaml new file mode 100644 index 000000000..5607f80c7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1489_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1489/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1489' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1493_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1493_repl.yaml new file mode 100644 index 000000000..d65ed8ef5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1493_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1493/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1493' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1493_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1493_trainsize.yaml new file mode 100644 index 000000000..58e1c8a64 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1493_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1493/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1493' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1494_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1494_repl.yaml new file mode 100644 index 000000000..38643c210 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1494_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1494/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1494' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1494_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1494_trainsize.yaml new file mode 100644 index 000000000..4934b1808 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1494_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1494/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1494' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1497_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1497_repl.yaml new file mode 100644 index 000000000..801a44752 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1497_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1497/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1497' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1497_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1497_trainsize.yaml new file mode 100644 index 000000000..4e5d5dc5f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1497_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1497/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1497' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_14_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_14_repl.yaml new file mode 100644 index 000000000..1aba06297 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_14_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/14/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '14' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_14_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_14_trainsize.yaml new file mode 100644 index 000000000..8deb225c5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_14_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/14/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '14' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1501_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1501_repl.yaml new file mode 100644 index 000000000..9e1823cb6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1501_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1501/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1501' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1501_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1501_trainsize.yaml new file mode 100644 index 000000000..c38b492a4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1501_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1501/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1501' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1510_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1510_repl.yaml new file mode 100644 index 000000000..b510b1b5d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1510_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1510/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1510' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1510_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1510_trainsize.yaml new file mode 100644 index 000000000..7bfc063d3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1510_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1510/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1510' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1515_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1515_repl.yaml new file mode 100644 index 000000000..3e01e40dc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1515_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1515/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1515' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1515_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1515_trainsize.yaml new file mode 100644 index 000000000..4387e9feb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1515_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1515/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1515' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_151_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_151_repl.yaml new file mode 100644 index 000000000..48985044b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_151_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/151/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '151' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_151_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_151_trainsize.yaml new file mode 100644 index 000000000..4eb2af8ca --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_151_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/151/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '151' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1590_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1590_repl.yaml new file mode 100644 index 000000000..830c3d986 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1590_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1590/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1590' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1590_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1590_trainsize.yaml new file mode 100644 index 000000000..cf8d5fa22 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_1590_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/1590/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1590' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_15_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_15_repl.yaml new file mode 100644 index 000000000..558d8b741 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_15_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/15/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '15' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_15_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_15_trainsize.yaml new file mode 100644 index 000000000..ca5560ad3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_15_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/15/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '15' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_16_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_16_repl.yaml new file mode 100644 index 000000000..2f0d486fc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_16_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/16/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '16' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_16_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_16_trainsize.yaml new file mode 100644 index 000000000..cf126e096 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_16_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/16/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '16' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_181_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_181_repl.yaml new file mode 100644 index 000000000..603699070 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_181_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/181/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '181' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_181_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_181_trainsize.yaml new file mode 100644 index 000000000..c95c64a3f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_181_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/181/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '181' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_182_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_182_repl.yaml new file mode 100644 index 000000000..dc5923f5b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_182_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/182/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '182' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_182_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_182_trainsize.yaml new file mode 100644 index 000000000..781eb780c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_182_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/182/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '182' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_188_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_188_repl.yaml new file mode 100644 index 000000000..c9b599cbc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_188_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/188/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '188' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_188_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_188_trainsize.yaml new file mode 100644 index 000000000..0bfd64ffc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_188_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/188/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '188' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_18_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_18_repl.yaml new file mode 100644 index 000000000..6d411d426 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_18_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/18/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '18' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_18_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_18_trainsize.yaml new file mode 100644 index 000000000..d60f406e8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_18_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/18/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '18' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_22_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_22_repl.yaml new file mode 100644 index 000000000..af2868de9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_22_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/22/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '22' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_22_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_22_trainsize.yaml new file mode 100644 index 000000000..cb49d5483 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_22_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/22/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '22' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23381_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23381_repl.yaml new file mode 100644 index 000000000..dc5568a85 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23381_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/23381/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '23381' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23381_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23381_trainsize.yaml new file mode 100644 index 000000000..b6ecb493a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23381_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/23381/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '23381' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23512_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23512_repl.yaml new file mode 100644 index 000000000..a72d51a7a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23512_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/23512/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '23512' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23512_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23512_trainsize.yaml new file mode 100644 index 000000000..ad4d1a78b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23512_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/23512/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '23512' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23517_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23517_repl.yaml new file mode 100644 index 000000000..5da51b158 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23517_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/23517/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '23517' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23517_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23517_trainsize.yaml new file mode 100644 index 000000000..d04f141f1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23517_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/23517/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '23517' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23_repl.yaml new file mode 100644 index 000000000..8cbe8b170 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/23/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '23' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23_trainsize.yaml new file mode 100644 index 000000000..2415ea354 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_23_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/23/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '23' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_24_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_24_repl.yaml new file mode 100644 index 000000000..9192a032e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_24_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/24/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '24' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_24_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_24_trainsize.yaml new file mode 100644 index 000000000..1f44b06be --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_24_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/24/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '24' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_28_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_28_repl.yaml new file mode 100644 index 000000000..cc613a025 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_28_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/28/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '28' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_28_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_28_trainsize.yaml new file mode 100644 index 000000000..ffa745377 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_28_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/28/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '28' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_29_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_29_repl.yaml new file mode 100644 index 000000000..bdc2bf070 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_29_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/29/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '29' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_29_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_29_trainsize.yaml new file mode 100644 index 000000000..630bcd893 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_29_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/29/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '29' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_300_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_300_repl.yaml new file mode 100644 index 000000000..fae66c543 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_300_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/300/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '300' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_300_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_300_trainsize.yaml new file mode 100644 index 000000000..0f4bc28db --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_300_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/300/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '300' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_307_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_307_repl.yaml new file mode 100644 index 000000000..f85f9bae7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_307_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/307/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '307' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_307_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_307_trainsize.yaml new file mode 100644 index 000000000..e2e208cf9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_307_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/307/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '307' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_312_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_312_repl.yaml new file mode 100644 index 000000000..c6a0a9626 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_312_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/312/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '312' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_312_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_312_trainsize.yaml new file mode 100644 index 000000000..027343fff --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_312_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/312/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '312' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_31_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_31_repl.yaml new file mode 100644 index 000000000..041149b59 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_31_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/31/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '31' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_31_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_31_trainsize.yaml new file mode 100644 index 000000000..aa3371b7d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_31_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/31/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '31' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_32_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_32_repl.yaml new file mode 100644 index 000000000..dacc37831 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_32_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/32/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '32' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_32_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_32_trainsize.yaml new file mode 100644 index 000000000..9e3ac7b41 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_32_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/32/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '32' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_334_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_334_repl.yaml new file mode 100644 index 000000000..01cb1aae2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_334_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/334/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '334' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_334_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_334_trainsize.yaml new file mode 100644 index 000000000..577e626c7 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_334_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/334/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '334' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_375_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_375_repl.yaml new file mode 100644 index 000000000..9ce37681c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_375_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/375/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '375' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_375_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_375_trainsize.yaml new file mode 100644 index 000000000..8ec38dd10 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_375_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/375/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '375' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_377_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_377_repl.yaml new file mode 100644 index 000000000..062d10630 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_377_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/377/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '377' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_377_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_377_trainsize.yaml new file mode 100644 index 000000000..16c461472 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_377_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/377/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '377' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_37_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_37_repl.yaml new file mode 100644 index 000000000..3f61b09a2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_37_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/37/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '37' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_37_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_37_trainsize.yaml new file mode 100644 index 000000000..a92c1fb49 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_37_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/37/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '37' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_38_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_38_repl.yaml new file mode 100644 index 000000000..a22272dc8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_38_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/38/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '38' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_38_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_38_trainsize.yaml new file mode 100644 index 000000000..2549177a3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_38_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/38/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '38' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_3_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_3_repl.yaml new file mode 100644 index 000000000..3360b8ef8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_3_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/3/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '3' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_3_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_3_trainsize.yaml new file mode 100644 index 000000000..a89e5b3ab --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_3_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/3/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '3' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40496_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40496_repl.yaml new file mode 100644 index 000000000..bbf048128 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40496_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40496/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40496' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40496_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40496_trainsize.yaml new file mode 100644 index 000000000..67aaf1ac9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40496_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40496/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40496' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40498_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40498_repl.yaml new file mode 100644 index 000000000..72c871c3c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40498_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40498/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40498' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40498_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40498_trainsize.yaml new file mode 100644 index 000000000..f8c4f7b18 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40498_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40498/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40498' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40499_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40499_repl.yaml new file mode 100644 index 000000000..a00618cea --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40499_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40499/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40499' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40499_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40499_trainsize.yaml new file mode 100644 index 000000000..cd5716eb5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40499_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40499/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40499' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40536_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40536_repl.yaml new file mode 100644 index 000000000..88c6c5ea2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40536_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40536/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40536' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40536_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40536_trainsize.yaml new file mode 100644 index 000000000..c80b6514d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40536_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40536/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40536' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40668_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40668_repl.yaml new file mode 100644 index 000000000..490862821 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40668_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40668/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40668' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40668_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40668_trainsize.yaml new file mode 100644 index 000000000..c9b1bf27f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40668_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40668/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40668' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40670_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40670_repl.yaml new file mode 100644 index 000000000..f7d0554af --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40670_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40670/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40670' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40670_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40670_trainsize.yaml new file mode 100644 index 000000000..aa4847587 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40670_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40670/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40670' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40685_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40685_repl.yaml new file mode 100644 index 000000000..664cd467d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40685_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40685/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40685' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40685_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40685_trainsize.yaml new file mode 100644 index 000000000..8db7e67cd --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40685_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40685/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40685' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40701_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40701_repl.yaml new file mode 100644 index 000000000..ff653e4e4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40701_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40701/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40701' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40701_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40701_trainsize.yaml new file mode 100644 index 000000000..e852a0142 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40701_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40701/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40701' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40900_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40900_repl.yaml new file mode 100644 index 000000000..fa7c3165f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40900_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40900/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40900' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40900_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40900_trainsize.yaml new file mode 100644 index 000000000..641a9f425 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40900_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40900/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40900' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40923_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40923_repl.yaml new file mode 100644 index 000000000..714a863e8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40923_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40923/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40923' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40923_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40923_trainsize.yaml new file mode 100644 index 000000000..01e9e0a43 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40923_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40923/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40923' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40927_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40927_repl.yaml new file mode 100644 index 000000000..bd31e3ca1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40927_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40927/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40927' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40927_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40927_trainsize.yaml new file mode 100644 index 000000000..d8433323f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40927_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40927/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40927' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40966_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40966_repl.yaml new file mode 100644 index 000000000..a1178eef4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40966_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40966/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40966' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40966_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40966_trainsize.yaml new file mode 100644 index 000000000..91a77dd71 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40966_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40966/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40966' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40975_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40975_repl.yaml new file mode 100644 index 000000000..f95240cc8 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40975_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40975/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40975' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40975_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40975_trainsize.yaml new file mode 100644 index 000000000..0a5a40057 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40975_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40975/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40975' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40978_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40978_repl.yaml new file mode 100644 index 000000000..37a4e8813 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40978_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40978/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40978' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40978_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40978_trainsize.yaml new file mode 100644 index 000000000..e9f7d2a23 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40978_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40978/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40978' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40979_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40979_repl.yaml new file mode 100644 index 000000000..f711cd022 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40979_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40979/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40979' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40979_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40979_trainsize.yaml new file mode 100644 index 000000000..1b7d8595c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40979_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40979/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40979' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40981_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40981_repl.yaml new file mode 100644 index 000000000..ecb824e40 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40981_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40981/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40981' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40981_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40981_trainsize.yaml new file mode 100644 index 000000000..f2c5f4052 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40981_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40981/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40981' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40982_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40982_repl.yaml new file mode 100644 index 000000000..e45a7bd8d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40982_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40982/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40982' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40982_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40982_trainsize.yaml new file mode 100644 index 000000000..59b422e80 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40982_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40982/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40982' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40983_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40983_repl.yaml new file mode 100644 index 000000000..07c853009 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40983_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40983/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40983' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40983_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40983_trainsize.yaml new file mode 100644 index 000000000..219152080 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40983_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40983/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40983' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40984_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40984_repl.yaml new file mode 100644 index 000000000..736bc28a3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40984_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40984/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40984' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40984_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40984_trainsize.yaml new file mode 100644 index 000000000..c54e9b5e1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40984_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40984/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40984' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40994_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40994_repl.yaml new file mode 100644 index 000000000..23cdf1bda --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40994_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40994/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40994' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40994_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40994_trainsize.yaml new file mode 100644 index 000000000..8cd2d4767 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40994_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40994/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40994' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40996_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40996_repl.yaml new file mode 100644 index 000000000..3b04876da --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40996_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40996/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40996' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40996_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40996_trainsize.yaml new file mode 100644 index 000000000..4363431cf --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_40996_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/40996/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40996' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41027_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41027_repl.yaml new file mode 100644 index 000000000..060dbfcf9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41027_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41027/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41027' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41027_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41027_trainsize.yaml new file mode 100644 index 000000000..a65d4681a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41027_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41027/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41027' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41138_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41138_repl.yaml new file mode 100644 index 000000000..7623ce233 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41138_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41138/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41138' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41138_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41138_trainsize.yaml new file mode 100644 index 000000000..c011f856a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41138_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41138/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41138' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41142_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41142_repl.yaml new file mode 100644 index 000000000..e5379c26b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41142_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41142/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41142' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41142_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41142_trainsize.yaml new file mode 100644 index 000000000..8bee117c5 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41142_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41142/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41142' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41143_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41143_repl.yaml new file mode 100644 index 000000000..e67757592 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41143_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41143/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41143' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41143_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41143_trainsize.yaml new file mode 100644 index 000000000..864c6a981 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41143_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41143/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41143' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41146_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41146_repl.yaml new file mode 100644 index 000000000..df08171b9 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41146_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41146/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41146' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41146_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41146_trainsize.yaml new file mode 100644 index 000000000..28b4f69c1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41146_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41146/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41146' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41150_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41150_repl.yaml new file mode 100644 index 000000000..685b89a8f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41150_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41150/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41150' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41150_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41150_trainsize.yaml new file mode 100644 index 000000000..af797eb5c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41150_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41150/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41150' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41156_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41156_repl.yaml new file mode 100644 index 000000000..aefdada70 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41156_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41156/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41156' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41156_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41156_trainsize.yaml new file mode 100644 index 000000000..4b0e3e189 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41156_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41156/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41156' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41157_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41157_repl.yaml new file mode 100644 index 000000000..e80274e13 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41157_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41157/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41157' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41157_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41157_trainsize.yaml new file mode 100644 index 000000000..a0fbd894c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41157_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41157/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41157' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41159_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41159_repl.yaml new file mode 100644 index 000000000..768c9e9d0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41159_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41159/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41159' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41159_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41159_trainsize.yaml new file mode 100644 index 000000000..7c5311b9c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41159_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41159/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41159' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41161_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41161_repl.yaml new file mode 100644 index 000000000..9458a576c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41161_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41161/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41161' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41161_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41161_trainsize.yaml new file mode 100644 index 000000000..e7563e8c4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41161_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41161/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41161' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41162_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41162_repl.yaml new file mode 100644 index 000000000..3c5e9a3f2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41162_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41162/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41162' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41162_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41162_trainsize.yaml new file mode 100644 index 000000000..4f2a7219c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41162_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41162/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41162' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41163_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41163_repl.yaml new file mode 100644 index 000000000..a4a487ef3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41163_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41163/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41163' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41163_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41163_trainsize.yaml new file mode 100644 index 000000000..3687c2a86 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41163_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41163/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41163' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41164_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41164_repl.yaml new file mode 100644 index 000000000..65878c92c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41164_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41164/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41164' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41164_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41164_trainsize.yaml new file mode 100644 index 000000000..b35bccb1a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41164_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41164/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41164' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41165_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41165_repl.yaml new file mode 100644 index 000000000..44d53d5d3 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41165_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41165/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41165' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41165_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41165_trainsize.yaml new file mode 100644 index 000000000..944b5e2ef --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41165_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41165/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41165' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41166_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41166_repl.yaml new file mode 100644 index 000000000..2f2252f39 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41166_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41166/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41166' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41166_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41166_trainsize.yaml new file mode 100644 index 000000000..a93181a73 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41166_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41166/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41166' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41168_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41168_repl.yaml new file mode 100644 index 000000000..4bfcd01cf --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41168_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41168/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41168' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41168_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41168_trainsize.yaml new file mode 100644 index 000000000..375bee615 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41168_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41168/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41168' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41169_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41169_repl.yaml new file mode 100644 index 000000000..45a033a99 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41169_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41169/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41169' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41169_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41169_trainsize.yaml new file mode 100644 index 000000000..680449543 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41169_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41169/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41169' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41212_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41212_repl.yaml new file mode 100644 index 000000000..70afd6c7c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41212_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41212/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41212' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41212_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41212_trainsize.yaml new file mode 100644 index 000000000..a709e10bf --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41212_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41212/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41212' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41216_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41216_repl.yaml new file mode 100644 index 000000000..0b1e47f32 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41216_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41216/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41216' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41216_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41216_trainsize.yaml new file mode 100644 index 000000000..0b60854fc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41216_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41216/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41216' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41278_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41278_repl.yaml new file mode 100644 index 000000000..b4efe91a6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41278_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41278/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41278' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41278_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41278_trainsize.yaml new file mode 100644 index 000000000..5270ae530 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_41278_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/41278/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41278' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4134_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4134_repl.yaml new file mode 100644 index 000000000..252286eec --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4134_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/4134/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '4134' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4134_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4134_trainsize.yaml new file mode 100644 index 000000000..e15a3d3c1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4134_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/4134/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '4134' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4135_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4135_repl.yaml new file mode 100644 index 000000000..c24704c3e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4135_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/4135/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '4135' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4135_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4135_trainsize.yaml new file mode 100644 index 000000000..b4916b95a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4135_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/4135/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '4135' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4154_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4154_repl.yaml new file mode 100644 index 000000000..388a7ce55 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4154_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/4154/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '4154' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4154_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4154_trainsize.yaml new file mode 100644 index 000000000..a8047a3df --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4154_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/4154/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '4154' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_42_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_42_repl.yaml new file mode 100644 index 000000000..d2b2784e0 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_42_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/42/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '42' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_42_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_42_trainsize.yaml new file mode 100644 index 000000000..abd56fd1b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_42_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/42/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '42' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_44_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_44_repl.yaml new file mode 100644 index 000000000..26e0a3d7d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_44_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/44/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '44' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_44_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_44_trainsize.yaml new file mode 100644 index 000000000..19e6227e2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_44_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/44/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '44' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4534_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4534_repl.yaml new file mode 100644 index 000000000..937d6ed6e --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4534_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/4534/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '4534' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4534_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4534_trainsize.yaml new file mode 100644 index 000000000..5272d7c98 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4534_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/4534/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '4534' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4538_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4538_repl.yaml new file mode 100644 index 000000000..28d003855 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4538_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/4538/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '4538' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4538_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4538_trainsize.yaml new file mode 100644 index 000000000..941f6811c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4538_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/4538/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '4538' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4541_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4541_repl.yaml new file mode 100644 index 000000000..041416b34 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4541_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/4541/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '4541' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4541_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4541_trainsize.yaml new file mode 100644 index 000000000..26506e21f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_4541_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/4541/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '4541' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_458_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_458_repl.yaml new file mode 100644 index 000000000..c7eaedab2 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_458_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/458/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '458' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_458_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_458_trainsize.yaml new file mode 100644 index 000000000..43aa6d12b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_458_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/458/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '458' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_469_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_469_repl.yaml new file mode 100644 index 000000000..d314da54f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_469_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/469/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '469' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_469_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_469_trainsize.yaml new file mode 100644 index 000000000..8e20119b4 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_469_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/469/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '469' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_46_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_46_repl.yaml new file mode 100644 index 000000000..3ca0f2017 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_46_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/46/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '46' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_46_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_46_trainsize.yaml new file mode 100644 index 000000000..43bac7a0d --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_46_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/46/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '46' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_470_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_470_repl.yaml new file mode 100644 index 000000000..ba3ce88dc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_470_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/470/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '470' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_470_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_470_trainsize.yaml new file mode 100644 index 000000000..c661b3ddc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_470_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/470/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '470' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_50_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_50_repl.yaml new file mode 100644 index 000000000..cf85e47c6 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_50_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/50/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '50' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_50_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_50_trainsize.yaml new file mode 100644 index 000000000..c8d23738b --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_50_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/50/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '50' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_54_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_54_repl.yaml new file mode 100644 index 000000000..c123676b1 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_54_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/54/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '54' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_54_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_54_trainsize.yaml new file mode 100644 index 000000000..20fb475cc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_54_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/54/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '54' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_554_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_554_repl.yaml new file mode 100644 index 000000000..0e69182bb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_554_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/554/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '554' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_554_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_554_trainsize.yaml new file mode 100644 index 000000000..58041a9cb --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_554_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/554/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '554' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_60_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_60_repl.yaml new file mode 100644 index 000000000..d0b43cc31 --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_60_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/60/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '60' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_60_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_60_trainsize.yaml new file mode 100644 index 000000000..ecc6a028c --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_60_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/60/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '60' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_6332_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_6332_repl.yaml new file mode 100644 index 000000000..05220763f --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_6332_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/6332/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '6332' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_6332_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_6332_trainsize.yaml new file mode 100644 index 000000000..9e2f6d1bc --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_6332_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/6332/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '6332' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_6_repl.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_6_repl.yaml new file mode 100644 index 000000000..83c15ed3a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_6_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/6/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '6' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_6_trainsize.yaml b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_6_trainsize.yaml new file mode 100644 index 000000000..e5f70321a --- /dev/null +++ b/carps/configs/problem/YAHPO/multifidelity/all/cfg_rbv2_xgboost_6_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: yahpo/rbv2_xgboost/6/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '6' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/generate_problems.ipynb b/carps/configs/problem/generate_problems.ipynb new file mode 100644 index 000000000..d1acc82bd --- /dev/null +++ b/carps/configs/problem/generate_problems.ipynb @@ -0,0 +1,4350 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# BBOB" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/1/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 1, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/1/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 1, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/1/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 1, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/1/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 1, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/1/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 1, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/1/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 1, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/1/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 1, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/1/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 1, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/1/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 1, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/1/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 1, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/1/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 1, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/1/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 1, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/1/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 1, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/1/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 1, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/1/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 1, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/2/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 2, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/2/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 2, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/2/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 2, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/2/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 2, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/2/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 2, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/2/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 2, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/2/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 2, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/2/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 2, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/2/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 2, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/2/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 2, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/2/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 2, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/2/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 2, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/2/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 2, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/2/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 2, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/2/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 2, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/3/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 3, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/3/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 3, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/3/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 3, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/3/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 3, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/3/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 3, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/3/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 3, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/3/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 3, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/3/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 3, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/3/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 3, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/3/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 3, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/3/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 3, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/3/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 3, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/3/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 3, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/3/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 3, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/3/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 3, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/4/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 4, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/4/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 4, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/4/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 4, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/4/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 4, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/4/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 4, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/4/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 4, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/4/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 4, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/4/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 4, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/4/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 4, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/4/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 4, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/4/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 4, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/4/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 4, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/4/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 4, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/4/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 4, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/4/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 4, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/5/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 5, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/5/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 5, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/5/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 5, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/5/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 5, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/5/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 5, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/5/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 5, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/5/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 5, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/5/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 5, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/5/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 5, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/5/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 5, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/5/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 5, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/5/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 5, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/5/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 5, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/5/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 5, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/5/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 5, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/6/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 6, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/6/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 6, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/6/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 6, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/6/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 6, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/6/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 6, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/6/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 6, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/6/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 6, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/6/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 6, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/6/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 6, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/6/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 6, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/6/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 6, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/6/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 6, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/6/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 6, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/6/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 6, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/6/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 6, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/7/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 7, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/7/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 7, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/7/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 7, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/7/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 7, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/7/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 7, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/7/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 7, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/7/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 7, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/7/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 7, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/7/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 7, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/7/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 7, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/7/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 7, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/7/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 7, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/7/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 7, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/7/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 7, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/7/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 7, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/8/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 8, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/8/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 8, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/8/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 8, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/8/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 8, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/8/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 8, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/8/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 8, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/8/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 8, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/8/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 8, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/8/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 8, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/8/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 8, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/8/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 8, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/8/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 8, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/8/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 8, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/8/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 8, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/8/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 8, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/9/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 9, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/9/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 9, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/9/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 9, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/9/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 9, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/9/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 9, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/9/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 9, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/9/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 9, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/9/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 9, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/9/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 9, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/9/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 9, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/9/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 9, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/9/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 9, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/9/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 9, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/9/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 9, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/9/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 9, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/10/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 10, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/10/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 10, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/10/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 10, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/10/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 10, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/10/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 10, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/10/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 10, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/10/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 10, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/10/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 10, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/10/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 10, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/10/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 10, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/10/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 10, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/10/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 10, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/10/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 10, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/10/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 10, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/10/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 10, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/11/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 11, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/11/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 11, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/11/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 11, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/11/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 11, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/11/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 11, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/11/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 11, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/11/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 11, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/11/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 11, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/11/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 11, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/11/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 11, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/11/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 11, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/11/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 11, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/11/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 11, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/11/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 11, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/11/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 11, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/12/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 12, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/12/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 12, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/12/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 12, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/12/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 12, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/12/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 12, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/12/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 12, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/12/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 12, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/12/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 12, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/12/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 12, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/12/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 12, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/12/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 12, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/12/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 12, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/12/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 12, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/12/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 12, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/12/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 12, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/13/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 13, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/13/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 13, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/13/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 13, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/13/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 13, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/13/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 13, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/13/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 13, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/13/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 13, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/13/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 13, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/13/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 13, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/13/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 13, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/13/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 13, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/13/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 13, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/13/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 13, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/13/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 13, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/13/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 13, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/14/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 14, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/14/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 14, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/14/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 14, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/14/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 14, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/14/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 14, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/14/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 14, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/14/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 14, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/14/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 14, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/14/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 14, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/14/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 14, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/14/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 14, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/14/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 14, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/14/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 14, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/14/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 14, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/14/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 14, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/15/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 15, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/15/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 15, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/15/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 15, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/15/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 15, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/15/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 15, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/15/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 15, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/15/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 15, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/15/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 15, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/15/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 15, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/15/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 15, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/15/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 15, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/15/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 15, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/15/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 15, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/15/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 15, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/15/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 15, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/16/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 16, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/16/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 16, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/16/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 16, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/16/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 16, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/16/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 16, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/16/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 16, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/16/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 16, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/16/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 16, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/16/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 16, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/16/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 16, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/16/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 16, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/16/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 16, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/16/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 16, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/16/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 16, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/16/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 16, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/17/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 17, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/17/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 17, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/17/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 17, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/17/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 17, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/17/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 17, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/17/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 17, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/17/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 17, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/17/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 17, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/17/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 17, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/17/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 17, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/17/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 17, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/17/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 17, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/17/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 17, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/17/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 17, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/17/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 17, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/18/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 18, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/18/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 18, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/18/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 18, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/18/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 18, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/18/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 18, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/18/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 18, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/18/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 18, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/18/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 18, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/18/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 18, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/18/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 18, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/18/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 18, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/18/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 18, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/18/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 18, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/18/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 18, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/18/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 18, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/19/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 19, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/19/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 19, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/19/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 19, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/19/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 19, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/19/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 19, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/19/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 19, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/19/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 19, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/19/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 19, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/19/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 19, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/19/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 19, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/19/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 19, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/19/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 19, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/19/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 19, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/19/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 19, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/19/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 19, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/20/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 20, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/20/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 20, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/20/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 20, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/20/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 20, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/20/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 20, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/20/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 20, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/20/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 20, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/20/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 20, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/20/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 20, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/20/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 20, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/20/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 20, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/20/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 20, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/20/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 20, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/20/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 20, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/20/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 20, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/21/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 21, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/21/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 21, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/21/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 21, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/21/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 21, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/21/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 21, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/21/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 21, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/21/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 21, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/21/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 21, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/21/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 21, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/21/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 21, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/21/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 21, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/21/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 21, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/21/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 21, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/21/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 21, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/21/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 21, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/22/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 22, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/22/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 22, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/22/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 22, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/22/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 22, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/22/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 22, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/22/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 22, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/22/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 22, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/22/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 22, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/22/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 22, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/22/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 22, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/22/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 22, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/22/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 22, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/22/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 22, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/22/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 22, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/22/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 22, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/23/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 23, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/23/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 23, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/23/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 23, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/23/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 23, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/23/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 23, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/23/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 23, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/23/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 23, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/23/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 23, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/23/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 23, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/23/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 23, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/23/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 23, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/23/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 23, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/23/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 23, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/23/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 23, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/23/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 23, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/24/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 24, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/24/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 24, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/24/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 24, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/24/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 24, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/24/0', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 24, 'instance': 0, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/24/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 24, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/24/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 24, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/24/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 24, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/24/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 24, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/24/1', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 24, 'instance': 1, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/2/24/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 2, 'fid': 24, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/4/24/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 4, 'fid': 24, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/8/24/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 8, 'fid': 24, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 8, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/16/24/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 16, 'fid': 24, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 180, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 16, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 16, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'BBOB', 'problem_id': 'bbob/noiseless/32/24/2', 'problem': {'_target_': 'carps.benchmarks.bbob.BBOBProblem', 'dimension': 32, 'fid': 24, 'instance': 2, 'seed': '${seed}'}, 'task': {'n_trials': 247, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'synthetic', 'objective_function_approximation': 'real', 'has_virtual_time': False, 'deterministic': True, 'dimensions': 32, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 32, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n" + ] + } + ], + "source": [ + "# BBOB\n", + "from pathlib import Path\n", + "from carps.utils.task import Task, get_search_space_info\n", + "from dataclasses import asdict\n", + "import numpy as np\n", + "\n", + "seeds = range(1, 11)\n", + "\n", + "# Config should match Problem init\n", + "\n", + "base_path = Path(\".\")\n", + "\n", + "# Problem ids\n", + "benchmark_id_bbob = \"BBOB\"\n", + "\n", + "from omegaconf import DictConfig, OmegaConf\n", + "\n", + "import shutil\n", + "\n", + "target_path = base_path / benchmark_id_bbob\n", + "if target_path.is_dir():\n", + " shutil.rmtree(str(target_path))\n", + "target_path.mkdir(parents=True, exist_ok=True)\n", + "\n", + "problem_class = \"carps.benchmarks.bbob.BBOBProblem\"\n", + "\n", + "fids = list(range(1, 25))\n", + "instances = [0, 1, 2]\n", + "dimensions = [2, 4, 8, 16, 32]\n", + "\n", + "\n", + "def get_n_trials(dimension: int) -> int:\n", + " return int(np.ceil(20 + 40 * np.sqrt(dimension)))\n", + "\n", + "def get_n_initial_design(dim: int) -> int:\n", + " return dim * 3\n", + "\n", + "for fid in fids:\n", + " for inst in instances:\n", + " for dim in dimensions:\n", + " problem_id = f\"bbob/noiseless/{dim}/{fid}/{inst}\"\n", + " task = Task(\n", + " dimensions=dim,\n", + " n_trials=get_n_trials(dim),\n", + " time_budget=None,\n", + " n_workers=1,\n", + " n_objectives=1,\n", + " objectives=[\"quality\"],\n", + " is_multifidelity=False,\n", + " fidelity_type=None,\n", + " min_budget=None,\n", + " max_budget=None,\n", + " has_constraints=False,\n", + " domain=\"synthetic\",\n", + " objective_function_approximation=\"real\",\n", + " has_virtual_time=False,\n", + " deterministic=True,\n", + " search_space_n_categoricals=0,\n", + " search_space_n_ordinals=0,\n", + " search_space_n_integers=0,\n", + " search_space_n_floats=dim,\n", + " search_space_has_conditionals=False,\n", + " search_space_has_forbiddens=False,\n", + " search_space_has_priors=False\n", + " )\n", + " cfg = DictConfig({\n", + " \"benchmark_id\": benchmark_id_bbob,\n", + " \"problem_id\": problem_id,\n", + " \"problem\": {\n", + " # \"problem_class\": {\n", + " \"_target_\": problem_class,\n", + " \"dimension\": dim,\n", + " \"fid\": fid,\n", + " \"instance\": inst,\n", + " \"seed\": \"${seed}\", # get the seed from global cfg\n", + " # },\n", + " },\n", + " \"task\": asdict(task)\n", + "\n", + " })\n", + " fn = target_path / f\"cfg_{dim}_{fid}_{dim}_{inst}.yaml\"\n", + " yaml_str = OmegaConf.to_yaml(cfg=cfg)\n", + " yaml_str = \"# @package _global_\\n\" + yaml_str\n", + " fn.write_text(yaml_str)\n", + " print(cfg)\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# HPOB" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "models ['5890' '6766' '4796' '5891' '7286' '5965' '6458' '6767' '7609' '6136'\n", + " '6794' '3490' '5889' '7190' '5636' '5926' '5923' '6140' '243' '7607'\n", + " '5859' '2566' '5527' '7188' '5860' '7189' '5971' '5920' '5435' '506'\n", + " '685' '5968' '5970' '5458' '4006' '680' '2799' '2793' '5918' '5886'\n", + " '5988' '6447' '5237' '6156' '5972' '5921' '6154' '3894' '534' '5978'\n", + " '248' '7680' '678' '6073' '5704' '7604' '6007' '5623' '5922' '833' '5624'\n", + " '151' '3737' '5906' '6183' '679' '694' '5604' '6212' '673' '6762' '5969'\n", + " '6105' '5526' '681' '682' '688' '6139' '674' '3442' '6213' '5489' '6345'\n", + " '214' '6376' '695' '5499' '2039' '6075' '3960' '690' '829' '6856' '6765'\n", + " '5253' '5963' '3994' '6024' '6493' '124' '5295' '6131' '7200' '6347'\n", + " '6461' '6182' '6322' '6365' '6308' '245' '3434' '6137' '633' '5919'\n", + " '5964' '5960' '684' '6134' '5502' '5813' '423' '3489' '5788' '6215'\n", + " '6741' '6507' '697' '6190' '158' '5218' '2553' '5503' '683' '6285' '2010'\n", + " '247' '3502' '5626' '2277' '935' '6124' '2614' '2073' '7290' '6309'\n", + " '6216' '246' '5584' '2823' '2629' '5301' '4289' '6433' '5521' '6323'\n", + " '6003' '4828' '189' '3425' '6364' '6211' '153' '3439' '692' '6271' '6189'\n", + " '6000' '696' '7021' '6155' '689' '5315' '693' '691' '7064' '3414']\n", + "dataset ['14951' '145854' '3512' '3494' '3903' '3' '145979' '9971' '43' '34536'\n", + " '145862' '41' '9976' '3913' '34537' '125968' '3493' '3896' '9946' '3485'\n", + " '2068' '10093' '12' '53' '59' '14' '9889' '9978' '30' '3647' '145872'\n", + " '145839' '3917' '146064' '9952' '3021' '146065' '145848' '36' '145976'\n", + " '219' '125921' '3902' '9977' '3949' '1917' '14965' '3954' '3820' '57'\n", + " '3899' '9970' '3492' '9967' '1919' '7295' '11' '14966' '29' '32' '9980'\n", + " '18' '21' '145878' '145853' '9910' '22' '45' '3889' '125966' '1902'\n", + " '145682' '49' '2073' '31' '23' '3731' '3709' '145972' '9983' '3918'\n", + " '3891' '145833' '3849' '3599' '2071' '145834' '24' '3736' '2079' '28'\n", + " '125923' '9914' '145857' '145677' '3567' '145953' '146066' '16' '2074'\n", + " '37' '282' '7293' '272' '6' '1898' '145804' '146085' '15' '2075' '6566'\n", + " '125920' '33' '9911' '145836' '145855' '14952' '146082' '3543' '146803'\n", + " '9905' '58' '3919' '2' '2076' '3620' '14971' '10101' '145685' '3763'\n", + " '3658' '1939' '145847' '3837' '9957' '9903' '34' '2077' '3497' '3866'\n", + " '20' '146012' '3950' '3758' '3784' '14964' '3729' '3580' '3799' '34539'\n", + " '257' '3011' '3578' '3846' '26' '3577' '3542' '1' '3555' '3713' '14968'\n", + " '3560' '3951' '125969' '3818' '3765' '3570' '7592' '3022' '3510' '3585'\n", + " '3549' '1793' '9979' '3591' '125922' '3614' '10' '3724' '3561' '42'\n", + " '3481' '9906' '3859' '3550' '3854' '269' '3904' '50' '3613' '47']\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_2193918/1805213472.py:39: DeprecationWarning: DataFrameGroupBy.apply operated on the grouping columns. This behavior is deprecated, and in a future version of pandas the grouping columns will be excluded from the operation. Either pass `include_groups=False` to exclude the groupings or explicitly select the grouping columns after groupby to silence this warning.\n", + " n_d_per_model = combos_mid_did.groupby([\"model_id\"]).apply(len)\n" + ] + } + ], + "source": [ + "# HPOB\n", + "from operator import attrgetter\n", + "import re\n", + "from pathlib import Path\n", + "from omegaconf import DictConfig, OmegaConf\n", + "import shutil\n", + "import pandas as pd\n", + "import numpy as np\n", + "from ConfigSpace.hyperparameters import CategoricalHyperparameter\n", + "from carps.utils.task import Task, get_search_space_info\n", + "from dataclasses import asdict\n", + "\n", + "base_path = Path(\".\")\n", + "\n", + "# Problem ids\n", + "benchmark_id = \"HPOB\"\n", + "\n", + "surrogates_dir = Path('../../../carps/benchmark_data/HPO-B/saved-surrogates')\n", + "\n", + "all_res = map(attrgetter('name'), surrogates_dir.glob('surrogate-*'))\n", + "\n", + "target_path = base_path / benchmark_id\n", + "if target_path.is_dir():\n", + " shutil.rmtree(str(target_path))\n", + "target_path.mkdir(parents=True, exist_ok=True)\n", + "\n", + "problem_class = \"carps.benchmarks.hpo_b.HPOBProblem\"\n", + "n_trials = 100\n", + "\n", + "combos_mid_did = [re.findall('\\d+', res) for res in all_res] \n", + "combos_mid_did = pd.DataFrame([{\"model_id\": mid, \"dataset_id\": did} for mid, did in combos_mid_did])\n", + "print(\"models\", combos_mid_did[\"model_id\"].unique())\n", + "print(\"dataset\", combos_mid_did[\"dataset_id\"].unique())\n", + "\n", + "rng = np.random.default_rng(seed=498415)\n", + "n_models = 10\n", + "n_datasets = 5\n", + "# check how many datasets per model id\n", + "n_d_per_model = combos_mid_did.groupby([\"model_id\"]).apply(len)\n", + "# filter only those model ids with enough datasets\n", + "n_d_per_model = n_d_per_model[n_d_per_model >= n_datasets]\n", + "# select 10 of those models\n", + "subselected_models = rng.choice(n_d_per_model.index, size=n_models)\n", + "combos_mid_did_reduced = combos_mid_did[combos_mid_did[\"model_id\"].isin(subselected_models)]\n", + "# select 5 datasets for each of the 10 models\n", + "subselected_combos = combos_mid_did_reduced.groupby(\"model_id\").sample(n=n_datasets, replace=False, random_state=rng)\n", + "assert len(subselected_combos) == (n_models * n_datasets)\n", + "\n", + "\n", + " \n", + "\n", + "def to_yaml(combos_mid_did: pd.DataFrame, identifier: str = \"all\"):\n", + " from carps.benchmarks.hpo_b import HPOBProblem\n", + " for _, spec in combos_mid_did.iterrows():\n", + " model_id, dataset_id = spec\n", + " problem_id = f'hpob/{identifier}/{model_id}/{dataset_id}'\n", + " problem = HPOBProblem(dataset_id=dataset_id, model_id=model_id, surrogates_dir=\"carps/benchmark_data/HPO-B/saved-surrogates\", )\n", + "\n", + " search_space_kwargs = get_search_space_info(configspace=problem.configspace)\n", + " task = Task(\n", + " n_trials=n_trials,\n", + " time_budget=None,\n", + " n_workers=1,\n", + " n_objectives=1,\n", + " objectives=[\"quality\"],\n", + " is_multifidelity=False,\n", + " fidelity_type=None,\n", + " min_budget=None,\n", + " max_budget=None,\n", + " has_constraints=False,\n", + " domain=\"ML\",\n", + " objective_function_approximation=\"surrogate\",\n", + " has_virtual_time=False,\n", + " deterministic=True,\n", + " **search_space_kwargs\n", + " )\n", + " cfg = DictConfig({\n", + " \"benchmark_id\": benchmark_id,\n", + " \"problem_id\": problem_id,\n", + " \"problem\": {\n", + " # \"problem_class\": {\n", + " \"_target_\": problem_class,\n", + " \"model_id\": model_id,\n", + " \"dataset_id\": dataset_id,\n", + " \"surrogates_dir\": str(surrogates_dir)\n", + " # },\n", + " },\n", + " \"task\": asdict(task)\n", + "\n", + " })\n", + " fn = target_path / f\"{identifier}/cfg_{model_id}_{dataset_id}.yaml\"\n", + " fn.parent.mkdir(parents=True, exist_ok=True)\n", + " yaml_str = OmegaConf.to_yaml(cfg=cfg)\n", + " yaml_str = \"# @package _global_\\n\" + yaml_str\n", + " fn.write_text(yaml_str)\n", + "\n", + "to_yaml(combos_mid_did=combos_mid_did, identifier=\"all\")\n", + "to_yaml(combos_mid_did=subselected_combos, identifier=\"subset\")" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "collapsed": false + }, + "source": [ + "# HPOBench" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "from pathlib import Path\n", + "from omegaconf import DictConfig, OmegaConf\n", + "import shutil\n", + "import pandas as pd\n", + "import numpy as np\n", + "try:\n", + " from carps.benchmarks.hpo_bench import HPOBenchProblem\n", + "except ModuleNotFoundError:\n", + " print(\"HPOBench is not installed. This means the task information can only be partly retrieved.\")\n", + " HPOBenchProblem = None\n", + "from ConfigSpace.hyperparameters import CategoricalHyperparameter\n", + "from carps.utils.task import Task, get_search_space_info\n", + "from dataclasses import asdict\n", + "from hydra.utils import instantiate, get_class\n", + "\n", + "\n", + "base_path = Path(\".\")\n", + "\n", + "# Set up directories\n", + "benchmark_id_hpobench = \"HPOBench\"\n", + "target_path = base_path / benchmark_id_hpobench\n", + "if target_path.is_dir():\n", + " shutil.rmtree(str(target_path))\n", + "target_path_blackbox = target_path / 'blackbox'\n", + "target_path_multifidelity = target_path / 'multifidelity'\n", + "target_path.mkdir(parents=True, exist_ok=True)\n", + "target_path_blackbox.mkdir(parents=True, exist_ok=True)\n", + "target_path_multifidelity.mkdir(parents=True, exist_ok=True)\n", + "\n", + "problem_class = \"carps.benchmarks.hpo_bench.HPOBenchProblem\"\n", + "\n", + "if not Path(\"durations.csv\").is_file():\n", + " raise ValueError(\"Budgets for multi-fidelity have not yet been calculated. \"\\\n", + " \"Please run `python notebooks/define_runtimes.py` to measure \"\\\n", + " \"how long the highest budget takes on your system.\")\n", + "durations = pd.read_csv(\"durations.csv\")\n", + "\n", + "\n", + "# ML\n", + "MODELS = [\"lr\", \"nn\", \"rf\", \"svm\", \"xgboost\"]\n", + "\n", + "TASK_IDS = [10101, 53, 146818, 146821, 9952, 146822, 31, 3917]\n", + "TASK_IDS_LARGE = [168912, 3, 167119, 12, 146212, 168911, 9981, 167120, 14965, 146606, 7592, 9977]\n", + "\n", + "# Choices according to https://arxiv.org/pdf/2109.06716.pdf, page 22\n", + "UPPER = {'subsample': 1.0,\n", + " 'iter':\n", + " {\n", + " 'lr': 1000,\n", + " 'nn': 243,\n", + " },\n", + " 'n_estimators': {\n", + " 'xgboost': 2000,\n", + " 'rf': 512,\n", + " }}\n", + "LOWER = {'subsample': 0.1,\n", + " 'iter':\n", + " {\n", + " 'lr': 10,\n", + " 'nn': 3,\n", + " },\n", + " 'n_estimators': {\n", + " 'xgboost': 50,\n", + " 'rf': 16,\n", + " }}\n", + "\n", + "FIDELITY_TYPES = {'lr': ['iter', 'subsample'],\n", + " 'nn': ['iter', 'subsample'],\n", + " 'rf': ['n_estimators', 'subsample'],\n", + " 'svm': ['subsample'],\n", + " 'xgboost': ['n_estimators', 'subsample']}\n", + "\n", + "# Formula from YAHPO paper\n", + "def get_n_trials(dimension: int) -> int:\n", + " return int(np.ceil(20 + 40 * np.sqrt(dimension)))\n", + "time_budget = None # minutes\n", + "\n", + "for model in MODELS:\n", + " # task_ids_large should be used for all models except the neural network\n", + " tids = TASK_IDS if model==\"nn\" else TASK_IDS + TASK_IDS_LARGE\n", + " for tid in tids:\n", + " for fid_type in FIDELITY_TYPES[model] + [None]:\n", + "\n", + " if fid_type == 'n_estimators':\n", + " lower = LOWER['n_estimators'][model]\n", + " upper = UPPER['n_estimators'][model]\n", + " elif fid_type == 'iter':\n", + " lower = LOWER['iter'][model]\n", + " upper = UPPER['iter'][model]\n", + " elif fid_type == 'subsample':\n", + " lower = LOWER[fid_type]\n", + " upper = UPPER[fid_type]\n", + " else:\n", + " lower = None\n", + " upper = None\n", + "\n", + " benchtype = \"tab\" if fid_type is None else \"real\"\n", + " problemtype = \"bb\" if fid_type is None else \"mf\"\n", + " problem_id = f\"hpobench/{problemtype}/{benchtype}/ml/{model}/{tid}\"\n", + " if fid_type is not None:\n", + " problem_id += f\"/{fid_type}\"\n", + "\n", + " if HPOBenchProblem is not None:\n", + " problem = HPOBenchProblem(seed=1, model=model, task_id=tid, problem=None, budget_type=fid_type)\n", + " search_space_kwargs = get_search_space_info(configspace=problem.configspace)\n", + "\n", + " # Create filename\n", + " if fid_type is None:\n", + " fn = target_path_blackbox / \"tab\" / f\"cfg_ml_{model}_{tid}.yaml\"\n", + " else:\n", + " fn = target_path_multifidelity / f\"cfg_ml_{model}_{tid}_{fid_type}.yaml\"\n", + " fn.parent.mkdir(exist_ok=True, parents=True)\n", + "\n", + " # Calculate time budget for multi-fidelity\n", + " if fn in durations[\"config_fn\"]:\n", + " idx = np.where(durations[\"config_fn\"] == fn)[0][0]\n", + " duration_s = durations[\"duration\"].iloc[idx]\n", + " # As specified in the HPOBench paper:\n", + " # The time budget is calculated as 100 x the avg\n", + " # runtime on the highest fidelity.\n", + " # We avg 5 runs on the highest fidelity to get `duration_s`.\n", + " time_budget_s = duration_s * 100\n", + " time_budget_min = time_budget_s / 60\n", + " time_budget = time_budget_min\n", + " \n", + " task = Task(\n", + " n_trials=get_n_trials(search_space_kwargs[\"dimensions\"]),\n", + " time_budget=None,\n", + " n_workers=1,\n", + " n_objectives=1,\n", + " objectives=[\"quality\"],\n", + " is_multifidelity=False if fid_type is None else True,\n", + " fidelity_type=fid_type,\n", + " min_budget=lower,\n", + " max_budget=upper,\n", + " has_constraints=False,\n", + " domain=\"ML\",\n", + " objective_function_approximation=\"tabular\" if benchtype == \"tab\" else benchtype,\n", + " has_virtual_time=False,\n", + " deterministic=False,\n", + " **search_space_kwargs\n", + " )\n", + "\n", + " cfg = DictConfig({\n", + " \"benchmark_id\": benchmark_id_hpobench,\n", + " \"problem_id\": problem_id,\n", + " \"problem\": {\n", + " \"_target_\": problem_class,\n", + " \"model\": model,\n", + " \"task_id\": tid,\n", + " \"budget_type\": fid_type,\n", + " \"seed\": \"${seed}\", # get the seed from global cfg\n", + " },\n", + " \"task\": asdict(task),\n", + " })\n", + " \n", + "\n", + " yaml_str = OmegaConf.to_yaml(cfg=cfg)\n", + " yaml_str = \"# @package _global_\\n\" + yaml_str\n", + " fn.write_text(yaml_str)\n", + "\n", + "# Surrogates\n", + "target_path_surrogate = target_path_blackbox / \"surr\"\n", + "MODELS = [\"ParamNet\", \"SVM\"]\n", + "DATASETS = [\"Adult\", \"Higgs\", \"Letter\", \"Mnist\", \"Optdigits\", \"Poker\"]\n", + "generated_svm_once = False\n", + "for model in MODELS:\n", + " # task_ids_large should be used for all models except the neural network\n", + " for dataset in DATASETS:\n", + " benchtype = \"surr\"\n", + "\n", + " if model == \"ParamNet\": # 8 HPs, 1 int, 7 float\n", + " n_trials = get_n_trials(8)\n", + " target = f\"hpobench.container.benchmarks.surrogates.{model.lower()}_benchmark.{model}{dataset}OnStepsBenchmark\"\n", + " problem_id = f\"hpobench/bb/{benchtype}/{model}/{dataset}\"\n", + " dimension = 8\n", + "\n", + " search_space_kwargs = {\n", + " \"dimensions\": dimension,\n", + " \"search_space_n_categoricals\": 0,\n", + " \"search_space_n_ordinals\": 0,\n", + " \"search_space_n_integers\": 1,\n", + " \"search_space_n_floats\": 7,\n", + " \"search_space_has_conditionals\": False,\n", + " \"search_space_has_forbiddens\": False,\n", + " \"search_space_has_priors\": False,\n", + " }\n", + " elif model == \"SVM\": # 2 float HPs\n", + " if generated_svm_once:\n", + " continue\n", + " n_trials = get_n_trials(2)\n", + " dataset = \"default\"\n", + " target = \"hpobench.container.benchmarks.surrogates.svm_benchmark.SurrogateSVMBenchmark\"\n", + " problem_id = f\"hpobench/bb/{benchtype}/{model}/{dataset}\"\n", + " generated_svm_once = True\n", + " dimension = 2\n", + "\n", + " search_space_kwargs = {\n", + " \"dimensions\": dimension,\n", + " \"search_space_n_categoricals\": 0,\n", + " \"search_space_n_ordinals\": 0,\n", + " \"search_space_n_integers\": 0,\n", + " \"search_space_n_floats\": 2,\n", + " \"search_space_has_conditionals\": False,\n", + " \"search_space_has_forbiddens\": False,\n", + " \"search_space_has_priors\": False,\n", + " }\n", + "\n", + " task = Task(\n", + " n_trials=n_trials,\n", + " time_budget=None,\n", + " n_workers=1,\n", + " n_objectives=1,\n", + " objectives=[\"quality\"],\n", + " is_multifidelity=False,\n", + " fidelity_type=None,\n", + " min_budget=None,\n", + " max_budget=None,\n", + " has_constraints=False,\n", + " domain=\"ML\",\n", + " objective_function_approximation=\"surrogate\",\n", + " has_virtual_time=True,\n", + " deterministic=True,\n", + " **search_space_kwargs\n", + " )\n", + "\n", + " cfg = DictConfig({\n", + " \"benchmark_id\": benchmark_id_hpobench,\n", + " \"problem_id\": problem_id,\n", + " \"problem\": {\n", + " \"_target_\": problem_class,\n", + " \"problem\": {\n", + " \"_target_\": target,\n", + " \"rng\": 1,#\"${seed}\",\n", + " },\n", + " \"seed\": \"${seed}\", # get the seed from global cfg\n", + " },\n", + " \"task\": asdict(task)\n", + "\n", + " })\n", + " fn = target_path_surrogate / f\"cfg_surr_{model}_{dataset}.yaml\"\n", + " fn.parent.mkdir(exist_ok=True, parents=True)\n", + " yaml_str = OmegaConf.to_yaml(cfg=cfg)\n", + " yaml_str = \"# @package _global_\\n\" + yaml_str\n", + " fn.write_text(yaml_str)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "source": [ + "# YAHPO" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "ExecuteTime": { + "end_time": "2024-05-27T12:17:47.198999Z", + "start_time": "2024-05-27T12:17:47.179626Z" + }, + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [], + "source": [ + "import shutil\n", + "from pathlib import Path\n", + "from omegaconf import DictConfig, OmegaConf\n", + "import numpy as np\n", + "\n", + "base_path = Path(\".\")\n", + "\n", + "COMBIS = {'lcbench': ['3945', '7593', '34539', '126025', '126026', '126029', '146212', '167104',\n", + " '167149', '167152', '167161', '167168', '167181', '167184', '167185',\n", + " '167190', '167200', '167201', '168329', '168330', '168331', '168335',\n", + " '168868', '168908', '168910', '189354', '189862', '189865', '189866',\n", + " '189873', '189905', '189906', '189908', '189909'],\n", + " 'fcnet': ['fcnet_naval_propulsion', 'fcnet_protein_structure',\n", + " 'fcnet_slice_localization', 'fcnet_parkinsons_telemonitoring'],\n", + " 'nb301': ['CIFAR10'],\n", + " 'rbv2_svm': ['40981', '4134', '1220', '40978', '40966', '40536', '41156', '458',\n", + " '41157', '40975', '40994', '1468', '6332', '40670', '151', '1475',\n", + " '1476', '1478', '1479', '41212', '1480', '1053', '1067', '1056', '12',\n", + " '1487', '1068', '32', '470', '312', '38', '40982', '50', '41216', '307',\n", + " '40498', '181', '1464', '41164', '16', '1461', '41162', '6', '14',\n", + " '1494', '54', '375', '1590', '23', '41163', '1111', '41027', '40668',\n", + " '41138', '4135', '4538', '40496', '4534', '40900', '1457', '11', '1462',\n", + " '41142', '40701', '29', '37', '23381', '188', '41143', '1063', '3', '18',\n", + " '40979', '22', '1515', '334', '24', '1493', '28', '1050', '1049',\n", + " '40984', '40685', '42', '44', '46', '1040', '41146', '377', '40499',\n", + " '1497', '60', '40983', '4154', '469', '31', '41278', '1489', '1501',\n", + " '15', '300', '1485', '1486', '1510', '182', '41169'],\n", + " 'rbv2_ranger': ['4135', '40981', '4134', '1220', '4154', '4538', '40978', '375',\n", + " '40496', '40966', '4534', '40900', '40536', '41156', '1590', '1457',\n", + " '458', '469', '41157', '11', '1461', '1462', '1464', '15', '40975',\n", + " '41142', '40701', '40994', '23', '1468', '40668', '29', '31', '6332',\n", + " '37', '40670', '23381', '151', '188', '41164', '1475', '1476', '1478',\n", + " '1479', '41212', '1480', '41143', '1053', '41027', '1067', '1063',\n", + " '3', '6', '1485', '1056', '12', '14', '16', '18', '40979', '22',\n", + " '1515', '334', '24', '1486', '41278', '28', '1487', '1068', '1050',\n", + " '1049', '32', '1489', '470', '1494', '182', '312', '40984', '1501',\n", + " '40685', '38', '42', '44', '46', '40982', '1040', '41146', '377',\n", + " '40499', '50', '54', '41216', '307', '1497', '60', '1510', '40983',\n", + " '40498', '181', '41138', '41163', '1111', '41159', '300', '41162',\n", + " '23517', '41165', '4541', '41161', '41166', '40927', '41150', '23512',\n", + " '41168', '1493', '40996', '554', '40923', '41169'],\n", + " 'rbv2_rpart': ['41138', '4135', '40981', '4134', '40927', '1220', '4154', '40923',\n", + " '41163', '40996', '4538', '40978', '375', '1111', '40496', '40966',\n", + " '41150', '4534', '40900', '40536', '41156', '1590', '1457', '458',\n", + " '469', '41157', '11', '1461', '1462', '1464', '15', '40975', '41142',\n", + " '40701', '40994', '23', '1468', '40668', '29', '31', '6332', '37',\n", + " '4541', '40670', '23381', '151', '188', '41164', '1475', '1476',\n", + " '41159', '1478', '41169', '23512', '1479', '41212', '1480', '300',\n", + " '41168', '41143', '1053', '41027', '1067', '1063', '41162', '3', '6',\n", + " '1485', '1056', '12', '14', '16', '18', '40979', '22', '1515', '554',\n", + " '334', '24', '1486', '23517', '1493', '28', '1487', '1068', '1050',\n", + " '1049', '32', '1489', '470', '1494', '41161', '41165', '182', '312',\n", + " '40984', '1501', '40685', '38', '42', '44', '46', '40982', '1040',\n", + " '41146', '377', '40499', '50', '54', '41166', '307', '1497', '60',\n", + " '1510', '40983', '40498', '181'],\n", + " 'rbv2_glmnet': ['41138', '4135', '40981', '4134', '1220', '4154', '41163', '4538',\n", + " '40978', '375', '1111', '40496', '40966', '41150', '4534', '40900',\n", + " '40536', '41156', '1590', '1457', '458', '469', '41157', '11', '1461',\n", + " '1462', '1464', '15', '40975', '41142', '40701', '40994', '23',\n", + " '1468', '40668', '29', '31', '6332', '37', '4541', '40670', '23381',\n", + " '151', '188', '41164', '1475', '1476', '41159', '1478', '41169',\n", + " '23512', '1479', '41212', '1480', '300', '41168', '41143', '1053',\n", + " '41027', '1067', '1063', '41162', '3', '6', '1485', '1056', '12',\n", + " '14', '16', '18', '40979', '22', '1515', '334', '24', '1486', '23517',\n", + " '41278', '1493', '28', '1487', '1068', '1050', '1049', '32', '1489',\n", + " '470', '1494', '41161', '182', '312', '40984', '1501', '40685', '38',\n", + " '42', '44', '46', '40982', '1040', '41146', '377', '40499', '50',\n", + " '54', '41216', '41166', '307', '1497', '60', '1510', '40983', '40498',\n", + " '181', '554'],\n", + " 'rbv2_xgboost': ['16', '40923', '41143', '470', '1487', '40499', '40966', '41164',\n", + " '1497', '40975', '1461', '41278', '11', '54', '300', '40984', '31',\n", + " '1067', '1590', '40983', '41163', '41165', '182', '1220', '41159',\n", + " '41169', '42', '188', '1457', '1480', '6332', '181', '1479', '40670',\n", + " '40536', '41138', '41166', '6', '14', '29', '458', '1056', '1462',\n", + " '1494', '40701', '12', '1493', '44', '307', '334', '40982', '41142',\n", + " '38', '1050', '469', '23381', '41157', '15', '4541', '23', '4134',\n", + " '40927', '40981', '41156', '3', '1049', '40900', '1063', '23512',\n", + " '40979', '1040', '1068', '41161', '22', '1489', '41027', '24',\n", + " '4135', '23517', '1053', '1468', '312', '377', '1515', '18', '1476',\n", + " '1510', '41162', '28', '375', '1464', '40685', '40996', '41146',\n", + " '41216', '40668', '41212', '32', '60', '4538', '40496', '41150',\n", + " '37', '46', '554', '1475', '1485', '1501', '1111', '4534', '41168',\n", + " '151', '4154', '40978', '40994', '50', '1478', '1486', '40498'],\n", + " 'rbv2_aknn': ['41138', '40981', '4134', '40927', '1220', '4154', '41163', '40996',\n", + " '4538', '40978', '375', '1111', '40496', '40966', '41150', '4534',\n", + " '40900', '40536', '41156', '1590', '1457', '458', '469', '41157', '11',\n", + " '1461', '1462', '1464', '15', '40975', '41142', '40701', '40994', '23',\n", + " '1468', '40668', '29', '31', '6332', '37', '4541', '40670', '23381',\n", + " '151', '188', '41164', '1475', '1476', '41159', '1478', '41169',\n", + " '23512', '1479', '41212', '1480', '300', '41168', '41143', '1053',\n", + " '41027', '1067', '1063', '41162', '3', '6', '1485', '1056', '12', '14',\n", + " '16', '18', '40979', '22', '1515', '554', '334', '24', '1486', '23517',\n", + " '41278', '1493', '28', '1487', '1068', '1050', '1049', '32', '1489',\n", + " '470', '1494', '41161', '41165', '182', '312', '40984', '1501', '40685',\n", + " '38', '42', '44', '46', '40982', '1040', '41146', '377', '40499', '50',\n", + " '54', '41216', '41166', '307', '1497', '60', '1510', '40983', '40498',\n", + " '181', '40923'],\n", + " 'rbv2_super': ['41138', '40981', '4134', '1220', '4154', '41163', '4538', '40978',\n", + " '375', '1111', '40496', '40966', '4534', '40900', '40536', '41156',\n", + " '1590', '1457', '458', '469', '41157', '11', '1461', '1462', '1464',\n", + " '15', '40975', '41142', '40701', '40994', '23', '1468', '40668', '29',\n", + " '31', '6332', '37', '40670', '23381', '151', '188', '41164', '1475',\n", + " '1476', '1478', '41169', '1479', '41212', '1480', '300', '41143',\n", + " '1053', '41027', '1067', '1063', '41162', '3', '6', '1485', '1056',\n", + " '12', '14', '16', '18', '40979', '22', '1515', '334', '24', '1486',\n", + " '1493', '28', '1487', '1068', '1050', '1049', '32', '1489', '470',\n", + " '1494', '182', '312', '40984', '1501', '40685', '38', '42', '44', '46',\n", + " '40982', '1040', '41146', '377', '40499', '50', '54', '307', '1497',\n", + " '60', '1510', '40983', '40498', '181'],\n", + " 'iaml_ranger': ['40981', '41146', '1489', '1067'],\n", + " 'iaml_rpart': ['40981', '41146', '1489', '1067'],\n", + " 'iaml_glmnet': ['40981', '41146', '1489', '1067'],\n", + " 'iaml_xgboost': ['40981', '41146', '1489', '1067'],\n", + " 'iaml_super': ['40981', '41146', '1489', '1067']}\n", + "\n", + "UPPER = {'trainsize': 1.0,\n", + " 'repl': 10,\n", + " 'epochs': {\n", + " 'lcbench': 52,\n", + " 'fcnet': 100,\n", + " 'nb301': 98,\n", + " }}\n", + "LOWER = {'trainsize': 0.03,\n", + " 'repl': 1,\n", + " 'epochs': {\n", + " 'lcbench': 1,\n", + " 'fcnet': 1,\n", + " 'nb301': 1,\n", + " }}\n", + "\n", + "FIDELITY_TYPES = {'lcbench': ['epoch'],\n", + " 'fcnet': ['epoch'],\n", + " 'nb301': ['epoch'],\n", + " 'rbv2_svm': ['trainsize', 'repl'],\n", + " 'rbv2_ranger': ['trainsize', 'repl'],\n", + " 'rbv2_rpart': ['trainsize', 'repl'],\n", + " 'rbv2_glmnet': ['trainsize', 'repl'],\n", + " 'rbv2_xgboost': ['trainsize', 'repl'],\n", + " 'rbv2_aknn': ['trainsize', 'repl'],\n", + " 'rbv2_super': ['trainsize', 'repl'],\n", + " 'iaml_ranger': ['trainsize'],\n", + " 'iaml_rpart': ['trainsize'],\n", + " 'iaml_glmnet': ['trainsize'],\n", + " 'iaml_xgboost': ['trainsize'],\n", + " 'iaml_super': ['trainsize']}\n", + "\n", + "METRICS = {'lcbench': ['time', 'val_accuracy', 'val_cross_entropy', 'val_balanced_accuracy',\n", + " 'test_cross_entropy', 'test_balanced_accuracy'],\n", + " 'fcnet': ['valid_loss', 'valid_mse', 'runtime', 'n_params'],\n", + " 'nb301': ['val_accuracy', 'runtime'],\n", + " 'rbv2_svm': ['acc', 'bac', 'auc', 'brier', 'f1', 'logloss', 'timetrain', 'timepredict',\n", + " 'memory'],\n", + " 'rbv2_ranger': ['acc', 'bac', 'auc', 'brier', 'f1', 'logloss', 'timetrain',\n", + " 'timepredict', 'memory'],\n", + " 'rbv2_rpart': ['acc', 'bac', 'auc', 'brier', 'f1', 'logloss', 'timetrain', 'timepredict',\n", + " 'memory'],\n", + " 'rbv2_glmnet': ['acc', 'bac', 'auc', 'brier', 'f1', 'logloss', 'timetrain',\n", + " 'timepredict', 'memory'],\n", + " 'rbv2_xgboost': ['acc', 'bac', 'auc', 'brier', 'f1', 'logloss', 'timetrain',\n", + " 'timepredict', 'memory'],\n", + " 'rbv2_aknn': ['acc', 'bac', 'auc', 'brier', 'f1', 'logloss', 'timetrain', 'timepredict',\n", + " 'memory'],\n", + " 'rbv2_super': ['acc', 'bac', 'auc', 'brier', 'f1', 'logloss', 'timetrain', 'timepredict',\n", + " 'memory'],\n", + " 'iaml_ranger': ['mmce', 'f1', 'auc', 'logloss', 'ramtrain', 'rammodel', 'rampredict',\n", + " 'timetrain', 'timepredict', 'mec', 'ias', 'nf'],\n", + " 'iaml_rpart': ['mmce', 'f1', 'auc', 'logloss', 'ramtrain', 'rammodel', 'rampredict',\n", + " 'timetrain', 'timepredict', 'mec', 'ias', 'nf'],\n", + " 'iaml_glmnet': ['mmce', 'f1', 'auc', 'logloss', 'ramtrain', 'rammodel', 'rampredict',\n", + " 'timetrain', 'timepredict', 'mec', 'ias', 'nf'],\n", + " 'iaml_xgboost': ['mmce', 'f1', 'auc', 'logloss', 'ramtrain', 'rammodel', 'rampredict',\n", + " 'timetrain', 'timepredict', 'mec', 'ias', 'nf'],\n", + " 'iaml_super': ['mmce', 'f1', 'auc', 'logloss', 'ramtrain', 'rammodel', 'rampredict',\n", + " 'timetrain', 'timepredict', 'mec', 'ias', 'nf']}\n", + "\n", + "# select your prefered target variable\n", + "iaml = 'f1'\n", + "rbv2 = 'acc'\n", + "TARGETMETRIC = {'lcbench': 'val_accuracy',\n", + " 'fcnet': 'valid_mse',\n", + " 'nb301': 'val_accuracy',\n", + " 'rbv2_svm': rbv2,\n", + " 'rbv2_ranger': rbv2,\n", + " 'rbv2_rpart': rbv2,\n", + " 'rbv2_glmnet': rbv2,\n", + " 'rbv2_xgboost': rbv2,\n", + " 'rbv2_aknn': rbv2,\n", + " 'rbv2_super': rbv2,\n", + " 'iaml_ranger': iaml,\n", + " 'iaml_rpart': iaml,\n", + " 'iaml_glmnet': iaml,\n", + " 'iaml_xgboost': iaml,\n", + " 'iaml_super': iaml}\n", + "\n", + "LOWER_IS_BETTER = {\n", + " 'lcbench': False,\n", + " 'fcnet': True,\n", + " 'nb301': False,\n", + " 'rbv2_svm': False,\n", + " 'rbv2_ranger': False,\n", + " 'rbv2_rpart': False,\n", + " 'rbv2_glmnet': False,\n", + " 'rbv2_xgboost': False,\n", + " 'rbv2_aknn': False,\n", + " 'rbv2_super': False,\n", + " 'iaml_ranger': False,\n", + " 'iaml_rpart': False,\n", + " 'iaml_glmnet': False,\n", + " 'iaml_xgboost': False,\n", + " 'iaml_super': False,\n", + "}\n", + "\n", + "def get_n_trials(dimension: int) -> int:\n", + " return int(np.ceil(20 + 40 * np.sqrt(dimension)))" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "ExecuteTime": { + "end_time": "2024-02-08T09:45:03.880797226Z", + "start_time": "2024-02-08T09:45:00.238662926Z" + }, + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/3945/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '3945', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/3945/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '3945', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/7593/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '7593', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/7593/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '7593', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/34539/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '34539', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/34539/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '34539', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/126025/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '126025', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/126025/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '126025', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/126026/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '126026', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/126026/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '126026', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/126029/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '126029', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/126029/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '126029', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/146212/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '146212', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/146212/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '146212', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167104/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167104', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167104/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167104', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167149/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167149', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167149/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167149', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167152/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167152', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167152/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167152', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167161/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167161', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167161/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167161', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167168/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167168', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167168/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167168', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167181/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167181', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167181/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167181', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167184/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167184', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167184/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167184', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167185/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167185', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167185/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167185', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167190/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167190', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167190/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167190', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167200/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167200', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167200/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167200', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167201/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167201', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/167201/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167201', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/168329/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '168329', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/168329/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '168329', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/168330/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '168330', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/168330/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '168330', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/168331/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '168331', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/168331/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '168331', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/168335/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '168335', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/168335/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '168335', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/168868/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '168868', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/168868/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '168868', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/168908/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '168908', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/168908/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '168908', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/168910/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '168910', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/168910/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '168910', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/189354/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189354', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/189354/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189354', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/189862/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189862', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/189862/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189862', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/189865/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189865', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/189865/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189865', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/189866/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189866', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/189866/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189866', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/189873/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189873', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/189873/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189873', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/189905/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189905', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/189905/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189905', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/189906/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189906', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/189906/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189906', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/189908/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189908', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/189908/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189908', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/189909/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189909', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/lcbench/189909/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189909', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/fcnet/fcnet_naval_propulsion/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'fcnet', 'instance': 'fcnet_naval_propulsion', 'budget_type': 'epoch', 'metric': 'valid_mse'}, 'task': {'n_trials': 147, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 100, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 10, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 3, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/fcnet/fcnet_naval_propulsion/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'fcnet', 'instance': 'fcnet_naval_propulsion', 'budget_type': None, 'metric': 'valid_mse'}, 'task': {'n_trials': 147, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 10, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 3, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/fcnet/fcnet_protein_structure/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'fcnet', 'instance': 'fcnet_protein_structure', 'budget_type': 'epoch', 'metric': 'valid_mse'}, 'task': {'n_trials': 147, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 100, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 10, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 3, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/fcnet/fcnet_protein_structure/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'fcnet', 'instance': 'fcnet_protein_structure', 'budget_type': None, 'metric': 'valid_mse'}, 'task': {'n_trials': 147, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 10, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 3, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/fcnet/fcnet_slice_localization/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'fcnet', 'instance': 'fcnet_slice_localization', 'budget_type': 'epoch', 'metric': 'valid_mse'}, 'task': {'n_trials': 147, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 100, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 10, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 3, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/fcnet/fcnet_slice_localization/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'fcnet', 'instance': 'fcnet_slice_localization', 'budget_type': None, 'metric': 'valid_mse'}, 'task': {'n_trials': 147, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 10, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 3, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/fcnet/fcnet_parkinsons_telemonitoring/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'fcnet', 'instance': 'fcnet_parkinsons_telemonitoring', 'budget_type': 'epoch', 'metric': 'valid_mse'}, 'task': {'n_trials': 147, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 100, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 10, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 3, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/fcnet/fcnet_parkinsons_telemonitoring/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'fcnet', 'instance': 'fcnet_parkinsons_telemonitoring', 'budget_type': None, 'metric': 'valid_mse'}, 'task': {'n_trials': 147, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 10, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 3, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/nb301/CIFAR10/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'nb301', 'instance': 'CIFAR10', 'budget_type': 'epoch', 'metric': 'val_accuracy'}, 'task': {'n_trials': 254, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 98, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 34, 'search_space_n_categoricals': 34, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 0, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/nb301/CIFAR10/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'nb301', 'instance': 'CIFAR10', 'budget_type': None, 'metric': 'val_accuracy'}, 'task': {'n_trials': 254, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 34, 'search_space_n_categoricals': 34, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 0, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40981/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40981', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40981/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40981', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40981/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40981', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/4134/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '4134', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/4134/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '4134', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/4134/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '4134', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1220/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1220', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1220/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1220', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1220/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1220', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40978/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40978', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40978/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40978', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40978/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40978', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40966/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40966', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40966/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40966', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40966/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40966', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40536/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40536', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40536/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40536', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40536/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40536', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41156/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41156', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41156/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41156', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41156/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41156', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/458/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '458', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/458/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '458', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/458/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '458', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41157/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41157', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41157/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41157', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41157/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41157', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40975/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40975', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40975/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40975', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40975/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40975', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40994/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40994', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40994/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40994', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40994/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40994', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1468/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1468', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1468/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1468', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1468/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1468', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/6332/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '6332', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/6332/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '6332', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/6332/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '6332', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40670/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40670', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40670/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40670', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40670/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40670', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/151/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '151', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/151/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '151', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/151/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '151', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1475/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1475', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1475/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1475', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1475/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1475', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1476/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1476', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1476/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1476', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1476/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1476', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1478/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1478', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1478/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1478', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1478/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1478', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1479/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1479', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1479/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1479', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1479/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1479', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41212/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41212', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41212/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41212', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41212/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41212', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1480/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1480', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1480/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1480', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1480/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1480', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1053/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1053', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1053/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1053', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1053/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1053', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1067/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1067', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1067/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1067', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1067/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1067', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1056/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1056', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1056/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1056', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1056/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1056', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/12/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '12', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/12/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '12', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/12/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '12', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1487/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1487', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1487/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1487', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1487/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1487', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1068/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1068', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1068/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1068', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1068/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1068', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/32/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '32', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/32/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '32', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/32/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '32', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/470/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '470', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/470/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '470', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/470/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '470', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/312/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '312', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/312/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '312', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/312/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '312', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/38/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '38', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/38/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '38', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/38/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '38', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40982/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40982', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40982/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40982', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40982/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40982', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/50/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '50', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/50/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '50', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/50/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '50', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41216/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41216', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41216/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41216', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41216/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41216', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/307/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '307', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/307/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '307', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/307/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '307', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40498/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40498', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40498/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40498', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40498/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40498', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/181/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '181', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/181/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '181', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/181/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '181', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1464/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1464', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1464/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1464', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1464/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1464', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41164/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41164', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41164/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41164', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41164/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41164', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/16/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '16', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/16/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '16', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/16/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '16', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1461/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1461', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1461/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1461', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1461/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1461', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41162/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41162', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41162/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41162', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41162/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41162', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/6/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '6', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/6/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '6', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/6/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '6', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/14/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '14', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/14/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '14', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/14/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '14', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1494/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1494', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1494/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1494', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1494/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1494', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/54/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '54', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/54/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '54', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/54/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '54', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/375/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '375', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/375/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '375', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/375/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '375', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1590/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1590', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1590/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1590', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1590/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1590', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/23/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '23', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/23/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '23', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/23/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '23', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41163/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41163', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41163/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41163', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41163/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41163', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1111/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1111', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1111/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1111', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1111/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1111', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41027/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41027', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41027/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41027', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41027/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41027', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40668/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40668', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40668/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40668', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40668/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40668', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41138/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41138', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41138/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41138', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41138/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41138', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/4135/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '4135', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/4135/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '4135', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/4135/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '4135', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/4538/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '4538', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/4538/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '4538', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/4538/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '4538', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40496/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40496', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40496/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40496', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40496/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40496', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/4534/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '4534', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/4534/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '4534', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/4534/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '4534', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40900/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40900', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40900/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40900', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40900/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40900', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1457/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1457', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1457/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1457', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1457/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1457', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/11/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '11', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/11/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '11', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/11/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '11', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1462/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1462', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1462/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1462', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1462/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1462', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41142/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41142', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41142/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41142', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41142/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41142', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40701/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40701', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40701/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40701', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40701/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40701', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/29/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '29', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/29/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '29', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/29/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '29', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/37/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '37', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/37/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '37', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/37/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '37', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/23381/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '23381', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/23381/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '23381', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/23381/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '23381', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/188/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '188', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/188/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '188', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/188/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '188', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41143/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41143', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41143/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41143', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41143/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41143', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1063/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1063', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1063/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1063', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1063/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1063', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/3/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '3', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/3/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '3', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/3/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '3', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/18/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '18', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/18/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '18', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/18/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '18', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40979/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40979', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40979/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40979', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40979/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40979', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/22/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '22', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/22/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '22', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/22/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '22', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1515/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1515', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1515/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1515', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1515/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1515', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/334/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '334', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/334/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '334', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/334/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '334', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/24/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '24', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/24/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '24', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/24/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '24', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1493/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1493', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1493/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1493', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1493/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1493', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/28/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '28', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/28/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '28', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/28/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '28', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1050/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1050', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1050/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1050', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1050/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1050', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1049/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1049', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1049/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1049', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1049/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1049', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40984/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40984', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40984/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40984', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40984/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40984', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40685/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40685', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40685/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40685', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40685/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40685', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/42/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '42', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/42/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '42', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/42/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '42', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/44/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '44', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/44/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '44', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/44/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '44', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/46/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '46', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/46/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '46', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/46/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '46', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1040/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1040', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1040/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1040', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1040/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1040', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41146/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41146', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41146/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41146', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41146/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41146', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/377/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '377', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/377/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '377', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/377/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '377', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40499/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40499', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40499/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40499', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40499/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40499', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1497/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1497', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1497/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1497', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1497/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1497', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/60/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '60', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/60/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '60', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/60/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '60', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40983/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40983', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40983/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40983', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/40983/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '40983', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/4154/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '4154', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/4154/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '4154', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/4154/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '4154', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/469/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '469', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/469/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '469', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/469/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '469', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/31/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '31', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/31/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '31', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/31/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '31', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41278/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41278', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41278/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41278', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41278/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41278', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1489/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1489', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1489/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1489', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1489/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1489', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1501/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1501', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1501/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1501', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1501/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1501', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/15/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '15', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/15/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '15', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/15/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '15', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/300/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '300', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/300/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '300', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/300/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '300', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1485/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1485', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1485/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1485', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1485/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1485', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1486/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1486', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1486/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1486', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1486/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1486', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1510/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1510', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1510/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1510', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/1510/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '1510', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/182/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '182', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/182/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '182', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/182/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '182', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41169/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41169', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41169/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41169', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_svm/41169/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_svm', 'instance': '41169', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 1, 'search_space_n_floats': 3, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/4135/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '4135', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/4135/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '4135', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/4135/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '4135', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40981/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40981', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40981/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40981', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40981/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40981', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/4134/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '4134', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/4134/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '4134', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/4134/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '4134', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1220/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1220', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1220/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1220', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1220/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1220', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/4154/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '4154', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/4154/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '4154', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/4154/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '4154', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/4538/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '4538', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/4538/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '4538', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/4538/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '4538', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40978/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40978', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40978/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40978', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40978/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40978', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/375/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '375', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/375/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '375', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/375/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '375', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40496/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40496', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40496/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40496', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40496/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40496', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40966/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40966', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40966/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40966', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40966/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40966', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/4534/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '4534', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/4534/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '4534', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/4534/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '4534', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40900/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40900', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40900/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40900', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40900/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40900', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40536/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40536', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40536/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40536', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40536/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40536', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41156/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41156', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41156/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41156', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41156/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41156', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1590/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1590', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1590/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1590', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1590/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1590', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1457/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1457', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1457/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1457', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1457/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1457', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/458/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '458', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/458/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '458', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/458/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '458', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/469/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '469', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/469/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '469', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/469/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '469', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41157/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41157', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41157/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41157', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41157/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41157', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/11/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '11', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/11/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '11', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/11/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '11', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1461/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1461', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1461/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1461', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1461/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1461', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1462/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1462', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1462/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1462', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1462/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1462', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1464/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1464', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1464/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1464', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1464/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1464', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/15/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '15', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/15/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '15', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/15/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '15', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40975/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40975', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40975/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40975', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40975/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40975', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41142/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41142', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41142/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41142', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41142/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41142', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40701/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40701', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40701/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40701', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40701/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40701', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40994/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40994', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40994/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40994', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40994/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40994', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/23/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '23', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/23/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '23', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/23/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '23', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1468/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1468', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1468/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1468', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1468/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1468', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40668/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40668', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40668/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40668', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40668/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40668', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/29/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '29', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/29/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '29', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/29/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '29', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/31/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '31', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/31/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '31', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/31/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '31', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/6332/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '6332', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/6332/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '6332', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/6332/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '6332', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/37/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '37', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/37/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '37', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/37/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '37', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40670/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40670', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40670/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40670', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40670/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40670', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/23381/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '23381', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/23381/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '23381', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/23381/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '23381', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/151/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '151', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/151/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '151', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/151/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '151', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/188/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '188', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/188/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '188', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/188/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '188', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41164/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41164', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41164/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41164', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41164/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41164', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1475/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1475', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1475/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1475', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1475/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1475', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1476/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1476', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1476/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1476', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1476/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1476', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1478/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1478', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1478/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1478', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1478/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1478', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1479/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1479', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1479/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1479', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1479/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1479', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41212/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41212', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41212/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41212', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41212/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41212', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1480/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1480', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1480/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1480', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1480/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1480', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41143/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41143', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41143/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41143', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41143/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41143', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1053/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1053', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1053/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1053', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1053/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1053', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41027/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41027', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41027/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41027', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41027/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41027', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1067/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1067', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1067/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1067', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1067/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1067', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1063/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1063', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1063/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1063', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1063/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1063', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/3/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '3', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/3/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '3', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/3/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '3', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/6/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '6', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/6/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '6', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/6/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '6', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1485/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1485', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1485/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1485', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1485/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1485', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1056/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1056', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1056/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1056', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1056/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1056', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/12/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '12', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/12/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '12', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/12/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '12', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/14/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '14', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/14/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '14', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/14/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '14', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/16/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '16', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/16/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '16', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/16/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '16', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/18/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '18', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/18/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '18', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/18/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '18', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40979/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40979', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40979/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40979', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40979/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40979', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/22/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '22', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/22/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '22', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/22/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '22', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1515/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1515', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1515/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1515', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1515/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1515', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/334/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '334', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/334/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '334', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/334/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '334', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/24/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '24', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/24/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '24', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/24/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '24', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1486/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1486', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1486/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1486', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1486/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1486', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41278/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41278', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41278/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41278', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41278/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41278', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/28/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '28', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/28/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '28', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/28/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '28', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1487/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1487', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1487/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1487', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1487/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1487', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1068/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1068', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1068/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1068', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1068/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1068', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1050/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1050', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1050/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1050', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1050/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1050', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1049/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1049', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1049/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1049', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1049/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1049', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/32/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '32', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/32/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '32', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/32/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '32', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1489/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1489', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1489/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1489', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1489/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1489', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/470/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '470', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/470/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '470', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/470/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '470', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1494/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1494', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1494/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1494', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1494/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1494', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/182/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '182', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/182/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '182', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/182/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '182', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/312/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '312', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/312/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '312', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/312/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '312', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40984/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40984', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40984/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40984', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40984/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40984', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1501/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1501', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1501/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1501', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1501/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1501', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40685/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40685', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40685/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40685', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40685/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40685', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/38/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '38', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/38/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '38', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/38/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '38', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/42/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '42', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/42/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '42', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/42/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '42', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/44/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '44', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/44/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '44', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/44/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '44', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/46/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '46', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/46/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '46', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/46/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '46', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40982/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40982', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40982/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40982', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40982/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40982', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1040/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1040', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1040/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1040', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1040/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1040', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41146/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41146', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41146/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41146', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41146/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41146', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/377/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '377', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/377/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '377', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/377/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '377', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40499/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40499', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40499/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40499', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40499/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40499', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/50/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '50', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/50/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '50', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/50/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '50', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/54/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '54', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/54/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '54', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/54/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '54', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41216/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41216', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41216/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41216', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41216/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41216', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/307/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '307', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/307/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '307', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/307/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '307', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1497/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1497', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1497/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1497', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1497/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1497', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/60/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '60', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/60/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '60', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/60/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '60', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1510/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1510', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1510/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1510', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1510/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1510', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40983/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40983', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40983/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40983', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40983/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40983', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40498/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40498', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40498/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40498', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40498/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40498', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/181/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '181', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/181/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '181', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/181/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '181', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41138/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41138', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41138/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41138', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41138/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41138', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41163/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41163', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41163/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41163', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41163/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41163', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1111/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1111', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1111/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1111', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1111/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1111', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41159/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41159', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41159/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41159', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41159/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41159', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/300/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '300', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/300/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '300', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/300/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '300', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41162/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41162', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41162/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41162', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41162/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41162', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/23517/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '23517', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/23517/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '23517', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/23517/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '23517', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41165/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41165', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41165/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41165', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41165/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41165', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/4541/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '4541', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/4541/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '4541', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/4541/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '4541', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41161/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41161', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41161/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41161', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41161/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41161', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41166/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41166', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41166/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41166', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41166/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41166', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40927/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40927', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40927/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40927', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40927/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40927', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41150/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41150', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41150/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41150', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41150/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41150', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/23512/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '23512', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/23512/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '23512', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/23512/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '23512', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41168/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41168', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41168/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41168', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41168/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41168', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1493/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1493', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1493/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1493', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/1493/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '1493', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40996/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40996', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40996/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40996', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40996/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40996', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/554/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '554', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/554/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '554', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/554/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '554', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40923/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40923', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40923/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40923', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/40923/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40923', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41169/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41169', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41169/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41169', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_ranger/41169/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '41169', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41138/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41138', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41138/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41138', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41138/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41138', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/4135/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '4135', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/4135/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '4135', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/4135/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '4135', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40981/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40981', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40981/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40981', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40981/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40981', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/4134/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '4134', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/4134/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '4134', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/4134/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '4134', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40927/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40927', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40927/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40927', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40927/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40927', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1220/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1220', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1220/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1220', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1220/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1220', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/4154/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '4154', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/4154/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '4154', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/4154/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '4154', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40923/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40923', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40923/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40923', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40923/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40923', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41163/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41163', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41163/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41163', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41163/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41163', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40996/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40996', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40996/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40996', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40996/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40996', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/4538/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '4538', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/4538/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '4538', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/4538/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '4538', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40978/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40978', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40978/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40978', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40978/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40978', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/375/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '375', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/375/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '375', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/375/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '375', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1111/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1111', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1111/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1111', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1111/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1111', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40496/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40496', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40496/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40496', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40496/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40496', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40966/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40966', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40966/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40966', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40966/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40966', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41150/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41150', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41150/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41150', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41150/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41150', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/4534/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '4534', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/4534/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '4534', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/4534/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '4534', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40900/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40900', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40900/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40900', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40900/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40900', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40536/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40536', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40536/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40536', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40536/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40536', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41156/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41156', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41156/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41156', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41156/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41156', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1590/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1590', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1590/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1590', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1590/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1590', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1457/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1457', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1457/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1457', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1457/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1457', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/458/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '458', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/458/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '458', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/458/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '458', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/469/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '469', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/469/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '469', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/469/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '469', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41157/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41157', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41157/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41157', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41157/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41157', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/11/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '11', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/11/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '11', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/11/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '11', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1461/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1461', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1461/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1461', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1461/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1461', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1462/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1462', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1462/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1462', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1462/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1462', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1464/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1464', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1464/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1464', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1464/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1464', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/15/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '15', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/15/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '15', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/15/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '15', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40975/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40975', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40975/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40975', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40975/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40975', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41142/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41142', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41142/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41142', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41142/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41142', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40701/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40701', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40701/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40701', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40701/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40701', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40994/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40994', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40994/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40994', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40994/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40994', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/23/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '23', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/23/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '23', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/23/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '23', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1468/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1468', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1468/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1468', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1468/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1468', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40668/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40668', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40668/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40668', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40668/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40668', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/29/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '29', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/29/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '29', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/29/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '29', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/31/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '31', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/31/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '31', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/31/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '31', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/6332/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '6332', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/6332/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '6332', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/6332/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '6332', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/37/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '37', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/37/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '37', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/37/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '37', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/4541/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '4541', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/4541/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '4541', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/4541/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '4541', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40670/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40670', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40670/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40670', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40670/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40670', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/23381/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '23381', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/23381/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '23381', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/23381/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '23381', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/151/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '151', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/151/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '151', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/151/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '151', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/188/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '188', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/188/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '188', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/188/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '188', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41164/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41164', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41164/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41164', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41164/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41164', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1475/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1475', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1475/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1475', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1475/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1475', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1476/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1476', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1476/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1476', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1476/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1476', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41159/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41159', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41159/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41159', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41159/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41159', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1478/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1478', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1478/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1478', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1478/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1478', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41169/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41169', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41169/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41169', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41169/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41169', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/23512/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '23512', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/23512/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '23512', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/23512/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '23512', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1479/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1479', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1479/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1479', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1479/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1479', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41212/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41212', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41212/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41212', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41212/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41212', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1480/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1480', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1480/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1480', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1480/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1480', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/300/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '300', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/300/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '300', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/300/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '300', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41168/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41168', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41168/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41168', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41168/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41168', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41143/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41143', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41143/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41143', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41143/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41143', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1053/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1053', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1053/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1053', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1053/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1053', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41027/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41027', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41027/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41027', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41027/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41027', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1067/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1067', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1067/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1067', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1067/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1067', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1063/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1063', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1063/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1063', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1063/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1063', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41162/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41162', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41162/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41162', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41162/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41162', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/3/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '3', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/3/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '3', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/3/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '3', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/6/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '6', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/6/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '6', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/6/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '6', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1485/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1485', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1485/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1485', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1485/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1485', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1056/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1056', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1056/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1056', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1056/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1056', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/12/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '12', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/12/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '12', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/12/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '12', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/14/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '14', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/14/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '14', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/14/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '14', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/16/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '16', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/16/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '16', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/16/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '16', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/18/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '18', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/18/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '18', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/18/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '18', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40979/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40979', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40979/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40979', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40979/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40979', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/22/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '22', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/22/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '22', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/22/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '22', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1515/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1515', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1515/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1515', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1515/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1515', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/554/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '554', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/554/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '554', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/554/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '554', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/334/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '334', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/334/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '334', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/334/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '334', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/24/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '24', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/24/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '24', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/24/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '24', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1486/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1486', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1486/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1486', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1486/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1486', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/23517/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '23517', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/23517/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '23517', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/23517/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '23517', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1493/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1493', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1493/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1493', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1493/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1493', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/28/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '28', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/28/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '28', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/28/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '28', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1487/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1487', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1487/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1487', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1487/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1487', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1068/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1068', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1068/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1068', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1068/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1068', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1050/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1050', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1050/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1050', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1050/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1050', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1049/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1049', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1049/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1049', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1049/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1049', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/32/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '32', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/32/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '32', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/32/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '32', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1489/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1489', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1489/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1489', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1489/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1489', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/470/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '470', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/470/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '470', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/470/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '470', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1494/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1494', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1494/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1494', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1494/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1494', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41161/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41161', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41161/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41161', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41161/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41161', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41165/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41165', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41165/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41165', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41165/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41165', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/182/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '182', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/182/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '182', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/182/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '182', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/312/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '312', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/312/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '312', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/312/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '312', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40984/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40984', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40984/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40984', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40984/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40984', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1501/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1501', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1501/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1501', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1501/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1501', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40685/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40685', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40685/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40685', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40685/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40685', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/38/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '38', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/38/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '38', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/38/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '38', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/42/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '42', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/42/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '42', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/42/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '42', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/44/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '44', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/44/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '44', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/44/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '44', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/46/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '46', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/46/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '46', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/46/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '46', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40982/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40982', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40982/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40982', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40982/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40982', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1040/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1040', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1040/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1040', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1040/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1040', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41146/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41146', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41146/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41146', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41146/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41146', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/377/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '377', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/377/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '377', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/377/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '377', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40499/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40499', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40499/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40499', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40499/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40499', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/50/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '50', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/50/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '50', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/50/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '50', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/54/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '54', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/54/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '54', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/54/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '54', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41166/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41166', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41166/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41166', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/41166/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41166', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/307/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '307', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/307/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '307', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/307/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '307', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1497/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1497', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1497/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1497', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1497/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1497', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/60/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '60', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/60/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '60', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/60/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '60', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1510/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1510', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1510/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1510', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/1510/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1510', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40983/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40983', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40983/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40983', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40983/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40983', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40498/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40498', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40498/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40498', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/40498/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40498', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/181/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '181', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/181/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '181', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_rpart/181/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '181', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41138/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41138', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41138/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41138', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41138/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41138', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/4135/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '4135', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/4135/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '4135', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/4135/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '4135', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40981/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40981', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40981/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40981', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40981/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40981', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/4134/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '4134', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/4134/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '4134', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/4134/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '4134', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1220/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1220', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1220/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1220', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1220/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1220', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/4154/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '4154', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/4154/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '4154', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/4154/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '4154', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41163/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41163', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41163/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41163', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41163/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41163', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/4538/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '4538', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/4538/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '4538', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/4538/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '4538', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40978/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40978', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40978/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40978', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40978/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40978', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/375/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '375', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/375/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '375', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/375/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '375', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1111/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1111', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1111/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1111', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1111/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1111', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40496/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40496', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40496/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40496', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40496/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40496', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40966/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40966', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40966/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40966', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40966/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40966', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41150/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41150', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41150/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41150', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41150/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41150', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/4534/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '4534', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/4534/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '4534', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/4534/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '4534', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40900/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40900', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40900/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40900', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40900/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40900', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40536/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40536', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40536/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40536', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40536/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40536', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41156/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41156', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41156/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41156', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41156/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41156', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1590/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1590', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1590/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1590', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1590/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1590', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1457/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1457', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1457/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1457', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1457/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1457', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/458/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '458', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/458/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '458', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/458/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '458', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/469/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '469', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/469/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '469', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/469/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '469', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41157/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41157', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41157/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41157', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41157/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41157', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/11/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '11', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/11/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '11', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/11/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '11', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1461/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1461', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1461/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1461', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1461/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1461', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1462/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1462', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1462/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1462', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1462/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1462', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1464/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1464', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1464/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1464', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1464/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1464', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/15/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '15', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/15/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '15', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/15/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '15', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40975/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40975', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40975/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40975', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40975/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40975', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41142/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41142', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41142/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41142', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41142/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41142', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40701/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40701', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40701/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40701', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40701/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40701', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40994/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40994', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40994/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40994', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40994/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40994', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/23/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '23', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/23/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '23', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/23/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '23', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1468/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1468', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1468/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1468', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1468/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1468', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40668/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40668', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40668/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40668', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40668/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40668', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/29/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '29', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/29/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '29', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/29/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '29', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/31/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '31', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/31/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '31', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/31/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '31', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/6332/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '6332', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/6332/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '6332', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/6332/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '6332', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/37/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '37', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/37/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '37', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/37/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '37', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/4541/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '4541', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/4541/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '4541', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/4541/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '4541', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40670/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40670', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40670/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40670', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40670/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40670', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/23381/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '23381', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/23381/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '23381', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/23381/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '23381', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/151/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '151', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/151/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '151', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/151/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '151', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/188/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '188', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/188/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '188', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/188/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '188', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41164/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41164', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41164/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41164', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41164/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41164', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1475/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1475', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1475/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1475', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1475/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1475', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1476/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1476', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1476/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1476', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1476/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1476', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41159/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41159', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41159/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41159', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41159/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41159', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1478/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1478', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1478/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1478', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1478/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1478', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41169/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41169', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41169/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41169', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41169/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41169', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/23512/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '23512', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/23512/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '23512', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/23512/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '23512', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1479/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1479', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1479/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1479', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1479/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1479', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41212/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41212', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41212/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41212', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41212/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41212', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1480/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1480', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1480/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1480', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1480/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1480', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/300/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '300', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/300/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '300', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/300/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '300', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41168/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41168', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41168/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41168', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41168/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41168', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41143/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41143', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41143/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41143', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41143/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41143', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1053/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1053', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1053/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1053', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1053/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1053', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41027/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41027', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41027/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41027', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41027/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41027', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1067/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1067', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1067/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1067', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1067/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1067', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1063/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1063', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1063/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1063', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1063/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1063', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41162/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41162', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41162/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41162', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41162/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41162', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/3/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '3', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/3/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '3', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/3/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '3', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/6/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '6', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/6/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '6', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/6/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '6', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1485/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1485', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1485/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1485', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1485/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1485', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1056/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1056', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1056/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1056', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1056/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1056', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/12/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '12', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/12/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '12', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/12/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '12', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/14/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '14', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/14/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '14', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/14/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '14', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/16/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '16', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/16/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '16', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/16/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '16', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/18/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '18', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/18/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '18', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/18/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '18', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40979/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40979', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40979/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40979', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40979/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40979', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/22/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '22', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/22/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '22', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/22/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '22', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1515/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1515', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1515/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1515', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1515/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1515', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/334/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '334', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/334/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '334', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/334/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '334', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/24/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '24', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/24/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '24', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/24/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '24', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1486/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1486', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1486/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1486', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1486/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1486', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/23517/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '23517', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/23517/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '23517', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/23517/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '23517', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41278/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41278', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41278/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41278', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41278/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41278', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1493/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1493', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1493/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1493', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1493/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1493', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/28/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '28', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/28/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '28', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/28/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '28', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1487/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1487', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1487/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1487', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1487/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1487', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1068/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1068', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1068/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1068', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1068/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1068', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1050/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1050', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1050/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1050', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1050/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1050', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1049/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1049', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1049/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1049', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1049/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1049', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/32/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '32', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/32/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '32', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/32/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '32', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1489/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1489', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1489/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1489', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1489/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1489', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/470/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '470', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/470/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '470', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/470/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '470', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1494/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1494', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1494/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1494', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1494/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1494', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41161/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41161', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41161/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41161', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41161/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41161', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/182/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '182', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/182/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '182', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/182/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '182', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/312/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '312', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/312/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '312', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/312/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '312', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40984/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40984', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40984/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40984', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40984/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40984', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1501/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1501', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1501/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1501', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1501/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1501', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40685/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40685', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40685/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40685', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40685/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40685', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/38/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '38', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/38/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '38', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/38/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '38', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/42/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '42', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/42/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '42', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/42/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '42', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/44/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '44', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/44/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '44', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/44/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '44', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/46/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '46', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/46/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '46', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/46/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '46', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40982/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40982', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40982/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40982', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40982/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40982', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1040/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1040', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1040/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1040', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1040/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1040', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41146/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41146', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41146/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41146', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41146/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41146', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/377/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '377', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/377/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '377', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/377/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '377', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40499/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40499', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40499/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40499', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40499/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40499', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/50/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '50', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/50/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '50', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/50/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '50', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/54/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '54', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/54/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '54', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/54/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '54', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41216/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41216', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41216/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41216', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41216/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41216', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41166/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41166', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41166/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41166', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/41166/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '41166', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/307/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '307', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/307/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '307', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/307/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '307', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1497/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1497', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1497/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1497', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1497/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1497', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/60/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '60', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/60/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '60', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/60/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '60', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1510/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1510', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1510/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1510', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/1510/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '1510', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40983/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40983', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40983/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40983', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40983/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40983', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40498/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40498', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40498/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40498', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/40498/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '40498', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/181/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '181', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/181/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '181', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/181/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '181', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/554/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '554', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/554/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '554', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_glmnet/554/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '554', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/16/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '16', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/16/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '16', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/16/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '16', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40923/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40923', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40923/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40923', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40923/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40923', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41143/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41143', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41143/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41143', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41143/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41143', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/470/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '470', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/470/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '470', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/470/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '470', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1487/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1487', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1487/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1487', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1487/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1487', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40499/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40499', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40499/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40499', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40499/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40499', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40966/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40966', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40966/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40966', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40966/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40966', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41164/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41164', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41164/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41164', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41164/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41164', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1497/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1497', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1497/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1497', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1497/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1497', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40975/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40975', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40975/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40975', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40975/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40975', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1461/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1461', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1461/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1461', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1461/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1461', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41278/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41278', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41278/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41278', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41278/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41278', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/11/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '11', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/11/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '11', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/11/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '11', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/54/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '54', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/54/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '54', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/54/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '54', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/300/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '300', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/300/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '300', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/300/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '300', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40984/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40984', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40984/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40984', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40984/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40984', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/31/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '31', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/31/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '31', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/31/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '31', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1067/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1067', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1067/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1067', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1067/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1067', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1590/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1590', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1590/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1590', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1590/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1590', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40983/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40983', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40983/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40983', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40983/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40983', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41163/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41163', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41163/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41163', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41163/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41163', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41165/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41165', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41165/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41165', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41165/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41165', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/182/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '182', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/182/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '182', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/182/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '182', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1220/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1220', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1220/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1220', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1220/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1220', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41159/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41159', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41159/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41159', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41159/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41159', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41169/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41169', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41169/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41169', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41169/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41169', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/42/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '42', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/42/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '42', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/42/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '42', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/188/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '188', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/188/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '188', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/188/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '188', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1457/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1457', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1457/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1457', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1457/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1457', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1480/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1480', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1480/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1480', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1480/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1480', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/6332/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '6332', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/6332/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '6332', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/6332/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '6332', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/181/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '181', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/181/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '181', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/181/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '181', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1479/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1479', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1479/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1479', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1479/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1479', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40670/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40670', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40670/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40670', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40670/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40670', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40536/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40536', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40536/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40536', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40536/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40536', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41138/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41138', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41138/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41138', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41138/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41138', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41166/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41166', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41166/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41166', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41166/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41166', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/6/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '6', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/6/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '6', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/6/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '6', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/14/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '14', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/14/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '14', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/14/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '14', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/29/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '29', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/29/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '29', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/29/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '29', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/458/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '458', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/458/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '458', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/458/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '458', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1056/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1056', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1056/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1056', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1056/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1056', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1462/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1462', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1462/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1462', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1462/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1462', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1494/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1494', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1494/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1494', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1494/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1494', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40701/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40701', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40701/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40701', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40701/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40701', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/12/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '12', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/12/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '12', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/12/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '12', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1493/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1493', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1493/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1493', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1493/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1493', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/44/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '44', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/44/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '44', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/44/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '44', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/307/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '307', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/307/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '307', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/307/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '307', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/334/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '334', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/334/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '334', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/334/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '334', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40982/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40982', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40982/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40982', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40982/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40982', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41142/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41142', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41142/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41142', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41142/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41142', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/38/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '38', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/38/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '38', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/38/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '38', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1050/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1050', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1050/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1050', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1050/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1050', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/469/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '469', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/469/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '469', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/469/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '469', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/23381/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '23381', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/23381/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '23381', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/23381/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '23381', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41157/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41157', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41157/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41157', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41157/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41157', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/15/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '15', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/15/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '15', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/15/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '15', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/4541/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '4541', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/4541/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '4541', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/4541/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '4541', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/23/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '23', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/23/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '23', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/23/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '23', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/4134/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '4134', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/4134/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '4134', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/4134/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '4134', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40927/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40927', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40927/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40927', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40927/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40927', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40981/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40981', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40981/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40981', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40981/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40981', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41156/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41156', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41156/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41156', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41156/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41156', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/3/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '3', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/3/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '3', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/3/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '3', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1049/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1049', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1049/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1049', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1049/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1049', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40900/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40900', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40900/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40900', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40900/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40900', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1063/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1063', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1063/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1063', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1063/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1063', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/23512/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '23512', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/23512/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '23512', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/23512/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '23512', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40979/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40979', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40979/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40979', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40979/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40979', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1040/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1040', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1040/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1040', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1040/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1040', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1068/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1068', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1068/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1068', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1068/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1068', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41161/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41161', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41161/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41161', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41161/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41161', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/22/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '22', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/22/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '22', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/22/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '22', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1489/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1489', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1489/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1489', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1489/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1489', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41027/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41027', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41027/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41027', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41027/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41027', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/24/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '24', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/24/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '24', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/24/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '24', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/4135/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '4135', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/4135/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '4135', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/4135/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '4135', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/23517/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '23517', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/23517/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '23517', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/23517/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '23517', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1053/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1053', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1053/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1053', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1053/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1053', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1468/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1468', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1468/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1468', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1468/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1468', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/312/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '312', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/312/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '312', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/312/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '312', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/377/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '377', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/377/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '377', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/377/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '377', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1515/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1515', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1515/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1515', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1515/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1515', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/18/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '18', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/18/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '18', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/18/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '18', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1476/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1476', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1476/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1476', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1476/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1476', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1510/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1510', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1510/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1510', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1510/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1510', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41162/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41162', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41162/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41162', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41162/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41162', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/28/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '28', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/28/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '28', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/28/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '28', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/375/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '375', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/375/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '375', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/375/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '375', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1464/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1464', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1464/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1464', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1464/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1464', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40685/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40685', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40685/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40685', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40685/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40685', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40996/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40996', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40996/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40996', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40996/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40996', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41146/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41146', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41146/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41146', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41146/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41146', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41216/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41216', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41216/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41216', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41216/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41216', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40668/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40668', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40668/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40668', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40668/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40668', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41212/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41212', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41212/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41212', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41212/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41212', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/32/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '32', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/32/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '32', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/32/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '32', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/60/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '60', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/60/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '60', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/60/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '60', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/4538/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '4538', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/4538/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '4538', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/4538/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '4538', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40496/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40496', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40496/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40496', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40496/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40496', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41150/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41150', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41150/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41150', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41150/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41150', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/37/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '37', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/37/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '37', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/37/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '37', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/46/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '46', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/46/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '46', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/46/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '46', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/554/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '554', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/554/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '554', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/554/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '554', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1475/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1475', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1475/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1475', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1475/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1475', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1485/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1485', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1485/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1485', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1485/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1485', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1501/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1501', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1501/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1501', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1501/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1501', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1111/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1111', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1111/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1111', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1111/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1111', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/4534/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '4534', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/4534/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '4534', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/4534/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '4534', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41168/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41168', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41168/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41168', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/41168/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '41168', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/151/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '151', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/151/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '151', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/151/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '151', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/4154/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '4154', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/4154/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '4154', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/4154/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '4154', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40978/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40978', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40978/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40978', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40978/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40978', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40994/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40994', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40994/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40994', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40994/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40994', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/50/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '50', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/50/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '50', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/50/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '50', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1478/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1478', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1478/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1478', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1478/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1478', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1486/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1486', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1486/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1486', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/1486/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1486', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40498/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40498', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40498/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40498', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_xgboost/40498/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40498', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41138/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41138', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41138/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41138', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41138/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41138', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40981/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40981', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40981/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40981', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40981/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40981', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/4134/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '4134', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/4134/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '4134', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/4134/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '4134', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40927/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40927', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40927/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40927', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40927/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40927', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1220/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1220', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1220/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1220', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1220/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1220', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/4154/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '4154', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/4154/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '4154', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/4154/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '4154', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41163/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41163', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41163/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41163', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41163/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41163', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40996/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40996', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40996/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40996', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40996/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40996', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/4538/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '4538', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/4538/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '4538', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/4538/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '4538', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40978/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40978', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40978/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40978', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40978/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40978', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/375/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '375', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/375/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '375', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/375/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '375', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1111/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1111', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1111/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1111', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1111/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1111', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40496/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40496', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40496/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40496', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40496/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40496', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40966/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40966', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40966/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40966', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40966/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40966', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41150/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41150', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41150/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41150', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41150/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41150', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/4534/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '4534', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/4534/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '4534', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/4534/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '4534', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40900/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40900', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40900/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40900', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40900/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40900', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40536/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40536', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40536/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40536', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40536/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40536', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41156/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41156', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41156/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41156', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41156/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41156', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1590/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1590', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1590/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1590', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1590/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1590', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1457/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1457', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1457/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1457', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1457/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1457', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/458/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '458', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/458/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '458', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/458/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '458', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/469/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '469', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/469/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '469', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/469/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '469', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41157/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41157', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41157/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41157', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41157/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41157', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/11/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '11', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/11/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '11', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/11/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '11', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1461/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1461', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1461/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1461', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1461/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1461', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1462/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1462', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1462/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1462', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1462/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1462', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1464/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1464', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1464/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1464', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1464/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1464', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/15/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '15', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/15/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '15', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/15/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '15', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40975/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40975', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40975/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40975', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40975/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40975', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41142/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41142', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41142/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41142', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41142/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41142', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40701/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40701', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40701/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40701', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40701/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40701', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40994/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40994', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40994/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40994', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40994/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40994', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/23/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '23', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/23/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '23', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/23/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '23', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1468/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1468', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1468/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1468', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1468/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1468', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40668/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40668', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40668/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40668', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40668/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40668', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/29/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '29', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/29/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '29', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/29/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '29', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/31/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '31', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/31/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '31', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/31/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '31', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/6332/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '6332', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/6332/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '6332', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/6332/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '6332', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/37/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '37', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/37/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '37', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/37/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '37', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/4541/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '4541', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/4541/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '4541', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/4541/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '4541', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40670/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40670', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40670/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40670', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40670/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40670', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/23381/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '23381', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/23381/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '23381', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/23381/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '23381', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/151/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '151', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/151/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '151', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/151/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '151', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/188/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '188', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/188/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '188', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/188/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '188', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41164/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41164', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41164/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41164', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41164/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41164', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1475/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1475', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1475/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1475', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1475/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1475', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1476/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1476', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1476/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1476', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1476/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1476', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41159/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41159', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41159/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41159', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41159/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41159', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1478/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1478', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1478/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1478', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1478/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1478', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41169/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41169', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41169/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41169', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41169/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41169', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/23512/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '23512', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/23512/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '23512', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/23512/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '23512', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1479/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1479', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1479/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1479', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1479/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1479', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41212/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41212', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41212/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41212', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41212/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41212', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1480/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1480', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1480/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1480', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1480/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1480', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/300/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '300', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/300/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '300', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/300/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '300', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41168/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41168', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41168/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41168', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41168/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41168', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41143/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41143', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41143/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41143', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41143/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41143', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1053/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1053', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1053/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1053', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1053/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1053', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41027/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41027', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41027/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41027', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41027/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41027', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1067/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1067', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1067/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1067', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1067/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1067', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1063/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1063', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1063/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1063', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1063/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1063', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41162/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41162', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41162/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41162', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41162/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41162', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/3/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '3', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/3/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '3', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/3/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '3', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/6/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '6', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/6/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '6', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/6/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '6', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1485/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1485', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1485/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1485', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1485/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1485', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1056/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1056', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1056/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1056', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1056/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1056', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/12/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '12', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/12/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '12', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/12/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '12', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/14/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '14', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/14/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '14', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/14/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '14', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/16/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '16', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/16/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '16', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/16/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '16', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/18/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '18', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/18/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '18', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/18/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '18', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40979/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40979', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40979/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40979', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40979/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40979', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/22/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '22', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/22/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '22', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/22/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '22', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1515/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1515', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1515/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1515', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1515/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1515', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/554/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '554', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/554/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '554', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/554/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '554', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/334/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '334', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/334/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '334', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/334/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '334', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/24/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '24', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/24/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '24', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/24/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '24', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1486/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1486', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1486/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1486', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1486/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1486', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/23517/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '23517', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/23517/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '23517', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/23517/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '23517', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41278/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41278', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41278/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41278', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41278/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41278', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1493/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1493', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1493/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1493', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1493/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1493', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/28/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '28', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/28/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '28', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/28/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '28', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1487/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1487', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1487/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1487', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1487/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1487', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1068/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1068', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1068/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1068', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1068/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1068', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1050/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1050', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1050/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1050', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1050/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1050', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1049/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1049', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1049/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1049', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1049/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1049', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/32/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '32', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/32/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '32', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/32/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '32', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1489/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1489', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1489/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1489', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1489/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1489', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/470/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '470', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/470/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '470', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/470/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '470', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1494/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1494', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1494/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1494', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1494/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1494', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41161/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41161', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41161/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41161', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41161/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41161', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41165/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41165', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41165/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41165', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41165/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41165', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/182/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '182', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/182/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '182', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/182/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '182', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/312/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '312', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/312/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '312', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/312/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '312', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40984/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40984', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40984/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40984', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40984/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40984', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1501/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1501', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1501/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1501', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1501/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1501', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40685/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40685', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40685/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40685', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40685/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40685', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/38/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '38', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/38/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '38', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/38/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '38', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/42/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '42', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/42/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '42', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/42/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '42', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/44/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '44', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/44/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '44', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/44/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '44', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/46/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '46', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/46/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '46', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/46/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '46', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40982/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40982', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40982/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40982', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40982/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40982', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1040/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1040', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1040/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1040', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1040/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1040', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41146/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41146', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41146/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41146', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41146/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41146', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/377/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '377', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/377/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '377', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/377/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '377', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40499/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40499', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40499/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40499', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40499/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40499', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/50/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '50', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/50/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '50', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/50/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '50', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/54/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '54', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/54/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '54', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/54/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '54', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41216/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41216', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41216/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41216', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41216/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41216', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41166/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41166', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41166/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41166', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/41166/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '41166', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/307/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '307', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/307/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '307', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/307/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '307', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1497/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1497', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1497/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1497', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1497/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1497', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/60/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '60', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/60/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '60', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/60/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '60', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1510/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1510', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1510/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1510', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/1510/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '1510', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40983/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40983', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40983/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40983', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40983/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40983', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40498/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40498', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40498/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40498', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40498/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40498', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/181/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '181', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/181/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '181', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/181/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '181', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40923/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40923', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40923/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40923', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_aknn/40923/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_aknn', 'instance': '40923', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 118, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 6, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 4, 'search_space_n_floats': 0, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41138/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41138', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41138/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41138', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41138/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41138', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40981/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40981', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40981/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40981', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40981/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40981', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/4134/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '4134', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/4134/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '4134', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/4134/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '4134', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1220/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1220', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1220/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1220', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1220/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1220', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/4154/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '4154', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/4154/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '4154', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/4154/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '4154', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41163/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41163', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41163/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41163', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41163/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41163', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/4538/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '4538', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/4538/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '4538', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/4538/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '4538', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40978/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40978', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40978/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40978', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40978/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40978', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/375/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '375', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/375/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '375', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/375/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '375', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1111/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1111', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1111/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1111', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1111/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1111', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40496/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40496', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40496/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40496', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40496/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40496', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40966/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40966', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40966/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40966', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40966/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40966', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/4534/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '4534', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/4534/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '4534', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/4534/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '4534', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40900/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40900', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40900/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40900', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40900/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40900', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40536/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40536', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40536/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40536', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40536/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40536', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41156/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41156', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41156/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41156', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41156/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41156', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1590/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1590', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1590/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1590', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1590/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1590', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1457/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1457', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1457/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1457', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1457/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1457', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/458/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '458', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/458/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '458', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/458/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '458', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/469/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '469', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/469/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '469', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/469/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '469', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41157/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41157', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41157/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41157', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41157/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41157', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/11/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '11', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/11/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '11', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/11/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '11', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1461/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1461', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1461/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1461', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1461/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1461', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1462/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1462', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1462/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1462', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1462/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1462', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1464/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1464', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1464/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1464', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1464/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1464', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/15/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '15', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/15/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '15', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/15/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '15', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40975/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40975', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40975/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40975', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40975/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40975', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41142/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41142', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41142/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41142', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41142/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41142', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40701/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40701', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40701/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40701', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40701/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40701', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40994/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40994', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40994/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40994', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40994/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40994', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/23/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '23', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/23/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '23', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/23/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '23', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1468/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1468', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1468/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1468', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1468/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1468', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40668/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40668', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40668/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40668', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40668/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40668', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/29/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '29', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/29/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '29', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/29/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '29', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/31/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '31', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/31/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '31', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/31/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '31', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/6332/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '6332', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/6332/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '6332', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/6332/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '6332', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/37/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '37', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/37/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '37', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/37/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '37', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40670/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40670', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40670/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40670', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40670/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40670', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/23381/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '23381', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/23381/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '23381', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/23381/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '23381', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/151/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '151', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/151/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '151', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/151/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '151', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/188/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '188', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/188/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '188', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/188/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '188', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41164/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41164', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41164/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41164', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41164/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41164', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1475/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1475', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1475/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1475', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1475/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1475', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1476/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1476', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1476/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1476', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1476/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1476', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1478/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1478', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1478/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1478', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1478/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1478', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41169/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41169', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41169/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41169', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41169/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41169', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1479/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1479', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1479/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1479', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1479/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1479', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41212/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41212', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41212/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41212', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41212/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41212', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1480/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1480', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1480/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1480', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1480/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1480', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/300/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '300', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/300/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '300', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/300/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '300', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41143/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41143', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41143/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41143', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41143/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41143', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1053/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1053', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1053/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1053', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1053/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1053', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41027/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41027', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41027/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41027', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41027/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41027', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1067/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1067', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1067/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1067', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1067/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1067', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1063/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1063', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1063/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1063', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1063/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1063', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41162/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41162', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41162/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41162', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41162/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41162', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/3/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '3', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/3/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '3', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/3/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '3', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/6/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '6', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/6/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '6', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/6/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '6', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1485/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1485', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1485/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1485', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1485/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1485', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1056/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1056', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1056/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1056', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1056/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1056', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/12/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '12', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/12/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '12', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/12/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '12', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/14/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '14', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/14/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '14', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/14/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '14', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/16/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '16', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/16/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '16', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/16/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '16', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/18/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '18', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/18/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '18', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/18/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '18', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40979/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40979', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40979/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40979', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40979/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40979', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/22/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '22', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/22/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '22', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/22/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '22', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1515/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1515', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1515/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1515', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1515/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1515', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/334/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '334', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/334/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '334', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/334/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '334', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/24/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '24', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/24/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '24', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/24/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '24', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1486/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1486', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1486/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1486', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1486/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1486', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1493/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1493', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1493/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1493', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1493/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1493', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/28/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '28', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/28/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '28', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/28/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '28', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1487/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1487', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1487/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1487', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1487/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1487', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1068/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1068', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1068/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1068', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1068/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1068', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1050/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1050', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1050/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1050', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1050/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1050', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1049/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1049', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1049/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1049', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1049/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1049', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/32/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '32', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/32/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '32', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/32/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '32', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1489/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1489', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1489/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1489', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1489/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1489', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/470/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '470', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/470/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '470', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/470/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '470', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1494/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1494', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1494/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1494', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1494/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1494', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/182/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '182', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/182/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '182', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/182/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '182', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/312/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '312', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/312/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '312', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/312/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '312', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40984/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40984', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40984/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40984', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40984/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40984', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1501/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1501', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1501/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1501', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1501/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1501', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40685/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40685', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40685/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40685', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40685/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40685', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/38/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '38', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/38/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '38', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/38/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '38', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/42/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '42', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/42/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '42', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/42/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '42', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/44/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '44', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/44/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '44', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/44/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '44', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/46/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '46', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/46/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '46', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/46/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '46', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40982/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40982', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40982/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40982', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40982/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40982', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1040/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1040', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1040/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1040', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1040/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1040', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41146/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41146', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41146/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41146', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/41146/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '41146', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/377/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '377', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/377/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '377', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/377/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '377', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40499/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40499', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40499/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40499', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40499/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40499', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/50/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '50', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/50/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '50', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/50/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '50', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/54/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '54', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/54/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '54', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/54/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '54', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/307/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '307', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/307/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '307', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/307/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '307', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1497/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1497', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1497/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1497', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1497/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1497', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/60/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '60', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/60/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '60', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/60/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '60', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1510/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1510', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1510/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1510', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/1510/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1510', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40983/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40983', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40983/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40983', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40983/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40983', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40498/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40498', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40498/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40498', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/40498/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '40498', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/181/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '181', 'budget_type': 'trainsize', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/181/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '181', 'budget_type': 'repl', 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/rbv2_super/181/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '181', 'budget_type': None, 'metric': 'acc'}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_ranger/40981/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_ranger', 'instance': '40981', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_ranger/40981/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_ranger', 'instance': '40981', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_ranger/41146/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_ranger', 'instance': '41146', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_ranger/41146/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_ranger', 'instance': '41146', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_ranger/1489/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_ranger', 'instance': '1489', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_ranger/1489/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_ranger', 'instance': '1489', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_ranger/1067/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_ranger', 'instance': '1067', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_ranger/1067/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_ranger', 'instance': '1067', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_rpart/40981/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_rpart', 'instance': '40981', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_rpart/40981/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_rpart', 'instance': '40981', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_rpart/41146/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_rpart', 'instance': '41146', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_rpart/41146/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_rpart', 'instance': '41146', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_rpart/1489/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_rpart', 'instance': '1489', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_rpart/1489/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_rpart', 'instance': '1489', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_rpart/1067/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_rpart', 'instance': '1067', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_rpart/1067/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_rpart', 'instance': '1067', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 100, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 4, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_glmnet/40981/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_glmnet', 'instance': '40981', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_glmnet/40981/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_glmnet', 'instance': '40981', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_glmnet/41146/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_glmnet', 'instance': '41146', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_glmnet/41146/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_glmnet', 'instance': '41146', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_glmnet/1489/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_glmnet', 'instance': '1489', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_glmnet/1489/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_glmnet', 'instance': '1489', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_glmnet/1067/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_glmnet', 'instance': '1067', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_glmnet/1067/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_glmnet', 'instance': '1067', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_xgboost/40981/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_xgboost', 'instance': '40981', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 165, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 13, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_xgboost/40981/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_xgboost', 'instance': '40981', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 165, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 13, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_xgboost/41146/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_xgboost', 'instance': '41146', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 165, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 13, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_xgboost/41146/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_xgboost', 'instance': '41146', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 165, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 13, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_xgboost/1489/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_xgboost', 'instance': '1489', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 165, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 13, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_xgboost/1489/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_xgboost', 'instance': '1489', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 165, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 13, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_xgboost/1067/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_xgboost', 'instance': '1067', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 165, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 13, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_xgboost/1067/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_xgboost', 'instance': '1067', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 165, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 13, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_super/40981/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_super', 'instance': '40981', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 232, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 28, 'search_space_n_categoricals': 5, 'search_space_n_ordinals': 0, 'search_space_n_integers': 8, 'search_space_n_floats': 15, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_super/40981/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_super', 'instance': '40981', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 232, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 28, 'search_space_n_categoricals': 5, 'search_space_n_ordinals': 0, 'search_space_n_integers': 8, 'search_space_n_floats': 15, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_super/41146/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_super', 'instance': '41146', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 232, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 28, 'search_space_n_categoricals': 5, 'search_space_n_ordinals': 0, 'search_space_n_integers': 8, 'search_space_n_floats': 15, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_super/41146/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_super', 'instance': '41146', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 232, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 28, 'search_space_n_categoricals': 5, 'search_space_n_ordinals': 0, 'search_space_n_integers': 8, 'search_space_n_floats': 15, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_super/1489/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_super', 'instance': '1489', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 232, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 28, 'search_space_n_categoricals': 5, 'search_space_n_ordinals': 0, 'search_space_n_integers': 8, 'search_space_n_floats': 15, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_super/1489/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_super', 'instance': '1489', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 232, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 28, 'search_space_n_categoricals': 5, 'search_space_n_ordinals': 0, 'search_space_n_integers': 8, 'search_space_n_floats': 15, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_super/1067/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_super', 'instance': '1067', 'budget_type': 'trainsize', 'metric': 'f1'}, 'task': {'n_trials': 232, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 28, 'search_space_n_categoricals': 5, 'search_space_n_ordinals': 0, 'search_space_n_integers': 8, 'search_space_n_floats': 15, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/iaml_super/1067/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_super', 'instance': '1067', 'budget_type': None, 'metric': 'f1'}, 'task': {'n_trials': 232, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['quality'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 28, 'search_space_n_categoricals': 5, 'search_space_n_ordinals': 0, 'search_space_n_integers': 8, 'search_space_n_floats': 15, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n" + ] + } + ], + "source": [ + "try:\n", + " from carps.benchmarks.yahpo import YahpoProblem\n", + "except ModuleNotFoundError:\n", + " print(\"YAHPO-Gym is not installed. This means the task information can only be partly retrieved.\")\n", + " YahpoProblem = None\n", + "from carps.utils.task import Task, get_search_space_info\n", + "from dataclasses import asdict\n", + "\n", + "\n", + "\n", + "target_path = base_path / 'YAHPO'\n", + "\n", + "if target_path.is_dir():\n", + " shutil.rmtree(str(target_path))\n", + "target_path_blackbox = target_path / 'blackbox'\n", + "target_path_multifidelity = target_path / 'multifidelity'\n", + "target_path.mkdir(parents=True, exist_ok=True)\n", + "target_path_blackbox.mkdir(parents=True, exist_ok=True)\n", + "target_path_multifidelity.mkdir(parents=True, exist_ok=True)\n", + "\n", + "problem_class = \"carps.benchmarks.yahpo.YahpoProblem\"\n", + "\n", + "time_budget = None\n", + "\n", + "n = 0\n", + "\n", + "for bench, instance_list in COMBIS.items():\n", + " for instance in instance_list:\n", + " for fid_type in FIDELITY_TYPES[bench] + [None]:\n", + "\n", + " if fid_type == 'epoch':\n", + " lower = LOWER['epochs'][bench]\n", + " upper = UPPER['epochs'][bench]\n", + " elif fid_type is None:\n", + " lower = None\n", + " upper = None\n", + " else:\n", + " lower = LOWER[fid_type]\n", + " upper = UPPER[fid_type]\n", + "\n", + " problem_id = f\"yahpo/{bench}/{instance}/{fid_type}\"\n", + "\n", + " search_space_kwargs = dict()\n", + " if YahpoProblem is not None:\n", + " problem = YahpoProblem(bench=bench, instance=instance, budget_type=fid_type, metric=TARGETMETRIC[bench])\n", + " search_space_kwargs = get_search_space_info(configspace=problem.configspace)\n", + "\n", + " task = Task(\n", + " n_trials=get_n_trials(search_space_kwargs[\"dimensions\"]),\n", + " time_budget=None,\n", + " n_workers=1,\n", + " n_objectives=1,\n", + " objectives=[\"quality\"],\n", + " is_multifidelity=False if fid_type is None else True,\n", + " fidelity_type=fid_type,\n", + " min_budget=lower,\n", + " max_budget=upper,\n", + " has_constraints=False,\n", + " domain=\"ML\",\n", + " objective_function_approximation=\"surrogate\",\n", + " has_virtual_time=True,\n", + " deterministic=True,\n", + " **search_space_kwargs\n", + " )\n", + "\n", + " cfg = DictConfig({\n", + " 'benchmark_id': 'YAHPO',\n", + " 'problem_id': problem_id,\n", + " 'problem': {\n", + " '_target_': problem_class,\n", + " 'bench': bench,\n", + " 'instance': instance,\n", + " 'budget_type': fid_type,\n", + " 'metric': TARGETMETRIC[bench],\n", + " },\n", + " 'task': asdict(task),\n", + " })\n", + "\n", + " if fid_type is None:\n", + " fn = target_path_blackbox / f\"cfg_{bench}_{instance}.yaml\"\n", + " else:\n", + " fn = target_path_multifidelity / \"all\" / f\"cfg_{bench}_{instance}_{fid_type}.yaml\"\n", + " fn.parent.mkdir(exist_ok=True, parents=True)\n", + " yaml_str = OmegaConf.to_yaml(cfg=cfg)\n", + " yaml_str = \"# @package _global_\\n\" + yaml_str\n", + " fn.write_text(yaml_str)\n", + " print(cfg)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/lcbench/167168/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167168', 'budget_type': None, 'metric': ['val_accuracy']}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['val_accuracy'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/lcbench/189873/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189873', 'budget_type': None, 'metric': ['val_accuracy']}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['val_accuracy'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/lcbench/189906/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189906', 'budget_type': None, 'metric': ['val_accuracy']}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['val_accuracy'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/nb301/CIFAR10/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'nb301', 'instance': 'CIFAR10', 'budget_type': None, 'metric': ['val_accuracy']}, 'task': {'n_trials': 250, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['val_accuracy'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 34, 'search_space_n_categoricals': 34, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 0, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/rbv2_glmnet/375/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '375', 'budget_type': None, 'metric': ['acc']}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/rbv2_glmnet/458/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '458', 'budget_type': None, 'metric': ['acc']}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/rbv2_ranger/16/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '16', 'budget_type': None, 'metric': ['acc']}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/rbv2_ranger/42/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '42', 'budget_type': None, 'metric': ['acc']}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/rbv2_rpart/14/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '14', 'budget_type': None, 'metric': ['acc']}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/rbv2_rpart/40499/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40499', 'budget_type': None, 'metric': ['acc']}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/rbv2_super/1053/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1053', 'budget_type': None, 'metric': ['acc']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/rbv2_super/1457/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1457', 'budget_type': None, 'metric': ['acc']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/rbv2_super/1063/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1063', 'budget_type': None, 'metric': ['acc']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/rbv2_super/1479/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1479', 'budget_type': None, 'metric': ['acc']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/rbv2_super/15/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '15', 'budget_type': None, 'metric': ['acc']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/rbv2_super/1468/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1468', 'budget_type': None, 'metric': ['acc']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/rbv2_xgboost/12/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '12', 'budget_type': None, 'metric': ['acc']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/rbv2_xgboost/1501/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1501', 'budget_type': None, 'metric': ['acc']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/rbv2_xgboost/16/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '16', 'budget_type': None, 'metric': ['acc']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/so/rbv2_xgboost/40499/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40499', 'budget_type': None, 'metric': ['acc']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/iaml_glmnet/1489/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_glmnet', 'instance': '1489', 'budget_type': None, 'metric': ['mmce', 'nf']}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['mmce', 'nf'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/iaml_glmnet/1067/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_glmnet', 'instance': '1067', 'budget_type': None, 'metric': ['mmce', 'nf']}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['mmce', 'nf'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/iaml_ranger/1489/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_ranger', 'instance': '1489', 'budget_type': None, 'metric': ['mmce', 'nf', 'ias']}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 3, 'objectives': ['mmce', 'nf', 'ias'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/iaml_ranger/1067/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_ranger', 'instance': '1067', 'budget_type': None, 'metric': ['mmce', 'nf', 'ias']}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 3, 'objectives': ['mmce', 'nf', 'ias'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/iaml_super/1489/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_super', 'instance': '1489', 'budget_type': None, 'metric': ['mmce', 'nf', 'ias']}, 'task': {'n_trials': 232, 'time_budget': None, 'n_workers': 1, 'n_objectives': 3, 'objectives': ['mmce', 'nf', 'ias'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 28, 'search_space_n_categoricals': 5, 'search_space_n_ordinals': 0, 'search_space_n_integers': 8, 'search_space_n_floats': 15, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/iaml_super/1067/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_super', 'instance': '1067', 'budget_type': None, 'metric': ['mmce', 'nf', 'ias']}, 'task': {'n_trials': 232, 'time_budget': None, 'n_workers': 1, 'n_objectives': 3, 'objectives': ['mmce', 'nf', 'ias'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 28, 'search_space_n_categoricals': 5, 'search_space_n_ordinals': 0, 'search_space_n_integers': 8, 'search_space_n_floats': 15, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/iaml_xgboost/40981/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_xgboost', 'instance': '40981', 'budget_type': None, 'metric': ['mmce', 'nf', 'ias']}, 'task': {'n_trials': 165, 'time_budget': None, 'n_workers': 1, 'n_objectives': 3, 'objectives': ['mmce', 'nf', 'ias'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 13, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/iaml_xgboost/1489/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_xgboost', 'instance': '1489', 'budget_type': None, 'metric': ['mmce', 'nf', 'ias']}, 'task': {'n_trials': 165, 'time_budget': None, 'n_workers': 1, 'n_objectives': 3, 'objectives': ['mmce', 'nf', 'ias'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 13, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/iaml_xgboost/40981/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_xgboost', 'instance': '40981', 'budget_type': None, 'metric': ['mmce', 'nf', 'ias', 'rammodel']}, 'task': {'n_trials': 165, 'time_budget': None, 'n_workers': 1, 'n_objectives': 4, 'objectives': ['mmce', 'nf', 'ias', 'rammodel'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 13, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/iaml_xgboost/1489/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_xgboost', 'instance': '1489', 'budget_type': None, 'metric': ['mmce', 'nf', 'ias', 'rammodel']}, 'task': {'n_trials': 165, 'time_budget': None, 'n_workers': 1, 'n_objectives': 4, 'objectives': ['mmce', 'nf', 'ias', 'rammodel'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 13, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/lcbench/167152/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167152', 'budget_type': None, 'metric': ['val_accuracy', 'val_cross_entropy']}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['val_accuracy', 'val_cross_entropy'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/lcbench/167185/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167185', 'budget_type': None, 'metric': ['val_accuracy', 'val_cross_entropy']}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['val_accuracy', 'val_cross_entropy'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/lcbench/189873/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189873', 'budget_type': None, 'metric': ['val_accuracy', 'val_cross_entropy']}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['val_accuracy', 'val_cross_entropy'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/rbv2_ranger/6/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '6', 'budget_type': None, 'metric': ['acc', 'memory']}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/rbv2_ranger/40979/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40979', 'budget_type': None, 'metric': ['acc', 'memory']}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/rbv2_ranger/375/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '375', 'budget_type': None, 'metric': ['acc', 'memory']}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/rbv2_rpart/41163/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41163', 'budget_type': None, 'metric': ['acc', 'memory']}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/rbv2_rpart/1476/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1476', 'budget_type': None, 'metric': ['acc', 'memory']}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/rbv2_rpart/40499/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40499', 'budget_type': None, 'metric': ['acc', 'memory']}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/rbv2_super/1457/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1457', 'budget_type': None, 'metric': ['acc', 'memory']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/rbv2_super/6/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '6', 'budget_type': None, 'metric': ['acc', 'memory']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/rbv2_super/1053/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1053', 'budget_type': None, 'metric': ['acc', 'memory']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/rbv2_xgboost/28/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '28', 'budget_type': None, 'metric': ['acc', 'memory']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/rbv2_xgboost/182/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '182', 'budget_type': None, 'metric': ['acc', 'memory']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/mo/rbv2_xgboost/12/None', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '12', 'budget_type': None, 'metric': ['acc', 'memory']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': False, 'fidelity_type': None, 'min_budget': None, 'max_budget': None, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n" + ] + } + ], + "source": [ + "# YAHPO gym Single-objective collection\n", + "yahpo_gym_so_collection = [\n", + " {\"id\": 1, \"scenario\": \"lcbench\", \"instance\": \"167168\", \"target\": \"val_accuracy\", \"rho\": 0.94, \"budget\": 126},\n", + " {\"id\": 2, \"scenario\": \"lcbench\", \"instance\": \"189873\", \"target\": \"val_accuracy\", \"rho\": 0.97, \"budget\": 126},\n", + " {\"id\": 3, \"scenario\": \"lcbench\", \"instance\": \"189906\", \"target\": \"val_accuracy\", \"rho\": 0.97, \"budget\": 126},\n", + " {\"id\": 4, \"scenario\": \"nb301\", \"instance\": \"CIFAR10\", \"target\": \"val_accuracy\", \"rho\": 0.98, \"budget\": 250},\n", + " {\"id\": 5, \"scenario\": \"rbv2_glmnet\", \"instance\": \"375\", \"target\": \"acc\", \"rho\": 0.80, \"budget\": 90},\n", + " {\"id\": 6, \"scenario\": \"rbv2_glmnet\", \"instance\": \"458\", \"target\": \"acc\", \"rho\": 0.85, \"budget\": 90},\n", + " {\"id\": 7, \"scenario\": \"rbv2_ranger\", \"instance\": \"16\", \"target\": \"acc\", \"rho\": 0.93, \"budget\": 134},\n", + " {\"id\": 8, \"scenario\": \"rbv2_ranger\", \"instance\": \"42\", \"target\": \"acc\", \"rho\": 0.98, \"budget\": 134},\n", + " {\"id\": 9, \"scenario\": \"rbv2_rpart\", \"instance\": \"14\", \"target\": \"acc\", \"rho\": 0.92, \"budget\": 110},\n", + " {\"id\": 10, \"scenario\": \"rbv2_rpart\", \"instance\": \"40499\", \"target\": \"acc\", \"rho\": 0.97, \"budget\": 110},\n", + " {\"id\": 11, \"scenario\": \"rbv2_super\", \"instance\": \"1053\", \"target\": \"acc\", \"rho\": 0.31, \"budget\": 267},\n", + " {\"id\": 12, \"scenario\": \"rbv2_super\", \"instance\": \"1457\", \"target\": \"acc\", \"rho\": 0.70, \"budget\": 267},\n", + " {\"id\": 13, \"scenario\": \"rbv2_super\", \"instance\": \"1063\", \"target\": \"acc\", \"rho\": 0.57, \"budget\": 267},\n", + " {\"id\": 14, \"scenario\": \"rbv2_super\", \"instance\": \"1479\", \"target\": \"acc\", \"rho\": 0.36, \"budget\": 267},\n", + " {\"id\": 15, \"scenario\": \"rbv2_super\", \"instance\": \"15\", \"target\": \"acc\", \"rho\": 0.75, \"budget\": 267},\n", + " {\"id\": 16, \"scenario\": \"rbv2_super\", \"instance\": \"1468\", \"target\": \"acc\", \"rho\": 0.77, \"budget\": 267},\n", + " {\"id\": 17, \"scenario\": \"rbv2_xgboost\", \"instance\": \"12\", \"target\": \"acc\", \"rho\": 0.93, \"budget\": 170},\n", + " {\"id\": 18, \"scenario\": \"rbv2_xgboost\", \"instance\": \"1501\", \"target\": \"acc\", \"rho\": 0.89, \"budget\": 170},\n", + " {\"id\": 19, \"scenario\": \"rbv2_xgboost\", \"instance\": \"16\", \"target\": \"acc\", \"rho\": 0.91, \"budget\": 170},\n", + " {\"id\": 20, \"scenario\": \"rbv2_xgboost\", \"instance\": \"40499\", \"target\": \"acc\", \"rho\": 0.96, \"budget\": 170},\n", + "]\n", + "target_path_soc = target_path / \"SO\"\n", + "\n", + "# YAHPO Gym multi-objective\n", + "yahpo_gym_mo_collection = [\n", + " {\"id\": 1, \"scenario\": \"iaml_glmnet\", \"instance\": \"1489\", \"target\": [\"mmce\", \"nf\"], \"rho\": 0.86, \"budget\": 77},\n", + " {\"id\": 2, \"scenario\": \"iaml_glmnet\", \"instance\": \"1067\", \"target\": [\"mmce\", \"nf\"], \"rho\": 0.73, \"budget\": 77},\n", + " {\"id\": 3, \"scenario\": \"iaml_ranger\", \"instance\": \"1489\", \"target\": [\"mmce\", \"nf\", \"ias\"], \"rho\": 0.93, \"budget\": 134},\n", + " {\"id\": 4, \"scenario\": \"iaml_ranger\", \"instance\": \"1067\", \"target\": [\"mmce\", \"nf\", \"ias\"], \"rho\": 0.92, \"budget\": 134},\n", + " {\"id\": 5, \"scenario\": \"iaml_super\", \"instance\": \"1489\", \"target\": [\"mmce\", \"nf\", \"ias\"], \"rho\": 0.82, \"budget\": 232},\n", + " {\"id\": 6, \"scenario\": \"iaml_super\", \"instance\": \"1067\", \"target\": [\"mmce\", \"nf\", \"ias\"], \"rho\": 0.82, \"budget\": 232},\n", + " {\"id\": 7, \"scenario\": \"iaml_xgboost\", \"instance\": \"40981\", \"target\": [\"mmce\", \"nf\", \"ias\"], \"rho\": 0.88, \"budget\": 165},\n", + " {\"id\": 8, \"scenario\": \"iaml_xgboost\", \"instance\": \"1489\", \"target\": [\"mmce\", \"nf\", \"ias\"], \"rho\": 0.92, \"budget\": 165},\n", + " {\"id\": 9, \"scenario\": \"iaml_xgboost\", \"instance\": \"40981\", \"target\": [\"mmce\", \"nf\", \"ias\", \"rammodel\"], \"rho\": 0.89, \"budget\": 165},\n", + " {\"id\": 10, \"scenario\": \"iaml_xgboost\", \"instance\": \"1489\", \"target\": [\"mmce\", \"nf\", \"ias\", \"rammodel\"], \"rho\": 0.92, \"budget\": 165},\n", + " {\"id\": 11, \"scenario\": \"lcbench\", \"instance\": \"167152\", \"target\": [\"val_accuracy\", \"val_cross_entropy\"], \"rho\": 0.98, \"budget\": 126},\n", + " {\"id\": 12, \"scenario\": \"lcbench\", \"instance\": \"167185\", \"target\": [\"val_accuracy\", \"val_cross_entropy\"], \"rho\": 0.91, \"budget\": 126},\n", + " {\"id\": 13, \"scenario\": \"lcbench\", \"instance\": \"189873\", \"target\": [\"val_accuracy\", \"val_cross_entropy\"], \"rho\": 0.93, \"budget\": 126},\n", + " {\"id\": 14, \"scenario\": \"rbv2_ranger\", \"instance\": \"6\", \"target\": [\"acc\", \"memory\"], \"rho\": 0.90, \"budget\": 134},\n", + " {\"id\": 15, \"scenario\": \"rbv2_ranger\", \"instance\": \"40979\", \"target\": [\"acc\", \"memory\"], \"rho\": 0.73, \"budget\": 134},\n", + " {\"id\": 16, \"scenario\": \"rbv2_ranger\", \"instance\": \"375\", \"target\": [\"acc\", \"memory\"], \"rho\": 0.85, \"budget\": 134},\n", + " {\"id\": 17, \"scenario\": \"rbv2_rpart\", \"instance\": \"41163\", \"target\": [\"acc\", \"memory\"], \"rho\": 0.85, \"budget\": 110},\n", + " {\"id\": 18, \"scenario\": \"rbv2_rpart\", \"instance\": \"1476\", \"target\": [\"acc\", \"memory\"], \"rho\": 0.80, \"budget\": 110},\n", + " {\"id\": 19, \"scenario\": \"rbv2_rpart\", \"instance\": \"40499\", \"target\": [\"acc\", \"memory\"], \"rho\": 0.83, \"budget\": 110},\n", + " {\"id\": 20, \"scenario\": \"rbv2_super\", \"instance\": \"1457\", \"target\": [\"acc\", \"memory\"], \"rho\": 0.66, \"budget\": 267},\n", + " {\"id\": 21, \"scenario\": \"rbv2_super\", \"instance\": \"6\", \"target\": [\"acc\", \"memory\"], \"rho\": 0.68, \"budget\": 267},\n", + " {\"id\": 22, \"scenario\": \"rbv2_super\", \"instance\": \"1053\", \"target\": [\"acc\", \"memory\"], \"rho\": 0.45, \"budget\": 267},\n", + " {\"id\": 23, \"scenario\": \"rbv2_xgboost\", \"instance\": \"28\", \"target\": [\"acc\", \"memory\"], \"rho\": 0.80, \"budget\": 170},\n", + " {\"id\": 24, \"scenario\": \"rbv2_xgboost\", \"instance\": \"182\", \"target\": [\"acc\", \"memory\"], \"rho\": 0.79, \"budget\": 170},\n", + " {\"id\": 25, \"scenario\": \"rbv2_xgboost\", \"instance\": \"12\", \"target\": [\"acc\", \"memory\"], \"rho\": 0.76, \"budget\": 170},\n", + "]\n", + "target_path_moc = target_path / \"MO\"\n", + "\n", + "\n", + "\n", + "for _target_path, collection, identifier in zip(\n", + " [target_path_soc, target_path_moc], \n", + " [yahpo_gym_so_collection, yahpo_gym_mo_collection],\n", + " [\"so\", \"mo\"]\n", + "):\n", + " for I in collection:\n", + " fid_type = None\n", + " bench = I[\"scenario\"]\n", + " instance = I[\"instance\"]\n", + " budget = I[\"budget\"]\n", + " metric = I[\"target\"]\n", + " if not isinstance(metric, list):\n", + " metric = [metric]\n", + "\n", + "\n", + " if fid_type == 'epoch':\n", + " lower = LOWER['epochs'][bench]\n", + " upper = UPPER['epochs'][bench]\n", + " elif fid_type is None:\n", + " lower = None\n", + " upper = None\n", + " else:\n", + " lower = LOWER[fid_type]\n", + " upper = UPPER[fid_type]\n", + "\n", + " problem_id = f\"yahpo/{identifier}/{bench}/{instance}/{fid_type}\"\n", + "\n", + " search_space_kwargs = dict()\n", + " if YahpoProblem is not None:\n", + " problem = YahpoProblem(bench=bench, instance=instance, budget_type=fid_type, metric=TARGETMETRIC[bench])\n", + " search_space_kwargs = get_search_space_info(configspace=problem.configspace)\n", + "\n", + " task = Task(\n", + " n_trials=budget,\n", + " time_budget=None,\n", + " n_workers=1,\n", + " n_objectives=len(metric),\n", + " objectives=metric,\n", + " is_multifidelity=False if fid_type is None else True,\n", + " fidelity_type=fid_type,\n", + " min_budget=lower,\n", + " max_budget=upper,\n", + " has_constraints=False,\n", + " domain=\"ML\",\n", + " objective_function_approximation=\"surrogate\",\n", + " has_virtual_time=True,\n", + " deterministic=True,\n", + " **search_space_kwargs\n", + " )\n", + "\n", + " cfg = DictConfig({\n", + " 'benchmark_id': 'YAHPO',\n", + " 'problem_id': problem_id,\n", + " 'problem': {\n", + " '_target_': problem_class,\n", + " 'bench': bench,\n", + " 'instance': instance,\n", + " 'budget_type': fid_type,\n", + " 'metric': metric,\n", + " },\n", + " 'task': asdict(task)\n", + " })\n", + "\n", + " fn = _target_path / f\"cfg_{bench}_{instance}.yaml\"\n", + " fn.parent.mkdir(exist_ok=True, parents=True)\n", + " yaml_str = OmegaConf.to_yaml(cfg=cfg)\n", + " yaml_str = \"# @package _global_\\n\" + yaml_str\n", + " fn.write_text(yaml_str)\n", + " print(cfg)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/epoch/lcbench/167168/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167168', 'budget_type': 'epoch', 'metric': ['val_accuracy']}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['val_accuracy'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/epoch/lcbench/189873/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189873', 'budget_type': 'epoch', 'metric': ['val_accuracy']}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['val_accuracy'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/epoch/lcbench/189906/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189906', 'budget_type': 'epoch', 'metric': ['val_accuracy']}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['val_accuracy'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/epoch/nb301/CIFAR10/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'nb301', 'instance': 'CIFAR10', 'budget_type': 'epoch', 'metric': ['val_accuracy']}, 'task': {'n_trials': 250, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['val_accuracy'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 98, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 34, 'search_space_n_categoricals': 34, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 0, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/trainsize/rbv2_glmnet/375/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '375', 'budget_type': 'trainsize', 'metric': ['acc']}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/repl/rbv2_glmnet/375/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '375', 'budget_type': 'repl', 'metric': ['acc']}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/trainsize/rbv2_glmnet/458/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '458', 'budget_type': 'trainsize', 'metric': ['acc']}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/repl/rbv2_glmnet/458/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_glmnet', 'instance': '458', 'budget_type': 'repl', 'metric': ['acc']}, 'task': {'n_trials': 90, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 3, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/trainsize/rbv2_ranger/16/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '16', 'budget_type': 'trainsize', 'metric': ['acc']}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/repl/rbv2_ranger/16/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '16', 'budget_type': 'repl', 'metric': ['acc']}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/trainsize/rbv2_ranger/42/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '42', 'budget_type': 'trainsize', 'metric': ['acc']}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/repl/rbv2_ranger/42/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '42', 'budget_type': 'repl', 'metric': ['acc']}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/trainsize/rbv2_rpart/14/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '14', 'budget_type': 'trainsize', 'metric': ['acc']}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/repl/rbv2_rpart/14/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '14', 'budget_type': 'repl', 'metric': ['acc']}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/trainsize/rbv2_rpart/40499/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40499', 'budget_type': 'trainsize', 'metric': ['acc']}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/repl/rbv2_rpart/40499/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40499', 'budget_type': 'repl', 'metric': ['acc']}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/trainsize/rbv2_super/1053/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1053', 'budget_type': 'trainsize', 'metric': ['acc']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/repl/rbv2_super/1053/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1053', 'budget_type': 'repl', 'metric': ['acc']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/trainsize/rbv2_super/1457/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1457', 'budget_type': 'trainsize', 'metric': ['acc']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/repl/rbv2_super/1457/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1457', 'budget_type': 'repl', 'metric': ['acc']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/trainsize/rbv2_super/1063/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1063', 'budget_type': 'trainsize', 'metric': ['acc']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/repl/rbv2_super/1063/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1063', 'budget_type': 'repl', 'metric': ['acc']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/trainsize/rbv2_super/1479/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1479', 'budget_type': 'trainsize', 'metric': ['acc']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/repl/rbv2_super/1479/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1479', 'budget_type': 'repl', 'metric': ['acc']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/trainsize/rbv2_super/15/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '15', 'budget_type': 'trainsize', 'metric': ['acc']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/repl/rbv2_super/15/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '15', 'budget_type': 'repl', 'metric': ['acc']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/trainsize/rbv2_super/1468/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1468', 'budget_type': 'trainsize', 'metric': ['acc']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/repl/rbv2_super/1468/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1468', 'budget_type': 'repl', 'metric': ['acc']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/trainsize/rbv2_xgboost/12/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '12', 'budget_type': 'trainsize', 'metric': ['acc']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/repl/rbv2_xgboost/12/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '12', 'budget_type': 'repl', 'metric': ['acc']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/trainsize/rbv2_xgboost/1501/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1501', 'budget_type': 'trainsize', 'metric': ['acc']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/repl/rbv2_xgboost/1501/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '1501', 'budget_type': 'repl', 'metric': ['acc']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/trainsize/rbv2_xgboost/16/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '16', 'budget_type': 'trainsize', 'metric': ['acc']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/repl/rbv2_xgboost/16/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '16', 'budget_type': 'repl', 'metric': ['acc']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/trainsize/rbv2_xgboost/40499/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40499', 'budget_type': 'trainsize', 'metric': ['acc']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/multifidelity/so/repl/rbv2_xgboost/40499/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '40499', 'budget_type': 'repl', 'metric': ['acc']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 1, 'objectives': ['acc'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n" + ] + } + ], + "source": [ + "target_path_mf_soc = base_path / \"YAHPO\" / \"multifidelity\" / \"SO\"\n", + "\n", + "for I in yahpo_gym_so_collection:\n", + " for fid_type in FIDELITY_TYPES[I[\"scenario\"]]:\n", + " bench = I[\"scenario\"]\n", + " instance = I[\"instance\"]\n", + " budget = I[\"budget\"]\n", + " metric = I[\"target\"]\n", + " if not isinstance(metric, list):\n", + " metric = [metric]\n", + "\n", + " if fid_type == \"epoch\":\n", + " lower = LOWER[\"epochs\"][bench]\n", + " upper = UPPER[\"epochs\"][bench]\n", + " else:\n", + " lower = LOWER[fid_type]\n", + " upper = UPPER[fid_type]\n", + "\n", + " problem_id = f\"yahpo/multifidelity/so/{fid_type}/{bench}/{instance}/{fid_type}\"\n", + " problem_class = \"carps.benchmarks.yahpo.YahpoProblem\"\n", + "\n", + " search_space_kwargs = dict()\n", + " if YahpoProblem is not None:\n", + " problem = YahpoProblem(bench=bench, instance=instance, budget_type=fid_type, metric=TARGETMETRIC[bench])\n", + " search_space_kwargs = get_search_space_info(configspace=problem.configspace)\n", + "\n", + " task = Task(\n", + " n_trials=budget,\n", + " time_budget=None,\n", + " n_workers=1,\n", + " n_objectives=len(metric),\n", + " objectives=metric,\n", + " is_multifidelity=False if fid_type is None else True,\n", + " fidelity_type=fid_type,\n", + " min_budget=lower,\n", + " max_budget=upper,\n", + " has_constraints=False,\n", + " domain=\"ML\",\n", + " objective_function_approximation=\"surrogate\",\n", + " has_virtual_time=True,\n", + " deterministic=True,\n", + " **search_space_kwargs\n", + " )\n", + "\n", + " cfg = DictConfig({\n", + " 'benchmark_id': 'YAHPO',\n", + " 'problem_id': problem_id,\n", + " 'problem': {\n", + " '_target_': problem_class,\n", + " 'bench': bench,\n", + " 'instance': instance,\n", + " 'budget_type': fid_type,\n", + " 'metric': metric\n", + " },\n", + " 'task': asdict(task)\n", + " })\n", + "\n", + " budget_type_path = target_path_mf_soc #/ fid_type\n", + "\n", + " fn = budget_type_path / f\"cfg_{bench}_{instance}_{fid_type}_mf.yaml\"\n", + " fn.parent.mkdir(exist_ok=True, parents=True)\n", + " yaml_str = OmegaConf.to_yaml(cfg=cfg)\n", + " yaml_str = \"# @package _global_\\n\" + yaml_str\n", + " fn.write_text(yaml_str)\n", + " print(cfg)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# YAHPO-MFMO" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/iaml_glmnet/1489/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_glmnet', 'instance': '1489', 'budget_type': 'trainsize', 'metric': ['mmce', 'nf']}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['mmce', 'nf'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/iaml_glmnet/1067/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_glmnet', 'instance': '1067', 'budget_type': 'trainsize', 'metric': ['mmce', 'nf']}, 'task': {'n_trials': 77, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['mmce', 'nf'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 2, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 0, 'search_space_n_floats': 2, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/iaml_ranger/1489/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_ranger', 'instance': '1489', 'budget_type': 'trainsize', 'metric': ['mmce', 'nf', 'ias']}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 3, 'objectives': ['mmce', 'nf', 'ias'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/iaml_ranger/1067/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_ranger', 'instance': '1067', 'budget_type': 'trainsize', 'metric': ['mmce', 'nf', 'ias']}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 3, 'objectives': ['mmce', 'nf', 'ias'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/iaml_super/1489/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_super', 'instance': '1489', 'budget_type': 'trainsize', 'metric': ['mmce', 'nf', 'ias']}, 'task': {'n_trials': 232, 'time_budget': None, 'n_workers': 1, 'n_objectives': 3, 'objectives': ['mmce', 'nf', 'ias'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 28, 'search_space_n_categoricals': 5, 'search_space_n_ordinals': 0, 'search_space_n_integers': 8, 'search_space_n_floats': 15, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/iaml_super/1067/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_super', 'instance': '1067', 'budget_type': 'trainsize', 'metric': ['mmce', 'nf', 'ias']}, 'task': {'n_trials': 232, 'time_budget': None, 'n_workers': 1, 'n_objectives': 3, 'objectives': ['mmce', 'nf', 'ias'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 28, 'search_space_n_categoricals': 5, 'search_space_n_ordinals': 0, 'search_space_n_integers': 8, 'search_space_n_floats': 15, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/iaml_xgboost/40981/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_xgboost', 'instance': '40981', 'budget_type': 'trainsize', 'metric': ['mmce', 'nf', 'ias']}, 'task': {'n_trials': 165, 'time_budget': None, 'n_workers': 1, 'n_objectives': 3, 'objectives': ['mmce', 'nf', 'ias'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 13, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/iaml_xgboost/1489/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_xgboost', 'instance': '1489', 'budget_type': 'trainsize', 'metric': ['mmce', 'nf', 'ias']}, 'task': {'n_trials': 165, 'time_budget': None, 'n_workers': 1, 'n_objectives': 3, 'objectives': ['mmce', 'nf', 'ias'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 13, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/iaml_xgboost/40981/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_xgboost', 'instance': '40981', 'budget_type': 'trainsize', 'metric': ['mmce', 'nf', 'ias', 'rammodel']}, 'task': {'n_trials': 165, 'time_budget': None, 'n_workers': 1, 'n_objectives': 4, 'objectives': ['mmce', 'nf', 'ias', 'rammodel'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 13, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/iaml_xgboost/1489/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'iaml_xgboost', 'instance': '1489', 'budget_type': 'trainsize', 'metric': ['mmce', 'nf', 'ias', 'rammodel']}, 'task': {'n_trials': 165, 'time_budget': None, 'n_workers': 1, 'n_objectives': 4, 'objectives': ['mmce', 'nf', 'ias', 'rammodel'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 13, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/epoch/lcbench/167152/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167152', 'budget_type': 'epoch', 'metric': ['val_accuracy', 'val_cross_entropy']}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['val_accuracy', 'val_cross_entropy'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/epoch/lcbench/167185/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '167185', 'budget_type': 'epoch', 'metric': ['val_accuracy', 'val_cross_entropy']}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['val_accuracy', 'val_cross_entropy'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/epoch/lcbench/189873/epoch', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'lcbench', 'instance': '189873', 'budget_type': 'epoch', 'metric': ['val_accuracy', 'val_cross_entropy']}, 'task': {'n_trials': 126, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['val_accuracy', 'val_cross_entropy'], 'is_multifidelity': True, 'fidelity_type': 'epoch', 'min_budget': 1, 'max_budget': 52, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 7, 'search_space_n_categoricals': 0, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 4, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/rbv2_ranger/6/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '6', 'budget_type': 'trainsize', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/repl/rbv2_ranger/6/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '6', 'budget_type': 'repl', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/rbv2_ranger/40979/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40979', 'budget_type': 'trainsize', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/repl/rbv2_ranger/40979/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '40979', 'budget_type': 'repl', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/rbv2_ranger/375/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '375', 'budget_type': 'trainsize', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/repl/rbv2_ranger/375/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_ranger', 'instance': '375', 'budget_type': 'repl', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 134, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 8, 'search_space_n_categoricals': 3, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 2, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/rbv2_rpart/41163/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41163', 'budget_type': 'trainsize', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/repl/rbv2_rpart/41163/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '41163', 'budget_type': 'repl', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/rbv2_rpart/1476/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1476', 'budget_type': 'trainsize', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/repl/rbv2_rpart/1476/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '1476', 'budget_type': 'repl', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/rbv2_rpart/40499/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40499', 'budget_type': 'trainsize', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/repl/rbv2_rpart/40499/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_rpart', 'instance': '40499', 'budget_type': 'repl', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 110, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 5, 'search_space_n_categoricals': 1, 'search_space_n_ordinals': 0, 'search_space_n_integers': 3, 'search_space_n_floats': 1, 'search_space_has_conditionals': False, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/rbv2_super/1457/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1457', 'budget_type': 'trainsize', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/repl/rbv2_super/1457/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1457', 'budget_type': 'repl', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/rbv2_super/6/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '6', 'budget_type': 'trainsize', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/repl/rbv2_super/6/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '6', 'budget_type': 'repl', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/rbv2_super/1053/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1053', 'budget_type': 'trainsize', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/repl/rbv2_super/1053/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_super', 'instance': '1053', 'budget_type': 'repl', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 267, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 38, 'search_space_n_categoricals': 7, 'search_space_n_ordinals': 0, 'search_space_n_integers': 13, 'search_space_n_floats': 18, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/rbv2_xgboost/28/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '28', 'budget_type': 'trainsize', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/repl/rbv2_xgboost/28/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '28', 'budget_type': 'repl', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/rbv2_xgboost/182/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '182', 'budget_type': 'trainsize', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/repl/rbv2_xgboost/182/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '182', 'budget_type': 'repl', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/trainsize/rbv2_xgboost/12/trainsize', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '12', 'budget_type': 'trainsize', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'trainsize', 'min_budget': 0.03, 'max_budget': 1.0, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n", + "{'benchmark_id': 'YAHPO', 'problem_id': 'yahpo/MOMF/repl/rbv2_xgboost/12/repl', 'problem': {'_target_': 'carps.benchmarks.yahpo.YahpoProblem', 'bench': 'rbv2_xgboost', 'instance': '12', 'budget_type': 'repl', 'metric': ['acc', 'memory']}, 'task': {'n_trials': 170, 'time_budget': None, 'n_workers': 1, 'n_objectives': 2, 'objectives': ['acc', 'memory'], 'is_multifidelity': True, 'fidelity_type': 'repl', 'min_budget': 1, 'max_budget': 10, 'has_constraints': False, 'domain': 'ML', 'objective_function_approximation': 'surrogate', 'has_virtual_time': True, 'deterministic': True, 'dimensions': 14, 'search_space_n_categoricals': 2, 'search_space_n_ordinals': 0, 'search_space_n_integers': 2, 'search_space_n_floats': 10, 'search_space_has_conditionals': True, 'search_space_has_forbiddens': False, 'search_space_has_priors': False}}\n" + ] + } + ], + "source": [ + "# YAHPO Gym multi-fidelity Multi-objective collection\n", + "from typing import List\n", + "yahpo_gym_mfmo_collection = yahpo_gym_mo_collection\n", + "target_path_mfmo = target_path / \"MOMF\"\n", + "\n", + "for I in yahpo_gym_mfmo_collection:\n", + " for fid_type in FIDELITY_TYPES[I[\"scenario\"]]:\n", + " bench = I[\"scenario\"]\n", + " instance = I[\"instance\"]\n", + " budget = I[\"budget\"]\n", + " metric = I[\"target\"]\n", + " if not isinstance(metric, List):\n", + " metric = [metric]\n", + "\n", + " if fid_type == \"epoch\":\n", + " lower = LOWER[\"epochs\"][bench]\n", + " upper = UPPER[\"epochs\"][bench]\n", + " else:\n", + " lower = LOWER[fid_type]\n", + " upper = UPPER[fid_type]\n", + "\n", + " problem_id = f\"yahpo/MOMF/{fid_type}/{bench}/{instance}/{fid_type}\"\n", + " problem_class = \"carps.benchmarks.yahpo.YahpoProblem\"\n", + "\n", + " search_space_kwargs = dict()\n", + " if YahpoProblem is not None:\n", + " problem = YahpoProblem(bench=bench, instance=instance, budget_type=fid_type, metric=metric)\n", + " search_space_kwargs = get_search_space_info(configspace=problem.configspace)\n", + "\n", + " task = Task(\n", + " n_trials=budget,\n", + " time_budget=None,\n", + " n_workers=1,\n", + " n_objectives=len(metric),\n", + " objectives=metric,\n", + " is_multifidelity=False if fid_type is None else True,\n", + " fidelity_type=fid_type,\n", + " min_budget=lower,\n", + " max_budget=upper,\n", + " has_constraints=False,\n", + " domain=\"ML\",\n", + " objective_function_approximation=\"surrogate\",\n", + " has_virtual_time=True,\n", + " deterministic=True,\n", + " **search_space_kwargs\n", + " )\n", + "\n", + " cfg = DictConfig({\n", + " 'benchmark_id': 'YAHPO',\n", + " 'problem_id': problem_id,\n", + " 'problem': {\n", + " '_target_': problem_class,\n", + " 'bench': bench,\n", + " 'instance': instance,\n", + " 'budget_type': fid_type,\n", + " 'metric': metric\n", + " },\n", + " 'task': asdict(task)\n", + " })\n", + "\n", + " budget_type_path = target_path_mfmo #/ fid_type\n", + "\n", + " fn = budget_type_path / f\"cfg_{bench}_{instance}_{fid_type}_mf.yaml\"\n", + " fn.parent.mkdir(exist_ok=True, parents=True)\n", + " yaml_str = OmegaConf.to_yaml(cfg=cfg)\n", + " yaml_str = \"# @package _global_\\n\" + yaml_str\n", + " fn.write_text(yaml_str)\n", + " print(cfg)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# MFPBench" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "carps/configs/problem/MFPBench/SO/pd1/translatewmt_xformer_64.yaml\n" + ] + }, + { + "ename": "InstantiationException", + "evalue": "Error locating target 'carps.benchmarks.mfpbench.MFPBenchProblem', set env var HYDRA_FULL_ERROR=1 to see chained exception.\nfull_key: problem", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m/scratch/hpc-prf-intexml/cbenjamins/.conda/envs/carps_HPOBench_SMAC3-1.4/lib/python3.9/site-packages/hydra/_internal/utils.py:644\u001b[0m, in \u001b[0;36m_locate\u001b[0;34m(path)\u001b[0m\n\u001b[1;32m 643\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 644\u001b[0m obj \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mgetattr\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43mobj\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mpart\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 645\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mAttributeError\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m exc_attr:\n", + "\u001b[0;31mAttributeError\u001b[0m: module 'carps.benchmarks' has no attribute 'mfpbench'", + "\nDuring handling of the above exception, another exception occurred:\n", + "\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m/scratch/hpc-prf-intexml/cbenjamins/.conda/envs/carps_HPOBench_SMAC3-1.4/lib/python3.9/site-packages/hydra/_internal/utils.py:650\u001b[0m, in \u001b[0;36m_locate\u001b[0;34m(path)\u001b[0m\n\u001b[1;32m 649\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 650\u001b[0m obj \u001b[38;5;241m=\u001b[39m \u001b[43mimport_module\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmod\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 651\u001b[0m \u001b[38;5;28;01mcontinue\u001b[39;00m\n", + "File \u001b[0;32m/scratch/hpc-prf-intexml/cbenjamins/.conda/envs/carps_HPOBench_SMAC3-1.4/lib/python3.9/importlib/__init__.py:127\u001b[0m, in \u001b[0;36mimport_module\u001b[0;34m(name, package)\u001b[0m\n\u001b[1;32m 126\u001b[0m level \u001b[38;5;241m+\u001b[39m\u001b[38;5;241m=\u001b[39m \u001b[38;5;241m1\u001b[39m\n\u001b[0;32m--> 127\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43m_bootstrap\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_gcd_import\u001b[49m\u001b[43m(\u001b[49m\u001b[43mname\u001b[49m\u001b[43m[\u001b[49m\u001b[43mlevel\u001b[49m\u001b[43m:\u001b[49m\u001b[43m]\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mpackage\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mlevel\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m:1030\u001b[0m, in \u001b[0;36m_gcd_import\u001b[0;34m(name, package, level)\u001b[0m\n", + "File \u001b[0;32m:1007\u001b[0m, in \u001b[0;36m_find_and_load\u001b[0;34m(name, import_)\u001b[0m\n", + "File \u001b[0;32m:986\u001b[0m, in \u001b[0;36m_find_and_load_unlocked\u001b[0;34m(name, import_)\u001b[0m\n", + "File \u001b[0;32m:680\u001b[0m, in \u001b[0;36m_load_unlocked\u001b[0;34m(spec)\u001b[0m\n", + "File \u001b[0;32m:850\u001b[0m, in \u001b[0;36mexec_module\u001b[0;34m(self, module)\u001b[0m\n", + "File \u001b[0;32m:228\u001b[0m, in \u001b[0;36m_call_with_frames_removed\u001b[0;34m(f, *args, **kwds)\u001b[0m\n", + "File \u001b[0;32m/scratch/hpc-prf-intexml/cbenjamins/repos/CARP-S-Experiments/lib/CARP-S/carps/benchmarks/mfpbench.py:25\u001b[0m\n\u001b[1;32m 23\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mtyping\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m Any, Mapping, Optional, TypeVar\n\u001b[0;32m---> 25\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mmfpbench\u001b[39;00m\n\u001b[1;32m 26\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mConfigSpace\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m ConfigurationSpace\n", + "\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'mfpbench'", + "\nThe above exception was the direct cause of the following exception:\n", + "\u001b[0;31mImportError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m/scratch/hpc-prf-intexml/cbenjamins/.conda/envs/carps_HPOBench_SMAC3-1.4/lib/python3.9/site-packages/hydra/_internal/instantiate/_instantiate2.py:134\u001b[0m, in \u001b[0;36m_resolve_target\u001b[0;34m(target, full_key)\u001b[0m\n\u001b[1;32m 133\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 134\u001b[0m target \u001b[38;5;241m=\u001b[39m \u001b[43m_locate\u001b[49m\u001b[43m(\u001b[49m\u001b[43mtarget\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 135\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n", + "File \u001b[0;32m/scratch/hpc-prf-intexml/cbenjamins/.conda/envs/carps_HPOBench_SMAC3-1.4/lib/python3.9/site-packages/hydra/_internal/utils.py:653\u001b[0m, in \u001b[0;36m_locate\u001b[0;34m(path)\u001b[0m\n\u001b[1;32m 652\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mModuleNotFoundError\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m exc_import:\n\u001b[0;32m--> 653\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mImportError\u001b[39;00m(\n\u001b[1;32m 654\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mError loading \u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mpath\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m:\u001b[39m\u001b[38;5;130;01m\\n\u001b[39;00m\u001b[38;5;132;01m{\u001b[39;00m\u001b[38;5;28mrepr\u001b[39m(exc_import)\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 655\u001b[0m \u001b[38;5;241m+\u001b[39m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;130;01m\\n\u001b[39;00m\u001b[38;5;124mAre you sure that \u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mpart\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m is importable from module \u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mparent_dotpath\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m?\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 656\u001b[0m ) \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mexc_import\u001b[39;00m\n\u001b[1;32m 657\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m exc_import:\n", + "\u001b[0;31mImportError\u001b[0m: Error loading 'carps.benchmarks.mfpbench.MFPBenchProblem':\nModuleNotFoundError(\"No module named 'mfpbench'\")\nAre you sure that 'mfpbench' is importable from module 'carps.benchmarks'?", + "\nThe above exception was the direct cause of the following exception:\n", + "\u001b[0;31mInstantiationException\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[11], line 33\u001b[0m\n\u001b[1;32m 31\u001b[0m cfg \u001b[38;5;241m=\u001b[39m OmegaConf\u001b[38;5;241m.\u001b[39mload(config_fn)\n\u001b[1;32m 32\u001b[0m task_dict \u001b[38;5;241m=\u001b[39m {k: cfg\u001b[38;5;241m.\u001b[39mtask\u001b[38;5;241m.\u001b[39mget(k) \u001b[38;5;28;01mfor\u001b[39;00m k \u001b[38;5;129;01min\u001b[39;00m specified_keys}\n\u001b[0;32m---> 33\u001b[0m problem \u001b[38;5;241m=\u001b[39m \u001b[43mmake_problem\u001b[49m\u001b[43m(\u001b[49m\u001b[43mcfg\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcfg\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 34\u001b[0m search_space_kwargs \u001b[38;5;241m=\u001b[39m get_search_space_info(configspace\u001b[38;5;241m=\u001b[39mproblem\u001b[38;5;241m.\u001b[39mconfigspace)\n\u001b[1;32m 35\u001b[0m task_dict\u001b[38;5;241m.\u001b[39mupdate(\u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39msearch_space_kwargs)\n", + "File \u001b[0;32m/scratch/hpc-prf-intexml/cbenjamins/repos/CARP-S-Experiments/lib/CARP-S/carps/utils/running.py:44\u001b[0m, in \u001b[0;36mmake_problem\u001b[0;34m(cfg, result_processor)\u001b[0m\n\u001b[1;32m 42\u001b[0m logger \u001b[38;5;241m=\u001b[39m instantiate(logger)(\u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[1;32m 43\u001b[0m loggers\u001b[38;5;241m.\u001b[39mappend(logger)\n\u001b[0;32m---> 44\u001b[0m problem \u001b[38;5;241m=\u001b[39m \u001b[43minstantiate\u001b[49m\u001b[43m(\u001b[49m\u001b[43mproblem_cfg\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mloggers\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mloggers\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 45\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m problem\n", + "File \u001b[0;32m/scratch/hpc-prf-intexml/cbenjamins/.conda/envs/carps_HPOBench_SMAC3-1.4/lib/python3.9/site-packages/hydra/_internal/instantiate/_instantiate2.py:226\u001b[0m, in \u001b[0;36minstantiate\u001b[0;34m(config, *args, **kwargs)\u001b[0m\n\u001b[1;32m 223\u001b[0m _convert_ \u001b[38;5;241m=\u001b[39m config\u001b[38;5;241m.\u001b[39mpop(_Keys\u001b[38;5;241m.\u001b[39mCONVERT, ConvertMode\u001b[38;5;241m.\u001b[39mNONE)\n\u001b[1;32m 224\u001b[0m _partial_ \u001b[38;5;241m=\u001b[39m config\u001b[38;5;241m.\u001b[39mpop(_Keys\u001b[38;5;241m.\u001b[39mPARTIAL, \u001b[38;5;28;01mFalse\u001b[39;00m)\n\u001b[0;32m--> 226\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43minstantiate_node\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 227\u001b[0m \u001b[43m \u001b[49m\u001b[43mconfig\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mrecursive\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m_recursive_\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mconvert\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m_convert_\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mpartial\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m_partial_\u001b[49m\n\u001b[1;32m 228\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 229\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m OmegaConf\u001b[38;5;241m.\u001b[39mis_list(config):\n\u001b[1;32m 230\u001b[0m \u001b[38;5;66;03m# Finalize config (convert targets to strings, merge with kwargs)\u001b[39;00m\n\u001b[1;32m 231\u001b[0m config_copy \u001b[38;5;241m=\u001b[39m copy\u001b[38;5;241m.\u001b[39mdeepcopy(config)\n", + "File \u001b[0;32m/scratch/hpc-prf-intexml/cbenjamins/.conda/envs/carps_HPOBench_SMAC3-1.4/lib/python3.9/site-packages/hydra/_internal/instantiate/_instantiate2.py:333\u001b[0m, in \u001b[0;36minstantiate_node\u001b[0;34m(node, convert, recursive, partial, *args)\u001b[0m\n\u001b[1;32m 331\u001b[0m exclude_keys \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mset\u001b[39m({\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m_target_\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m_convert_\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m_recursive_\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m_partial_\u001b[39m\u001b[38;5;124m\"\u001b[39m})\n\u001b[1;32m 332\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m _is_target(node):\n\u001b[0;32m--> 333\u001b[0m _target_ \u001b[38;5;241m=\u001b[39m \u001b[43m_resolve_target\u001b[49m\u001b[43m(\u001b[49m\u001b[43mnode\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\u001b[43m_Keys\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mTARGET\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mfull_key\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 334\u001b[0m kwargs \u001b[38;5;241m=\u001b[39m {}\n\u001b[1;32m 335\u001b[0m is_partial \u001b[38;5;241m=\u001b[39m node\u001b[38;5;241m.\u001b[39mget(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m_partial_\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;28;01mFalse\u001b[39;00m) \u001b[38;5;129;01mor\u001b[39;00m partial\n", + "File \u001b[0;32m/scratch/hpc-prf-intexml/cbenjamins/.conda/envs/carps_HPOBench_SMAC3-1.4/lib/python3.9/site-packages/hydra/_internal/instantiate/_instantiate2.py:139\u001b[0m, in \u001b[0;36m_resolve_target\u001b[0;34m(target, full_key)\u001b[0m\n\u001b[1;32m 137\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m full_key:\n\u001b[1;32m 138\u001b[0m msg \u001b[38;5;241m+\u001b[39m\u001b[38;5;241m=\u001b[39m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;130;01m\\n\u001b[39;00m\u001b[38;5;124mfull_key: \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mfull_key\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\n\u001b[0;32m--> 139\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m InstantiationException(msg) \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01me\u001b[39;00m\n\u001b[1;32m 140\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mcallable\u001b[39m(target):\n\u001b[1;32m 141\u001b[0m msg \u001b[38;5;241m=\u001b[39m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mExpected a callable target, got \u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mtarget\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m of type \u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;132;01m{\u001b[39;00m\u001b[38;5;28mtype\u001b[39m(target)\u001b[38;5;241m.\u001b[39m\u001b[38;5;18m__name__\u001b[39m\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m\"\u001b[39m\n", + "\u001b[0;31mInstantiationException\u001b[0m: Error locating target 'carps.benchmarks.mfpbench.MFPBenchProblem', set env var HYDRA_FULL_ERROR=1 to see chained exception.\nfull_key: problem" + ] + } + ], + "source": [ + "from pathlib import Path\n", + "from carps.utils.task import Task, get_search_space_info\n", + "from omegaconf import OmegaConf\n", + "from carps.utils.running import make_problem\n", + "import numpy as np\n", + "from dataclasses import asdict\n", + "\n", + "# Fill with task info\n", + "\n", + "# Those fields already are filled\n", + "specified_keys = [\"n_trials\", \"n_objectives\", \"is_multifidelity\", \"fidelity_type\", \"min_budget\", \"max_budget\",]\n", + "\n", + "# Get all configs\n", + "problem_path = Path(\"MFPBench\")\n", + "config_fns = list(problem_path.glob(\"**/*.yaml\"))\n", + "\n", + "general_info = {\n", + " \"objective_function_approximation\": \"surrogate\",\n", + " \"has_virtual_time\": False,\n", + " \"deterministic\": True,\n", + " \"has_virtual_time\": True,\n", + "}\n", + "domain = {\n", + " \"mfpbench/mfh\": \"synthetic\",\n", + " \"mfpbench/jahs\": \"JAHS\",\n", + " \"mfpbench/pd1\": \"DL\",\n", + "}\n", + "\n", + "for config_fn in config_fns:\n", + " print(config_fn)\n", + " cfg = OmegaConf.load(config_fn)\n", + " task_dict = {k: cfg.task.get(k) for k in specified_keys}\n", + " problem = make_problem(cfg=cfg)\n", + " search_space_kwargs = get_search_space_info(configspace=problem.configspace)\n", + " task_dict.update(**search_space_kwargs)\n", + " task_dict.update(**general_info)\n", + " idx = np.where([cfg.problem_id.startswith(k) for k in domain.keys()])[0][0]\n", + " task_dict[\"domain\"] = domain[list(domain.keys())[idx]]\n", + " task = Task(**task_dict)\n", + " cfg.task = asdict(task)\n", + " yaml_str = OmegaConf.to_yaml(cfg=cfg)\n", + " with open(config_fn, \"w\") as file:\n", + " file.write(yaml_str)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Index Configs\n", + "Final step." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from carps.utils.index_configs import index_configs\n", + "index_configs()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.14" + }, + "pycharm": { + "stem_cell": { + "cell_type": "raw", + "metadata": { + "collapsed": false + }, + "source": [] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_bbob_noiseless_16_21_0.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_bbob_noiseless_16_21_0.yaml new file mode 100644 index 000000000..4b8a48114 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_bbob_noiseless_16_21_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: blackbox/30/dev/bbob/noiseless/16/21/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 21 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_bbob_noiseless_16_22_0.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_bbob_noiseless_16_22_0.yaml new file mode 100644 index 000000000..0e257f52a --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_bbob_noiseless_16_22_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: blackbox/30/dev/bbob/noiseless/16/22/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 22 + instance: 0 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_bbob_noiseless_2_2_2.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_bbob_noiseless_2_2_2.yaml new file mode 100644 index 000000000..a7060617d --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_bbob_noiseless_2_2_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: blackbox/30/dev/bbob/noiseless/2/2/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 2 + instance: 2 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_bbob_noiseless_32_21_0.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_bbob_noiseless_32_21_0.yaml new file mode 100644 index 000000000..43773c0ef --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_bbob_noiseless_32_21_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: blackbox/30/dev/bbob/noiseless/32/21/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 21 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2010_125966.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2010_125966.yaml new file mode 100644 index 000000000..8ae82cf01 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2010_125966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/2010/125966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2010' + dataset_id: '125966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2073_125968.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2073_125968.yaml new file mode 100644 index 000000000..3bfd99455 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2073_125968.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/2073/125968 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2073' + dataset_id: '125968' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2073_125969.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2073_125969.yaml new file mode 100644 index 000000000..6d053bf23 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2073_125969.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/2073/125969 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2073' + dataset_id: '125969' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2566_3647.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2566_3647.yaml new file mode 100644 index 000000000..fa480e70e --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2566_3647.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/2566/3647 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2566' + dataset_id: '3647' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2629_14951.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2629_14951.yaml new file mode 100644 index 000000000..fb89e0444 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_2629_14951.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/2629/14951 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2629' + dataset_id: '14951' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_125923.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_125923.yaml new file mode 100644 index 000000000..67e0eff42 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_125923.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/5891/125923 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '125923' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_145677.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_145677.yaml new file mode 100644 index 000000000..d5ef71299 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_145677.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/5891/145677 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '145677' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3493.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3493.yaml new file mode 100644 index 000000000..a70fb1fa1 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3493.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/5891/3493 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3493' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3889.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3889.yaml new file mode 100644 index 000000000..e614b99fc --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/5891/3889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3891.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3891.yaml new file mode 100644 index 000000000..4121e296b --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3891.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/5891/3891 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3891' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3913.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3913.yaml new file mode 100644 index 000000000..0063a55f2 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/5891/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3917.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3917.yaml new file mode 100644 index 000000000..e55c1560c --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/5891/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_9976.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_9976.yaml new file mode 100644 index 000000000..b17987291 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5891_9976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/5891/9976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '9976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5970_9978.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5970_9978.yaml new file mode 100644 index 000000000..4b519a1ef --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_5970_9978.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/5970/9978 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '9978' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_145847.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_145847.yaml new file mode 100644 index 000000000..706182a0b --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_145847.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/6766/145847 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145847' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_145972.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_145972.yaml new file mode 100644 index 000000000..d657957c9 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_145972.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/6766/145972 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145972' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_9914.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_9914.yaml new file mode 100644 index 000000000..2a41c7504 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_9914.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/6766/9914 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '9914' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_9967.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_9967.yaml new file mode 100644 index 000000000..aa6f53d67 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_9967.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/6766/9967 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '9967' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_9983.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_9983.yaml new file mode 100644 index 000000000..d7d461025 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6766_9983.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/6766/9983 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '9983' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_145972.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_145972.yaml new file mode 100644 index 000000000..64798c7c9 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_145972.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/6767/145972 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '145972' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_272.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_272.yaml new file mode 100644 index 000000000..187d68e62 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_272.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/6767/272 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '272' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_3913.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_3913.yaml new file mode 100644 index 000000000..ddec3e7ce --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_3913.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/6767/3913 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '3913' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_9957.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_9957.yaml new file mode 100644 index 000000000..338be0325 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/6767/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_9978.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_9978.yaml new file mode 100644 index 000000000..6894ad38b --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpob_all_6767_9978.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/dev/hpob/all/6767/9978 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '9978' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_hpobench_bb_tab_ml_svm_167120.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_hpobench_bb_tab_ml_svm_167120.yaml new file mode 100644 index 000000000..4c211cff4 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_hpobench_bb_tab_ml_svm_167120.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: blackbox/30/dev/hpobench/bb/tab/ml/svm/167120 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 167120 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/dev/subset_yahpo_rbv2_ranger_41142_None.yaml b/carps/configs/problem/subselection/blackbox/dev/subset_yahpo_rbv2_ranger_41142_None.yaml new file mode 100644 index 000000000..2a59ab33f --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/dev/subset_yahpo_rbv2_ranger_41142_None.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: blackbox/30/dev/yahpo/rbv2_ranger/41142/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41142' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_bbob_noiseless_16_22_1.yaml b/carps/configs/problem/subselection/blackbox/test/subset_bbob_noiseless_16_22_1.yaml new file mode 100644 index 000000000..b3c6d0831 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_bbob_noiseless_16_22_1.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: blackbox/30/test/bbob/noiseless/16/22/1 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 22 + instance: 1 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_bbob_noiseless_16_22_2.yaml b/carps/configs/problem/subselection/blackbox/test/subset_bbob_noiseless_16_22_2.yaml new file mode 100644 index 000000000..950b0047c --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_bbob_noiseless_16_22_2.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: blackbox/30/test/bbob/noiseless/16/22/2 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 16 + fid: 22 + instance: 2 + seed: ${seed} +task: + n_trials: 180 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 16 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 16 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_bbob_noiseless_2_14_0.yaml b/carps/configs/problem/subselection/blackbox/test/subset_bbob_noiseless_2_14_0.yaml new file mode 100644 index 000000000..0e19a6fb9 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_bbob_noiseless_2_14_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: blackbox/30/test/bbob/noiseless/2/14/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 2 + fid: 14 + instance: 0 + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_bbob_noiseless_32_22_0.yaml b/carps/configs/problem/subselection/blackbox/test/subset_bbob_noiseless_32_22_0.yaml new file mode 100644 index 000000000..c3fdda3e9 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_bbob_noiseless_32_22_0.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: BBOB +problem_id: blackbox/30/test/bbob/noiseless/32/22/0 +problem: + _target_: carps.benchmarks.bbob.BBOBProblem + dimension: 32 + fid: 22 + instance: 0 + seed: ${seed} +task: + n_trials: 247 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 32 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 32 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_2010_125966.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_2010_125966.yaml new file mode 100644 index 000000000..c307e5bf5 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_2010_125966.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/2010/125966 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2010' + dataset_id: '125966' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_2073_125968.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_2073_125968.yaml new file mode 100644 index 000000000..05e7b448f --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_2073_125968.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/2073/125968 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2073' + dataset_id: '125968' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_2073_125969.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_2073_125969.yaml new file mode 100644 index 000000000..d183a856d --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_2073_125969.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/2073/125969 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2073' + dataset_id: '125969' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_2566_3647.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_2566_3647.yaml new file mode 100644 index 000000000..b6eeb4a8e --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_2566_3647.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/2566/3647 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '2566' + dataset_id: '3647' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5860_282.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5860_282.yaml new file mode 100644 index 000000000..f8210703a --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5860_282.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/5860/282 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5860' + dataset_id: '282' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5891_31.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5891_31.yaml new file mode 100644 index 000000000..14ea99bfd --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5891_31.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/5891/31 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5891' + dataset_id: '31' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 8 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 8 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5918_6.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5918_6.yaml new file mode 100644 index 000000000..36d714948 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5918_6.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/5918/6 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5918' + dataset_id: '6' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 13 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 13 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5970_145855.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5970_145855.yaml new file mode 100644 index 000000000..7c3b7d45d --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5970_145855.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/5970/145855 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '145855' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5970_146012.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5970_146012.yaml new file mode 100644 index 000000000..5bd5e7170 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5970_146012.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/5970/146012 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '146012' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5970_9957.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5970_9957.yaml new file mode 100644 index 000000000..42b979a20 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_5970_9957.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/5970/9957 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '5970' + dataset_id: '9957' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_145836.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_145836.yaml new file mode 100644 index 000000000..37db73461 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_145836.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/6766/145836 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145836' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_145857.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_145857.yaml new file mode 100644 index 000000000..917b99a2f --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_145857.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/6766/145857 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145857' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_145976.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_145976.yaml new file mode 100644 index 000000000..eb5e18c48 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_145976.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/6766/145976 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '145976' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_146066.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_146066.yaml new file mode 100644 index 000000000..3f44cb98a --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_146066.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/6766/146066 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '146066' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_3896.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_3896.yaml new file mode 100644 index 000000000..1b0985f91 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_3896.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/6766/3896 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '3896' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_3950.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_3950.yaml new file mode 100644 index 000000000..eb77e35ea --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_3950.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/6766/3950 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '3950' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_9889.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_9889.yaml new file mode 100644 index 000000000..3916508d4 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/6766/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_9971.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_9971.yaml new file mode 100644 index 000000000..b9eb8c122 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6766_9971.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/6766/9971 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6766' + dataset_id: '9971' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_146064.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_146064.yaml new file mode 100644 index 000000000..6ea81782d --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_146064.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/6767/146064 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '146064' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_146065.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_146065.yaml new file mode 100644 index 000000000..751fa5b87 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_146065.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/6767/146065 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '146065' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_3494.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_3494.yaml new file mode 100644 index 000000000..3d593addd --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_3494.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/6767/3494 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '3494' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_3917.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_3917.yaml new file mode 100644 index 000000000..550b9f11a --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_3917.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/6767/3917 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '3917' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_9889.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_9889.yaml new file mode 100644 index 000000000..da5589778 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpob_all_6767_9889.yaml @@ -0,0 +1,32 @@ +# @package _global_ +benchmark_id: HPOB +problem_id: blackbox/30/test/hpob/all/6767/9889 +problem: + _target_: carps.benchmarks.hpo_b.HPOBProblem + model_id: '6767' + dataset_id: '9889' + surrogates_dir: carps/benchmark_data/HPO-B/saved-surrogates +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: false + deterministic: true + dimensions: 18 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 18 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_hpobench_bb_tab_ml_lr_3.yaml b/carps/configs/problem/subselection/blackbox/test/subset_hpobench_bb_tab_ml_lr_3.yaml new file mode 100644 index 000000000..2961d4668 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_hpobench_bb_tab_ml_lr_3.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: blackbox/30/test/hpobench/bb/tab/ml/lr/3 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 3 + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_yahpo_rbv2_ranger_1475_None.yaml b/carps/configs/problem/subselection/blackbox/test/subset_yahpo_rbv2_ranger_1475_None.yaml new file mode 100644 index 000000000..adb0e8905 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_yahpo_rbv2_ranger_1475_None.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: blackbox/30/test/yahpo/rbv2_ranger/1475/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '1475' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/blackbox/test/subset_yahpo_rbv2_ranger_469_None.yaml b/carps/configs/problem/subselection/blackbox/test/subset_yahpo_rbv2_ranger_469_None.yaml new file mode 100644 index 000000000..95aceece6 --- /dev/null +++ b/carps/configs/problem/subselection/blackbox/test/subset_yahpo_rbv2_ranger_469_None.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: blackbox/30/test/yahpo/rbv2_ranger/469/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '469' + budget_type: null + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_epoch_lcbench_167185_epoch.yaml b/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_epoch_lcbench_167185_epoch.yaml new file mode 100644 index 000000000..801860356 --- /dev/null +++ b/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_epoch_lcbench_167185_epoch.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: momf/9/dev/yahpo/MOMF/epoch/lcbench/167185/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167185' + budget_type: epoch + metric: + - val_accuracy + - val_cross_entropy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - val_accuracy + - val_cross_entropy + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_repl_rbv2_xgboost_12_repl.yaml b/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_repl_rbv2_xgboost_12_repl.yaml new file mode 100644 index 000000000..c26116afb --- /dev/null +++ b/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_repl_rbv2_xgboost_12_repl.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: momf/9/dev/yahpo/MOMF/repl/rbv2_xgboost/12/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '12' + budget_type: repl + metric: + - acc + - memory +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_iaml_glmnet_1489_trainsize.yaml b/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_iaml_glmnet_1489_trainsize.yaml new file mode 100644 index 000000000..950574ad2 --- /dev/null +++ b/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_iaml_glmnet_1489_trainsize.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: momf/9/dev/yahpo/MOMF/trainsize/iaml_glmnet/1489/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_glmnet + instance: '1489' + budget_type: trainsize + metric: + - mmce + - nf +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - mmce + - nf + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_iaml_ranger_1489_trainsize.yaml b/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_iaml_ranger_1489_trainsize.yaml new file mode 100644 index 000000000..eb1497614 --- /dev/null +++ b/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_iaml_ranger_1489_trainsize.yaml @@ -0,0 +1,38 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: momf/9/dev/yahpo/MOMF/trainsize/iaml_ranger/1489/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_ranger + instance: '1489' + budget_type: trainsize + metric: + - mmce + - nf + - ias +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 3 + objectives: + - mmce + - nf + - ias + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_ranger_375_trainsize.yaml b/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_ranger_375_trainsize.yaml new file mode 100644 index 000000000..4897e503f --- /dev/null +++ b/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_ranger_375_trainsize.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: momf/9/dev/yahpo/MOMF/trainsize/rbv2_ranger/375/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '375' + budget_type: trainsize + metric: + - acc + - memory +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_ranger_6_trainsize.yaml b/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_ranger_6_trainsize.yaml new file mode 100644 index 000000000..aae062a76 --- /dev/null +++ b/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_ranger_6_trainsize.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: momf/9/dev/yahpo/MOMF/trainsize/rbv2_ranger/6/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '6' + budget_type: trainsize + metric: + - acc + - memory +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_rpart_1476_trainsize.yaml b/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_rpart_1476_trainsize.yaml new file mode 100644 index 000000000..655502de4 --- /dev/null +++ b/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_rpart_1476_trainsize.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: momf/9/dev/yahpo/MOMF/trainsize/rbv2_rpart/1476/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1476' + budget_type: trainsize + metric: + - acc + - memory +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_xgboost_12_trainsize.yaml b/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_xgboost_12_trainsize.yaml new file mode 100644 index 000000000..6b722a55c --- /dev/null +++ b/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_xgboost_12_trainsize.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: momf/9/dev/yahpo/MOMF/trainsize/rbv2_xgboost/12/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '12' + budget_type: trainsize + metric: + - acc + - memory +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_xgboost_28_trainsize.yaml b/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_xgboost_28_trainsize.yaml new file mode 100644 index 000000000..2840f34fd --- /dev/null +++ b/carps/configs/problem/subselection/momf/dev/subset_yahpo_MOMF_trainsize_rbv2_xgboost_28_trainsize.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: momf/9/dev/yahpo/MOMF/trainsize/rbv2_xgboost/28/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '28' + budget_type: trainsize + metric: + - acc + - memory +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_epoch_lcbench_167152_epoch.yaml b/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_epoch_lcbench_167152_epoch.yaml new file mode 100644 index 000000000..9a16a67eb --- /dev/null +++ b/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_epoch_lcbench_167152_epoch.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: momf/9/test/yahpo/MOMF/epoch/lcbench/167152/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '167152' + budget_type: epoch + metric: + - val_accuracy + - val_cross_entropy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - val_accuracy + - val_cross_entropy + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_epoch_lcbench_189873_epoch.yaml b/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_epoch_lcbench_189873_epoch.yaml new file mode 100644 index 000000000..b98fbe064 --- /dev/null +++ b/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_epoch_lcbench_189873_epoch.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: momf/9/test/yahpo/MOMF/epoch/lcbench/189873/epoch +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: lcbench + instance: '189873' + budget_type: epoch + metric: + - val_accuracy + - val_cross_entropy +task: + n_trials: 126 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - val_accuracy + - val_cross_entropy + is_multifidelity: true + fidelity_type: epoch + min_budget: 1 + max_budget: 52 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 7 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 4 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_repl_rbv2_ranger_6_repl.yaml b/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_repl_rbv2_ranger_6_repl.yaml new file mode 100644 index 000000000..f3fdab729 --- /dev/null +++ b/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_repl_rbv2_ranger_6_repl.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: momf/9/test/yahpo/MOMF/repl/rbv2_ranger/6/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '6' + budget_type: repl + metric: + - acc + - memory +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_repl_rbv2_rpart_40499_repl.yaml b/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_repl_rbv2_rpart_40499_repl.yaml new file mode 100644 index 000000000..fc5a6a6c6 --- /dev/null +++ b/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_repl_rbv2_rpart_40499_repl.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: momf/9/test/yahpo/MOMF/repl/rbv2_rpart/40499/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40499' + budget_type: repl + metric: + - acc + - memory +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_repl_rbv2_xgboost_182_repl.yaml b/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_repl_rbv2_xgboost_182_repl.yaml new file mode 100644 index 000000000..f6d03ccf0 --- /dev/null +++ b/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_repl_rbv2_xgboost_182_repl.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: momf/9/test/yahpo/MOMF/repl/rbv2_xgboost/182/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '182' + budget_type: repl + metric: + - acc + - memory +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_trainsize_iaml_glmnet_1067_trainsize.yaml b/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_trainsize_iaml_glmnet_1067_trainsize.yaml new file mode 100644 index 000000000..9be2f1a5d --- /dev/null +++ b/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_trainsize_iaml_glmnet_1067_trainsize.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: momf/9/test/yahpo/MOMF/trainsize/iaml_glmnet/1067/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_glmnet + instance: '1067' + budget_type: trainsize + metric: + - mmce + - nf +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - mmce + - nf + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_trainsize_iaml_xgboost_1489_trainsize.yaml b/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_trainsize_iaml_xgboost_1489_trainsize.yaml new file mode 100644 index 000000000..cfb9caed4 --- /dev/null +++ b/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_trainsize_iaml_xgboost_1489_trainsize.yaml @@ -0,0 +1,40 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: momf/9/test/yahpo/MOMF/trainsize/iaml_xgboost/1489/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_xgboost + instance: '1489' + budget_type: trainsize + metric: + - mmce + - nf + - ias + - rammodel +task: + n_trials: 165 + time_budget: null + n_workers: 1 + n_objectives: 4 + objectives: + - mmce + - nf + - ias + - rammodel + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 13 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_trainsize_rbv2_ranger_40979_trainsize.yaml b/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_trainsize_rbv2_ranger_40979_trainsize.yaml new file mode 100644 index 000000000..432e1b040 --- /dev/null +++ b/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_trainsize_rbv2_ranger_40979_trainsize.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: momf/9/test/yahpo/MOMF/trainsize/rbv2_ranger/40979/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40979' + budget_type: trainsize + metric: + - acc + - memory +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_trainsize_rbv2_xgboost_182_trainsize.yaml b/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_trainsize_rbv2_xgboost_182_trainsize.yaml new file mode 100644 index 000000000..2ab6ed8a8 --- /dev/null +++ b/carps/configs/problem/subselection/momf/test/subset_yahpo_MOMF_trainsize_rbv2_xgboost_182_trainsize.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: momf/9/test/yahpo/MOMF/trainsize/rbv2_xgboost/182/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '182' + budget_type: trainsize + metric: + - acc + - memory +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_hpobench_mf_real_ml_nn_146821_iter.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_hpobench_mf_real_ml_nn_146821_iter.yaml new file mode 100644 index 000000000..2c80ed015 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_hpobench_mf_real_ml_nn_146821_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multifidelity/20/dev/hpobench/mf/real/ml/nn/146821/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 146821 + budget_type: iter + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 3 + max_budget: 243 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_hpobench_mf_real_ml_rf_31_subsample.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_hpobench_mf_real_ml_rf_31_subsample.yaml new file mode 100644 index 000000000..25acde1b4 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_hpobench_mf_real_ml_rf_31_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multifidelity/20/dev/hpobench/mf/real/ml/rf/31/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 31 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_mfpbench_SO_mfh_mfh6_moderate.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_mfpbench_SO_mfh_mfh6_moderate.yaml new file mode 100644 index 000000000..48a3dfccb --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_mfpbench_SO_mfh_mfh6_moderate.yaml @@ -0,0 +1,39 @@ +# @package _global_ +benchmark_id: MFPBench +problem_id: multifidelity/20/dev/mfpbench/SO/mfh/mfh6_moderate +problem: + _target_: carps.benchmarks.mfpbench.MFPBenchProblem + benchmark_name: mfh + metric: + - value + benchmark: mfh6_moderate + budget_type: z + prior: null + perturb_prior: null + benchmark_kwargs: + bias: null + noise: null +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - value + is_multifidelity: true + fidelity_type: z + min_budget: 1 + max_budget: 100 + has_constraints: null + domain: synthetic + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 6 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_iaml_glmnet_41146_trainsize.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_iaml_glmnet_41146_trainsize.yaml new file mode 100644 index 000000000..34d3eb36f --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_iaml_glmnet_41146_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/dev/yahpo/iaml_glmnet/41146/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: iaml_glmnet + instance: '41146' + budget_type: trainsize + metric: f1 +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_aknn_1497_trainsize.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_aknn_1497_trainsize.yaml new file mode 100644 index 000000000..ae5fbce32 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_aknn_1497_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/dev/yahpo/rbv2_aknn/1497/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1497' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_glmnet_24_repl.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_glmnet_24_repl.yaml new file mode 100644 index 000000000..ad05d6c90 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_glmnet_24_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/dev/yahpo/rbv2_glmnet/24/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '24' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_glmnet_334_repl.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_glmnet_334_repl.yaml new file mode 100644 index 000000000..4b45d5a7c --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_glmnet_334_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/dev/yahpo/rbv2_glmnet/334/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '334' + budget_type: repl + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_ranger_40983_trainsize.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_ranger_40983_trainsize.yaml new file mode 100644 index 000000000..340e263d9 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_ranger_40983_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/dev/yahpo/rbv2_ranger/40983/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40983' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_ranger_41159_repl.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_ranger_41159_repl.yaml new file mode 100644 index 000000000..a2cd39941 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_ranger_41159_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/dev/yahpo/rbv2_ranger/41159/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41159' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_ranger_41161_repl.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_ranger_41161_repl.yaml new file mode 100644 index 000000000..3eaa2db23 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_ranger_41161_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/dev/yahpo/rbv2_ranger/41161/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41161' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_ranger_41161_trainsize.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_ranger_41161_trainsize.yaml new file mode 100644 index 000000000..74dd49322 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_ranger_41161_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/dev/yahpo/rbv2_ranger/41161/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '41161' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_rpart_1220_repl.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_rpart_1220_repl.yaml new file mode 100644 index 000000000..38aa5b343 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_rpart_1220_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/dev/yahpo/rbv2_rpart/1220/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '1220' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_rpart_41165_repl.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_rpart_41165_repl.yaml new file mode 100644 index 000000000..4340372bf --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_rpart_41165_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/dev/yahpo/rbv2_rpart/41165/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '41165' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_super_40984_repl.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_super_40984_repl.yaml new file mode 100644 index 000000000..2b2a45e96 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_super_40984_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/dev/yahpo/rbv2_super/40984/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40984' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_svm_24_repl.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_svm_24_repl.yaml new file mode 100644 index 000000000..00f6d42ef --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_svm_24_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/dev/yahpo/rbv2_svm/24/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '24' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_svm_24_trainsize.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_svm_24_trainsize.yaml new file mode 100644 index 000000000..f07bc69ed --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_svm_24_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/dev/yahpo/rbv2_svm/24/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '24' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_svm_40975_repl.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_svm_40975_repl.yaml new file mode 100644 index 000000000..a45a9f6e7 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_svm_40975_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/dev/yahpo/rbv2_svm/40975/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40975' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_xgboost_1476_repl.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_xgboost_1476_repl.yaml new file mode 100644 index 000000000..827be00c4 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_xgboost_1476_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/dev/yahpo/rbv2_xgboost/1476/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1476' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_xgboost_375_trainsize.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_xgboost_375_trainsize.yaml new file mode 100644 index 000000000..e97c7d071 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_xgboost_375_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/dev/yahpo/rbv2_xgboost/375/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '375' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_xgboost_40499_trainsize.yaml b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_xgboost_40499_trainsize.yaml new file mode 100644 index 000000000..fac0e291f --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/dev/subset_yahpo_rbv2_xgboost_40499_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/dev/yahpo/rbv2_xgboost/40499/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40499' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_hpobench_mf_real_ml_nn_146821_iter.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_hpobench_mf_real_ml_nn_146821_iter.yaml new file mode 100644 index 000000000..0b7a56603 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_hpobench_mf_real_ml_nn_146821_iter.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multifidelity/20/test/hpobench/mf/real/ml/nn/146821/iter +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 146821 + budget_type: iter + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: iter + min_budget: 3 + max_budget: 243 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_hpobench_mf_real_ml_xgboost_3_subsample.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_hpobench_mf_real_ml_xgboost_3_subsample.yaml new file mode 100644 index 000000000..ffded630e --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_hpobench_mf_real_ml_xgboost_3_subsample.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multifidelity/20/test/hpobench/mf/real/ml/xgboost/3/subsample +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 3 + budget_type: subsample + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: subsample + min_budget: 0.1 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: real + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_aknn_1461_repl.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_aknn_1461_repl.yaml new file mode 100644 index 000000000..6651821b5 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_aknn_1461_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/test/yahpo/rbv2_aknn/1461/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1461' + budget_type: repl + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_aknn_1476_trainsize.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_aknn_1476_trainsize.yaml new file mode 100644 index 000000000..1adacf1f9 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_aknn_1476_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/test/yahpo/rbv2_aknn/1476/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '1476' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_aknn_40670_trainsize.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_aknn_40670_trainsize.yaml new file mode 100644 index 000000000..be62faa88 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_aknn_40670_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/test/yahpo/rbv2_aknn/40670/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '40670' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_aknn_50_trainsize.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_aknn_50_trainsize.yaml new file mode 100644 index 000000000..35cb27083 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_aknn_50_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/test/yahpo/rbv2_aknn/50/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_aknn + instance: '50' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 4 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_glmnet_41162_trainsize.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_glmnet_41162_trainsize.yaml new file mode 100644 index 000000000..ae1e78503 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_glmnet_41162_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/test/yahpo/rbv2_glmnet/41162/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_glmnet + instance: '41162' + budget_type: trainsize + metric: acc +task: + n_trials: 90 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 3 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_ranger_40923_repl.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_ranger_40923_repl.yaml new file mode 100644 index 000000000..bdf3d4982 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_ranger_40923_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/test/yahpo/rbv2_ranger/40923/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40923' + budget_type: repl + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_ranger_40923_trainsize.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_ranger_40923_trainsize.yaml new file mode 100644 index 000000000..18fe13bc5 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_ranger_40923_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/test/yahpo/rbv2_ranger/40923/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_ranger + instance: '40923' + budget_type: trainsize + metric: acc +task: + n_trials: 134 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 8 + search_space_n_categoricals: 3 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 2 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_rpart_38_repl.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_rpart_38_repl.yaml new file mode 100644 index 000000000..e7b569b66 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_rpart_38_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/test/yahpo/rbv2_rpart/38/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '38' + budget_type: repl + metric: acc +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_40900_repl.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_40900_repl.yaml new file mode 100644 index 000000000..bab466b69 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_40900_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/test/yahpo/rbv2_super/40900/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '40900' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_41156_trainsize.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_41156_trainsize.yaml new file mode 100644 index 000000000..204e7142d --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_41156_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/test/yahpo/rbv2_super/41156/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '41156' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_4154_repl.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_4154_repl.yaml new file mode 100644 index 000000000..640600919 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_4154_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/test/yahpo/rbv2_super/4154/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '4154' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_458_repl.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_458_repl.yaml new file mode 100644 index 000000000..321260729 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_458_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/test/yahpo/rbv2_super/458/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '458' + budget_type: repl + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_458_trainsize.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_458_trainsize.yaml new file mode 100644 index 000000000..1b5c99afa --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_super_458_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/test/yahpo/rbv2_super/458/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_super + instance: '458' + budget_type: trainsize + metric: acc +task: + n_trials: 267 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 38 + search_space_n_categoricals: 7 + search_space_n_ordinals: 0 + search_space_n_integers: 13 + search_space_n_floats: 18 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_svm_40981_trainsize.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_svm_40981_trainsize.yaml new file mode 100644 index 000000000..47a1998bb --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_svm_40981_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/test/yahpo/rbv2_svm/40981/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_svm + instance: '40981' + budget_type: trainsize + metric: acc +task: + n_trials: 118 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 6 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 1 + search_space_n_floats: 3 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_xgboost_1476_trainsize.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_xgboost_1476_trainsize.yaml new file mode 100644 index 000000000..e7df55825 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_xgboost_1476_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/test/yahpo/rbv2_xgboost/1476/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1476' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_xgboost_1480_repl.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_xgboost_1480_repl.yaml new file mode 100644 index 000000000..a4f2cf019 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_xgboost_1480_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/test/yahpo/rbv2_xgboost/1480/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '1480' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_xgboost_40685_trainsize.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_xgboost_40685_trainsize.yaml new file mode 100644 index 000000000..c727383e8 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_xgboost_40685_trainsize.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/test/yahpo/rbv2_xgboost/40685/trainsize +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '40685' + budget_type: trainsize + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: trainsize + min_budget: 0.03 + max_budget: 1.0 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_xgboost_41163_repl.yaml b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_xgboost_41163_repl.yaml new file mode 100644 index 000000000..e18fc6c20 --- /dev/null +++ b/carps/configs/problem/subselection/multifidelity/test/subset_yahpo_rbv2_xgboost_41163_repl.yaml @@ -0,0 +1,33 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multifidelity/20/test/yahpo/rbv2_xgboost/41163/repl +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_xgboost + instance: '41163' + budget_type: repl + metric: acc +task: + n_trials: 170 + time_budget: null + n_workers: 1 + n_objectives: 1 + objectives: + - quality + is_multifidelity: true + fidelity_type: repl + min_budget: 1 + max_budget: 10 + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 14 + search_space_n_categoricals: 2 + search_space_n_ordinals: 0 + search_space_n_integers: 2 + search_space_n_floats: 10 + search_space_has_conditionals: true + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/dev/subset_Pymoo_MO_omnitest.yaml b/carps/configs/problem/subselection/multiobjective/dev/subset_Pymoo_MO_omnitest.yaml new file mode 100644 index 000000000..47baf17b2 --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/dev/subset_Pymoo_MO_omnitest.yaml @@ -0,0 +1,35 @@ +# @package _global_ +benchmark_id: Pymoo +problem_id: multiobjective/10/dev/Pymoo/MO/omnitest +problem: + _target_: carps.benchmarks.pymoo.PymooProblem + problem_name: omnitest + seed: ${seed} + metric: + - objective_0 + - objective_1 +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - objective_0 + - objective_1 + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 2 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_rf_167119.yaml b/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_rf_167119.yaml new file mode 100644 index 000000000..37e891f5a --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_rf_167119.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multiobjective/10/dev/hpobench/MO/tab/ml/rf/167119 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 167119 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_rf_31.yaml b/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_rf_31.yaml new file mode 100644 index 000000000..1fff6c762 --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_rf_31.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multiobjective/10/dev/hpobench/MO/tab/ml/rf/31 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 31 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_svm_146212.yaml b/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_svm_146212.yaml new file mode 100644 index 000000000..da98c1844 --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_svm_146212.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multiobjective/10/dev/hpobench/MO/tab/ml/svm/146212 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 146212 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_svm_146818.yaml b/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_svm_146818.yaml new file mode 100644 index 000000000..99995a3d0 --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_svm_146818.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multiobjective/10/dev/hpobench/MO/tab/ml/svm/146818 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 146818 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_svm_31.yaml b/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_svm_31.yaml new file mode 100644 index 000000000..191a17e7b --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_svm_31.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multiobjective/10/dev/hpobench/MO/tab/ml/svm/31 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 31 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_xgboost_146822.yaml b/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_xgboost_146822.yaml new file mode 100644 index 000000000..cb3d5a2e3 --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_xgboost_146822.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multiobjective/10/dev/hpobench/MO/tab/ml/xgboost/146822 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 146822 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_xgboost_14965.yaml b/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_xgboost_14965.yaml new file mode 100644 index 000000000..cf8d72ab1 --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_xgboost_14965.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multiobjective/10/dev/hpobench/MO/tab/ml/xgboost/14965 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 14965 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_xgboost_167120.yaml b/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_xgboost_167120.yaml new file mode 100644 index 000000000..af01acd33 --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/dev/subset_hpobench_MO_tab_ml_xgboost_167120.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multiobjective/10/dev/hpobench/MO/tab/ml/xgboost/167120 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 167120 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/dev/subset_yahpo_mo_rbv2_rpart_40499_None.yaml b/carps/configs/problem/subselection/multiobjective/dev/subset_yahpo_mo_rbv2_rpart_40499_None.yaml new file mode 100644 index 000000000..08f3d0157 --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/dev/subset_yahpo_mo_rbv2_rpart_40499_None.yaml @@ -0,0 +1,36 @@ +# @package _global_ +benchmark_id: YAHPO +problem_id: multiobjective/10/dev/yahpo/mo/rbv2_rpart/40499/None +problem: + _target_: carps.benchmarks.yahpo.YahpoProblem + bench: rbv2_rpart + instance: '40499' + budget_type: null + metric: + - acc + - memory +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - acc + - memory + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: surrogate + has_virtual_time: true + deterministic: true + dimensions: 5 + search_space_n_categoricals: 1 + search_space_n_ordinals: 0 + search_space_n_integers: 3 + search_space_n_floats: 1 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/test/subset_Pymoo_MO_zdt3.yaml b/carps/configs/problem/subselection/multiobjective/test/subset_Pymoo_MO_zdt3.yaml new file mode 100644 index 000000000..636bbf3c4 --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/test/subset_Pymoo_MO_zdt3.yaml @@ -0,0 +1,35 @@ +# @package _global_ +benchmark_id: Pymoo +problem_id: multiobjective/10/test/Pymoo/MO/zdt3 +problem: + _target_: carps.benchmarks.pymoo.PymooProblem + problem_name: zdt3 + seed: ${seed} + metric: + - objective_0 + - objective_1 +task: + n_trials: 240 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - objective_0 + - objective_1 + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: synthetic + objective_function_approximation: real + has_virtual_time: false + deterministic: true + dimensions: 30 + search_space_n_categoricals: 0 + search_space_n_ordinals: 0 + search_space_n_integers: 0 + search_space_n_floats: 30 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_lr_146606.yaml b/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_lr_146606.yaml new file mode 100644 index 000000000..3284819f8 --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_lr_146606.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multiobjective/10/test/hpobench/MO/tab/ml/lr/146606 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 146606 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_lr_167119.yaml b/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_lr_167119.yaml new file mode 100644 index 000000000..7f66347fb --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_lr_167119.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multiobjective/10/test/hpobench/MO/tab/ml/lr/167119 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 167119 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_lr_168912.yaml b/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_lr_168912.yaml new file mode 100644 index 000000000..c2d75d0db --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_lr_168912.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multiobjective/10/test/hpobench/MO/tab/ml/lr/168912 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: lr + task_id: 168912 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_nn_146821.yaml b/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_nn_146821.yaml new file mode 100644 index 000000000..722d4dd14 --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_nn_146821.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multiobjective/10/test/hpobench/MO/tab/ml/nn/146821 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: nn + task_id: 146821 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 110 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 5 + search_space_n_categoricals: 0 + search_space_n_ordinals: 5 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_rf_146212.yaml b/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_rf_146212.yaml new file mode 100644 index 000000000..eefe84507 --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_rf_146212.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multiobjective/10/test/hpobench/MO/tab/ml/rf/146212 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: rf + task_id: 146212 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_svm_10101.yaml b/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_svm_10101.yaml new file mode 100644 index 000000000..b63fa686f --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_svm_10101.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multiobjective/10/test/hpobench/MO/tab/ml/svm/10101 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 10101 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_svm_146821.yaml b/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_svm_146821.yaml new file mode 100644 index 000000000..8de35e4e2 --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_svm_146821.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multiobjective/10/test/hpobench/MO/tab/ml/svm/146821 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 146821 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_svm_7592.yaml b/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_svm_7592.yaml new file mode 100644 index 000000000..0c36f3622 --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_svm_7592.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multiobjective/10/test/hpobench/MO/tab/ml/svm/7592 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: svm + task_id: 7592 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 77 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 2 + search_space_n_categoricals: 0 + search_space_n_ordinals: 2 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_xgboost_168911.yaml b/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_xgboost_168911.yaml new file mode 100644 index 000000000..21c3cf322 --- /dev/null +++ b/carps/configs/problem/subselection/multiobjective/test/subset_hpobench_MO_tab_ml_xgboost_168911.yaml @@ -0,0 +1,37 @@ +# @package _global_ +benchmark_id: HPOBench +problem_id: multiobjective/10/test/hpobench/MO/tab/ml/xgboost/168911 +problem: + _target_: carps.benchmarks.hpo_bench.HPOBenchProblem + model: xgboost + task_id: 168911 + metric: + - function_value + - cost + budget_type: null + seed: ${seed} +task: + n_trials: 100 + time_budget: null + n_workers: 1 + n_objectives: 2 + objectives: + - function_value + - cost + is_multifidelity: false + fidelity_type: null + min_budget: null + max_budget: null + has_constraints: false + domain: ML + objective_function_approximation: tabular + has_virtual_time: false + deterministic: false + dimensions: 4 + search_space_n_categoricals: 0 + search_space_n_ordinals: 4 + search_space_n_integers: 0 + search_space_n_floats: 0 + search_space_has_conditionals: false + search_space_has_forbiddens: false + search_space_has_priors: false diff --git a/carps/container/__init__.py b/carps/container/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/carps/container/container_script_optimizer.py b/carps/container/container_script_optimizer.py new file mode 100644 index 000000000..80ecbe18c --- /dev/null +++ b/carps/container/container_script_optimizer.py @@ -0,0 +1,48 @@ +from __future__ import annotations + +import os +from typing import TYPE_CHECKING + +from omegaconf import OmegaConf +from py_experimenter.experimenter import PyExperimenter + +from carps.container.wrapper import ContainerizedProblemClient +from carps.loggers.database_logger import DatabaseLogger +from carps.loggers.file_logger import FileLogger +from carps.utils.running import make_optimizer + +if TYPE_CHECKING: + from py_experimenter.result_processor import ResultProcessor + + +def optimizer_experiment(parameters: dict, result_processor: ResultProcessor, custom_config: dict): + loggers = [DatabaseLogger(result_processor), FileLogger()] + problem = ContainerizedProblemClient(loggers=loggers) + optimizer = make_optimizer(cfg=cfg, problem=problem) + + optimizer.run() + + +if (job_id := os.environ["BENCHMARKING_JOB_ID"]) != "": + with open(f"{job_id}_pyexperimenter_id.txt") as f: + experiment_id = int(f.read()) + + cfg = OmegaConf.load(f"{job_id}_hydra_config.yaml") + + slurm_job_id = os.environ["BENCHMARKING_JOB_ID"] + experiment_configuration_file_path = "carps/container/py_experimenter.yaml" + + if os.path.exists("carps/container/credentials.yaml"): + database_credential_file = "carps/container/credentials.yaml" + else: + database_credential_file = None + + experimenter = PyExperimenter( + experiment_configuration_file_path=experiment_configuration_file_path, + name="example_notebook", + database_credential_file_path=database_credential_file, + log_file=f"logs/{slurm_job_id}.log", + use_ssh_tunnel=OmegaConf.load(experiment_configuration_file_path).PY_EXPERIMENTER.Database.use_ssh_tunnel, + ) + + experimenter.unpause_experiment(experiment_id, optimizer_experiment) diff --git a/carps/container/container_script_problem.py b/carps/container/container_script_problem.py new file mode 100644 index 000000000..30106de67 --- /dev/null +++ b/carps/container/container_script_problem.py @@ -0,0 +1,35 @@ +from __future__ import annotations + +import json +import os + +from ConfigSpace.read_and_write import json as cs_json +from flask import Flask, request +from omegaconf import OmegaConf + +from carps.utils.running import make_problem +from carps.utils.trials import TrialInfo + +if (job_id := os.environ["BENCHMARKING_JOB_ID"]) != "": + cfg = OmegaConf.load(f"{job_id}_hydra_config.yaml") + +problem = make_problem(cfg=cfg) + +# TODO Check that problem container and problem match + +app = Flask(__name__) +app.run() + + +@app.route("/configspace", methods=["GET"]) +def _request_configspace() -> str: + return json.dumps(cs_json.write(problem.configspace)) + + +@app.route("/evaluate", methods=["POST"]) +def _request_evaluation() -> str: + if request.is_json: + trial_info = TrialInfo(**json.loads(request.get_json())) + return json.dumps(problem.evaluate(trial_info).to_json()) + else: + raise ValueError("Request is not JSON.") diff --git a/carps/container/container_script_runner.py b/carps/container/container_script_runner.py new file mode 100644 index 000000000..ad7e5233e --- /dev/null +++ b/carps/container/container_script_runner.py @@ -0,0 +1,60 @@ +from __future__ import annotations + +import json +import os +from typing import TYPE_CHECKING + +from omegaconf import OmegaConf +from py_experimenter.experiment_status import ExperimentStatus +from py_experimenter.experimenter import PyExperimenter + +if TYPE_CHECKING: + from py_experimenter.result_processor import ResultProcessor + + +def py_experimenter_evaluate(parameters: dict, result_processor: ResultProcessor, custom_config: dict): + config = parameters["config"] + cfg_dict = json.loads(config) + + job_id = os.environ["BENCHMARKING_JOB_ID"] + + result_processor.process_results({"slurm_job_id": job_id}) + + dict_config = OmegaConf.create(cfg_dict) + cfg_path = f"{job_id}_hydra_config.yaml" + OmegaConf.save(config=dict_config, f=cfg_path) + + with open(f"{job_id}_pyexperimenter_id.txt", "w+") as f: + f.write(str(result_processor.experiment_id)) + + with open(f"{job_id}_problem_container.txt", "w+") as f: + f.write(cfg_dict["benchmark_id"]) + + with open(f"{job_id}_optimizer_container.txt", "w+") as f: + f.write(cfg_dict["optimizer_container_id"]) + + return ExperimentStatus.PAUSED + + +def main() -> None: + slurm_job_id = os.environ["BENCHMARKING_JOB_ID"] + experiment_configuration_file_path = "carps/container/py_experimenter.yaml" + + if os.path.exists("carps/container/credentials.yaml"): + database_credential_file_path = "carps/container/credentials.yaml" + else: + database_credential_file_path = None + + experimenter = PyExperimenter( + experiment_configuration_file_path=experiment_configuration_file_path, + name="example_notebook", + database_credential_file_path=database_credential_file_path, + log_file=f"logs/{slurm_job_id}.log", + use_ssh_tunnel=OmegaConf.load(experiment_configuration_file_path).PY_EXPERIMENTER.Database.use_ssh_tunnel, + ) + + experimenter.execute(py_experimenter_evaluate, max_experiments=1) + + +if __name__ == "__main__": + main() diff --git a/carps/container/containerized_problem_client.py b/carps/container/containerized_problem_client.py new file mode 100644 index 000000000..e69de29bb diff --git a/carps/container/create_cluster_configs.py b/carps/container/create_cluster_configs.py new file mode 100644 index 000000000..2f43f5a97 --- /dev/null +++ b/carps/container/create_cluster_configs.py @@ -0,0 +1,100 @@ +from __future__ import annotations + +import hashlib +import json +import logging +from pathlib import Path + +import hydra +from omegaconf import DictConfig, OmegaConf +from py_experimenter.exceptions import DatabaseConnectionError +from py_experimenter.experimenter import PyExperimenter + +logger = logging.getLogger("create experiments") + + +@hydra.main(config_path="../configs", config_name="base.yaml", version_base=None) # type: ignore[misc] +def main(cfg: DictConfig) -> None: + """Run optimizer on problem. + + Save trajectory and metadata to database. + + Parameters + ---------- + cfg : DictConfig + Global configuration. + + """ + cfg_dict = OmegaConf.to_container(cfg=cfg, resolve=True) + + experiment_configuration_file_path = ( + cfg.pyexperimenter_configuration_file_path or Path(__file__).parent / "py_experimenter.yaml" + ) + + database_credential_file_path = cfg.database_credential_file_path or Path(__file__).parent / "credentials.yaml" + if database_credential_file_path is not None and not database_credential_file_path.exists(): + database_credential_file_path = None + + experimenter = PyExperimenter( + experiment_configuration_file_path=experiment_configuration_file_path, + name="carps", + database_credential_file_path=database_credential_file_path, + log_level=logging.INFO, + use_ssh_tunnel=OmegaConf.load(experiment_configuration_file_path).PY_EXPERIMENTER.Database.use_ssh_tunnel, + ) + + cfg_json = OmegaConf.to_container(cfg, resolve=True) + + # This value will always be unique so it + # disables duplicate checking when adding entries to the database. + # Py_experimenter will add a creation date so the information + # is not lost. + if "timestamp" in cfg_json: + del cfg_json["timestamp"] + + # Compute hash to efficiently compare configs. + # In MySQL json objects are reordered to improve performance. + # This means that there is no guarantee of the json strings + # to be equal. + cfg_str = json.dumps(cfg_json) + cfg_hash = hashlib.sha256(cfg_str.encode()).hexdigest() + + rows = [ + { + "config": cfg_str, + "config_hash": cfg_hash, + "benchmark_id": cfg_dict["benchmark_id"], + "problem_id": cfg_dict["problem_id"], + "optimizer_id": cfg_dict["optimizer_id"], + "optimizer_container_id": cfg_dict["optimizer_container_id"], + "seed": cfg_dict["seed"], + "n_trials": cfg_dict["task"]["n_trials"], + "time_budget": cfg_dict["task"]["time_budget"], + } + ] + + column_names = list(experimenter.db_connector.database_configuration.keyfields.keys()) + + exists = False + + try: + existing_rows = experimenter.db_connector._get_existing_rows(column_names) + + # Check if experiment exists + # Compare by hash only + for e in existing_rows: + if e["config_hash"] == cfg_hash: + exists = True + logger.info("Experiment not added to the database because config hash already exists!") + except DatabaseConnectionError as e: + if "1146" in e.args[0] or "no such table" in e.args[0]: + logger.info("Database empty, will fill.:)") + else: + raise e + + if not exists: + experimenter.fill_table_with_rows(rows) + + +if __name__ == "__main__": + main() diff --git a/carps/container/py_experimenter.yaml b/carps/container/py_experimenter.yaml new file mode 100644 index 000000000..3609172cd --- /dev/null +++ b/carps/container/py_experimenter.yaml @@ -0,0 +1,73 @@ +PY_EXPERIMENTER: + n_jobs: 1 + + Database: + use_ssh_tunnel: true + provider: mysql + database: smacbenchmarking + table: + name: results + keyfields: + config: + type: JSON + config_hash: + type: VARCHAR(64) + benchmark_id: + type: VARCHAR(50) + problem_id: + type: VARCHAR(50) + optimizer_id: + type: VARCHAR(50) + optimizer_container_id: + type: VARCHAR(50) + seed: + type: INT + n_trials: + type: INT + time_budget: + type: INT + resultfields: + slurm_job_id: VARCHAR(50) + resultfields.timestamps: false + + logtables: + trials: + n_trials: DOUBLE + n_function_calls: INT + trial_info__config: JSON + trial_info__instance: INT + trial_info__seed: INT + trial_info__budget: DOUBLE + trial_info__normalized_budget: DOUBLE + trial_info__name: TEXT + trial_info__checkpoint: TEXT + trial_value__cost: JSON + trial_value__time: DOUBLE + trial_value__virtual_time: DOUBLE + trial_value__status: VARCHAR(50) + trial_value__starttime: DOUBLE + trial_value__endtime: DOUBLE + trial_value__additional_info: JSON + trajectory: + n_trials: INT + trial_info__config: JSON + trial_info__instance: INT + trial_info__seed: INT + trial_info__budget: DOUBLE + trial_info__name: TEXT + trial_info__checkpoint: TEXT + trial_value__cost: JSON + trial_value__time: DOUBLE + trial_value__virtual_time: DOUBLE + trial_value__status: VARCHAR(50) + trial_value__starttime: DOUBLE + trial_value__endtime: DOUBLE + trial_value__additional_info: JSON + + CodeCarbon: + measure_power_secs: 15 + tracking_mode: machine + log_level: error + save_to_file: False + output_dir: output/CodeCarbon + offline_mode: False \ No newline at end of file diff --git a/carps/container/wrapper.py b/carps/container/wrapper.py new file mode 100644 index 000000000..584e21b1d --- /dev/null +++ b/carps/container/wrapper.py @@ -0,0 +1,38 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +import requests +from ConfigSpace.read_and_write import json as cs_json + +from carps.benchmarks.problem import Problem +from carps.utils.trials import TrialInfo, TrialValue + +if TYPE_CHECKING: + from ConfigSpace import ConfigurationSpace + + from carps.loggers.abstract_logger import AbstractLogger + + +class ContainerizedProblemClient(Problem): + def __init__(self, n_workers: int = 1, loggers: list[AbstractLogger] | None = None): + super().__init__(loggers=loggers) + self.n_workers = n_workers + self._configspace = None + + @property + def configspace(self) -> ConfigurationSpace: + if self._configspace is None: + # ask server about configspace + response = requests.get("http://localhost:5000/configspace") + self._configspace = cs_json.read(response.json()) + + return self._configspace + + def _evaluate(self, trial_info: TrialInfo) -> TrialValue: + # ask server about evaluation + response = requests.post("http://localhost:5000/evaluate", json=trial_info.to_json()) + return TrialValue.from_json(response.json()) + + def f_min(self) -> float | None: + raise NotImplementedError("f_min is not yet implemented for ContainerizedProblemClient") diff --git a/carps/loggers/__init__.py b/carps/loggers/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/carps/loggers/abstract_logger.py b/carps/loggers/abstract_logger.py new file mode 100644 index 000000000..c255b9ff3 --- /dev/null +++ b/carps/loggers/abstract_logger.py @@ -0,0 +1,65 @@ +from __future__ import annotations + +from abc import ABC, abstractmethod +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from carps.utils.trials import TrialInfo, TrialValue + from carps.utils.types import Incumbent + + +class AbstractLogger(ABC): + def __init__(self) -> None: + """AbstractLogger. + + Intercepts the trial info and value during evaluate. + """ + + @abstractmethod + def log_trial( + self, n_trials: float, trial_info: TrialInfo, trial_value: TrialValue, n_function_calls: int | None = None + ) -> None: + """Log the trial. + + Parameters + ---------- + n_trials : float + The number of trials that have been run so far. + For the case of multi-fidelity, a full trial + is a configuration evaluated on the maximum budget and + the counter is increased by `budget/max_budget` instead + of 1. + trial_info : TrialInfo + The trial info. + trial_value : TrialValue + The trial value. + n_function_calls: int | None, default None + The number of target function calls, no matter the budget. + """ + raise NotImplementedError + + @abstractmethod + def log_incumbent(self, n_trials: int, incumbent: Incumbent) -> None: + """Log the incumbents. + + Parameters + ---------- + n_trials : int + The number of trials that have been run so far. + incumbent : Incumbent + The incumbent (or multiple incumbents). + """ + raise NotImplementedError + + @abstractmethod + def log_arbitrary(self, data: dict, entity: str) -> None: + """Log arbitrary data. + + Parameters + ---------- + entity : str + The entity to which to log (e.g. filename, table name). + data : dict + The data to log. + """ + raise NotImplementedError diff --git a/carps/loggers/database_logger.py b/carps/loggers/database_logger.py new file mode 100644 index 000000000..ca1ccb2c7 --- /dev/null +++ b/carps/loggers/database_logger.py @@ -0,0 +1,90 @@ +from __future__ import annotations + +import json +from dataclasses import asdict +from typing import TYPE_CHECKING + +from carps.loggers.abstract_logger import AbstractLogger +from carps.utils.loggingutils import get_logger, setup_logging + +if TYPE_CHECKING: + from py_experimenter.result_processor import ResultProcessor + + from carps.optimizers.optimizer import Incumbent + from carps.utils.trials import TrialInfo, TrialValue + +setup_logging() +logger = get_logger("DatabaseLogger") + + +def convert_trial_info(trial_info, trial_value): + info = {"trial_info": asdict(trial_info), "trial_value": asdict(trial_value)} + info["trial_info"]["config"] = json.dumps(asdict(trial_info)["config"].get_dictionary()) + info["trial_value"]["status"] = info["trial_value"]["status"].name + info["trial_value"]["additional_info"] = json.dumps(info["trial_value"]["additional_info"]) + info["trial_value"]["cost"] = json.dumps({"cost": json.dumps(info["trial_value"]["cost"])}) + keys = ["trial_info", "trial_value"] + for key in keys: + d = info.pop(key) + for k, v in d.items(): + if v is not None: + k_new = f"{key}__{k}" + info[k_new] = v + else: + # If v is None, we omit it from the dict. + # Missing keys will automatically be filled with NULL in MySQL. + pass + return info + + +class DatabaseLogger(AbstractLogger): + def __init__(self, result_processor: ResultProcessor | None = None) -> None: + super().__init__() + self.result_processor = result_processor + if self.result_processor is None: + logger.info("Not logging to database (result processor is None).") + + def log_trial( + self, n_trials: int, trial_info: TrialInfo, trial_value: TrialValue, n_function_calls: int | None = None + ) -> None: + """Evaluate the problem and log the trial. + + Parameters + ---------- + n_trials : float + The number of trials that have been run so far. + For the case of multi-fidelity, a full trial + is a configuration evaluated on the maximum budget and + the counter is increased by `budget/max_budget` instead + of 1. + trial_info : TrialInfo + The trial info. + trial_value : TrialValue + The trial value. + n_function_calls: int | None, default None + The number of target function calls, no matter the budget. + """ + info = convert_trial_info(trial_info, trial_value) + info["n_trials"] = n_trials + info["n_function_calls"] = n_function_calls if n_function_calls else n_trials + + if self.result_processor: + self.result_processor.process_logs({"trials": info}) + + def log_incumbent(self, n_trials: int, incumbent: Incumbent) -> None: + if incumbent is None: + return + + if not isinstance(incumbent, list): + incumbent = [incumbent] + + for inc in incumbent: + info = convert_trial_info(inc[0], inc[1]) + info["n_trials"] = n_trials + + if self.result_processor: + self.result_processor.process_logs({"trajectory": info}) + + def log_arbitrary(self, data: dict, entity: str) -> None: + if self.result_processor: + self.result_processor.process_logs({entity: data}) diff --git a/carps/loggers/file_logger.py b/carps/loggers/file_logger.py new file mode 100644 index 000000000..c821af61c --- /dev/null +++ b/carps/loggers/file_logger.py @@ -0,0 +1,174 @@ +from __future__ import annotations + +import json +import logging +import os +import traceback +import warnings +from dataclasses import asdict +from pathlib import Path +from typing import TYPE_CHECKING + +from hydra.core.hydra_config import HydraConfig +from hydra.types import RunMode + +from carps.loggers.abstract_logger import AbstractLogger +from carps.utils.loggingutils import get_logger, setup_logging + +if TYPE_CHECKING: + from carps.optimizers.optimizer import Incumbent + from carps.utils.trials import TrialInfo, TrialValue + +setup_logging() +logger = get_logger("FileLogger") + + +def get_run_directory() -> Path: + """Get current run dir. + + Either '.' if hydra not active, else hydra run dir. + + Returns: + ------- + Path + Directory + """ + try: + # Check if we are in a hydra context + hydra_cfg = HydraConfig.instance().get() + if hydra_cfg.mode == RunMode.RUN: + return Path(hydra_cfg.run.dir) + + # TODO: How can we check to actually make sure it's a multi-run... + # MULTIRUN + return Path(hydra_cfg.sweep.dir) / hydra_cfg.sweep.subdir + except Exception as e: + cwd = Path.cwd() + tb = traceback.format_exc() + msg = f"Unexpected issue getting current run_directory!\n{tb}\n{e}\n\nReturning current directory of {cwd}." + warnings.warn(msg, category=UserWarning, stacklevel=2) + return cwd + + +def dump_logs(log_data: dict, filename: str, directory: str | Path | None = None): + """Dump log dict in jsonl format. + + This appends one json dict line to the filename. + + Parameters + ---------- + log_data : dict + Data to log, must be json serializable. + filename : str + Filename without path. The path will be either the + current working directory or if it is called during + a hydra session, the hydra run dir will be the log + dir. + directory: str | None, defaults to None + Directory to log to. If None, either use hydra run dir or current dir. + """ + log_data_str = json.dumps(log_data) + "\n" + _dir = Path(directory) if directory is not None else get_run_directory() + filepath = _dir / filename + filepath.parent.mkdir(parents=True, exist_ok=True) + with filepath.open("a") as file: + file.writelines([log_data_str]) + + +def convert_trials(n_trials, trial_info, trial_value, n_function_calls: int | None = None): + if n_function_calls is None: + n_function_calls = n_trials + info = { + "n_trials": n_trials, + "n_function_calls": n_function_calls, + "trial_info": asdict(trial_info), + "trial_value": asdict(trial_value), + } + info["trial_info"]["config"] = list(dict(info["trial_info"]["config"]).values()) + info["trial_value"]["virtual_time"] = float(info["trial_value"]["virtual_time"]) + return info + + +class FileLogger(AbstractLogger): + _filename: str = "trial_logs.jsonl" + _filename_trajectory: str = "trajectory_logs.jsonl" + + def __init__(self, overwrite: bool = False, directory: str | Path | None = None) -> None: + """File logger. + + For each trial/function evaluate, write one line to the file. + This line contains the json serialized info dict with `n_trials`, + `trial_info` and `trial_value`. + + Parameters + ------ + overwrite: bool, defaults to True + Delete previous logs in that directory if True. + If false, raise an error message. + directory: str | None, defaults to None + Directory to log to. If None, either use hydra run dir or current dir. + + """ + super().__init__() + + directory = Path(directory) if directory is not None else get_run_directory() + self.directory = directory + if (directory / self._filename).is_file(): + if overwrite: + logger.info(f"Found previous run. Removing '{directory}'.") + for root, _dirs, files in os.walk(directory): + for f in files: + full_fn = os.path.join(root, f) + if ".hydra" not in full_fn: + os.remove(full_fn) + logger.debug(f"Removed {full_fn}") + else: + raise RuntimeError( + f"Found previous run at '{directory}'. Stopping run. If you want to overwrite, specify overwrite " + f"for the file logger in the config (CARP-S/carps/configs/logger.yaml)." + ) + + def log_trial( + self, n_trials: int, trial_info: TrialInfo, trial_value: TrialValue, n_function_calls: int | None = None + ) -> None: + """Evaluate the problem and log the trial. + + Parameters + ---------- + n_trials : float + The number of trials that have been run so far. + For the case of multi-fidelity, a full trial + is a configuration evaluated on the maximum budget and + the counter is increased by `budget/max_budget` instead + of 1. + trial_info : TrialInfo + The trial info. + trial_value : TrialValue + The trial value. + n_function_calls: int | None, default None + The number of target function calls, no matter the budget. + """ + info = convert_trials(n_trials, trial_info, trial_value, n_function_calls) + if logger.level >= logging.DEBUG: + info_str = json.dumps(info) + "\n" + logger.debug(info_str) + else: + info_str = f"n_trials: {info['n_trials']}, config: {info['trial_info']['config']}, cost: {info['trial_value']['cost']}" + if info["trial_info"]["budget"] is not None: + info_str += f" budget: {info['trial_info']['budget']}" + logger.info(info_str) + + dump_logs(log_data=info, filename=self._filename, directory=self.directory) + + def log_incumbent(self, n_trials: int, incumbent: Incumbent) -> None: + if incumbent is None: + return + if not isinstance(incumbent, list): + incumbent = [incumbent] + + for inc in incumbent: + info = convert_trials(n_trials, inc[0], inc[1]) + dump_logs(log_data=info, filename=self._filename_trajectory, directory=self.directory) + + def log_arbitrary(self, data: dict, entity: str) -> None: + dump_logs(log_data=data, filename=f"{entity}.jsonl", directory=self.directory) diff --git a/carps/optimizers/__init__.py b/carps/optimizers/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/carps/optimizers/dehb.py b/carps/optimizers/dehb.py new file mode 100644 index 000000000..f6c8cd37e --- /dev/null +++ b/carps/optimizers/dehb.py @@ -0,0 +1,165 @@ +"""DEHB Optimizer. + +* Source: https://github.com/automl/DEHB/tree/master +""" + +from __future__ import annotations + +from typing import TYPE_CHECKING, Any + +from dehb import DEHB + +from carps.optimizers.optimizer import Optimizer +from carps.utils.trials import TrialInfo, TrialValue + +if TYPE_CHECKING: + from ConfigSpace import Configuration, ConfigurationSpace + from omegaconf import DictConfig + + from carps.benchmarks.problem import Problem + from carps.loggers.abstract_logger import AbstractLogger + from carps.utils.task import Task + from carps.utils.types import Incumbent + + +class DEHBOptimizer(Optimizer): + """An optimizer that uses DEHB to optimize an objective function.""" + + def __init__( + self, + problem: Problem, + dehb_cfg: DictConfig, + task: Task, + loggers: list[AbstractLogger] | None = None, + ) -> None: + super().__init__(problem, task, loggers) + + self.fidelity_enabled = True + self.task = task + self.dehb_cfg = dehb_cfg + self.configspace = self.convert_configspace(problem.configspace) + self.configspace.seed(dehb_cfg.seed) + if self.task.max_budget is None: + raise ValueError("max_budget must be specified to run DEHB!") + if self.task.min_budget is None: + raise ValueError("min_budget must be specified to run DEHB!") + self._solver: DEHB | None = None + self.history: dict[str, dict[str, Any]] = {} + + def _setup_optimizer(self) -> Any: + return DEHB( + cs=self.configspace, + min_fidelity=self.task.min_budget, + max_fidelity=self.task.max_budget, + n_workers=self.task.n_workers, + **self.dehb_cfg, + ) + + def convert_configspace(self, configspace: ConfigurationSpace) -> ConfigurationSpace: + """Convert configuration space from Problem to Optimizer. + + Here, we don't need to convert. + + Parameters + ---------- + configspace : ConfigurationSpace + Configuration space from Problem. + + Returns: + ------- + ConfigurationSpace + Configuration space for Optimizer. + """ + return configspace + + def convert_to_trial( # type: ignore[override] + self, + config: Configuration, + name: str | None = None, + seed: int | None = None, + budget: float | None = None, + ) -> TrialInfo: + """Convert proposal from DEHB to TrialInfo. + + This ensures that the problem can be evaluated with a unified API. + + Parameters + ---------- + config : Configuration + Configuration from DEHB. + name : str, optional + Name of the trial, by default None + seed : int, optional + Seed of the trial, by default None + budget : float, optional + Budget of the trial, by default None + + Returns: + ------- + TrialInfo + Trial info containing configuration, budget, seed, instance. + """ + return TrialInfo(config=config, name=name, seed=seed, budget=budget) + + def ask(self) -> TrialInfo: + """Ask the optimizer for a new trial to evaluate. + + If the optimizer does not support ask and tell, + raise `carps.utils.exceptions.AskAndTellNotSupportedError` + in child class. + + Returns: + ------- + TrialInfo + trial info (config, seed, instance, budget) + """ + info = self.solver.ask() + unique_name = f"{info['config_id']}_{info['fidelity']}_{self.dehb_cfg.seed}" + self.history[unique_name] = info + return self.convert_to_trial( + config=info["config"], + name=unique_name, + seed=self.dehb_cfg.seed, + budget=info["fidelity"], + ) + + def tell(self, trial_info: TrialInfo, trial_value: TrialValue) -> None: + """Tell the optimizer a new trial. + + If the optimizer does not support ask and tell, + raise `carps.utils.exceptions.AskAndTellNotSupportedError` + in child class. + + Parameters + ---------- + trial_info : TrialInfo + trial info (config, seed, instance, budget) + trial_value : TrialValue + trial value (cost, time, ...) + """ + unique_name = trial_info.name + assert unique_name is not None + assert unique_name in self.history + assert self._solver is not None + + dehb_job_info = self.history[unique_name] + if isinstance(trial_value.cost, list): + raise NotImplementedError("Multiobjective optimization not yet implemented for DEHB!") + dehb_result = {"fitness": float(trial_value.cost), "cost": (trial_value.time)} + self.solver.tell(dehb_job_info, dehb_result) + + def get_current_incumbent(self) -> Incumbent: + """Extract the incumbent config and cost. May only be available after a complete run. + + Returns: + ------- + Incumbent: tuple[TrialInfo, TrialValue] | list[tuple[TrialInfo, TrialValue]] | None + The incumbent configuration with associated cost. + """ + incumbent = self.solver.get_incumbents() + inc_config = self.convert_to_trial( + config=incumbent[0], + seed=self.dehb_cfg.seed, + ) + inc_value = TrialValue(cost=incumbent[1]) + return (inc_config, inc_value) diff --git a/carps/optimizers/dummy_optimizer.py b/carps/optimizers/dummy_optimizer.py new file mode 100644 index 000000000..014c01941 --- /dev/null +++ b/carps/optimizers/dummy_optimizer.py @@ -0,0 +1,55 @@ +from __future__ import annotations + +from time import sleep +from typing import TYPE_CHECKING, Any + +from carps.optimizers.optimizer import Optimizer +from carps.utils.trials import TrialInfo, TrialValue + +if TYPE_CHECKING: + from ConfigSpace import Configuration, ConfigurationSpace + from omegaconf import DictConfig + + from carps.benchmarks.problem import Problem + from carps.loggers.abstract_logger import AbstractLogger + from carps.utils.task import Task + from carps.utils.types import Incumbent, SearchSpace + + +class DummyOptimizer(Optimizer): + def __init__( + self, + dummy_cfg: DictConfig, + problem: Problem, + task: Task, + loggers: list[AbstractLogger] | None = None, + ) -> None: + super().__init__(problem, task, loggers) + self.cfg = dummy_cfg + self.history: list[TrialInfo, TrialValue] = [] + if "budget" in self.cfg: + self.fidelity_enabled = True + self.budget = self.cfg.budget + else: + self.fidelity_enabled = False + self.budget = None + + def _setup_optimizer(self) -> Any: + pass + + def convert_configspace(self, configspace: ConfigurationSpace) -> SearchSpace: + return configspace + + def convert_to_trial(self, config: Configuration, budget: float | None = None) -> TrialInfo: + return TrialInfo(config=config, budget=budget) + + def ask(self) -> TrialInfo: + sleep(1) + config = self.problem.configspace.sample_configuration() + return self.convert_to_trial(config, budget=self.budget) + + def tell(self, trial_info: TrialInfo, trial_value: TrialValue) -> None: + self.history.append((trial_info, trial_value)) + + def get_current_incumbent(self) -> Incumbent: + return min(self.history, key=lambda x: x[1].cost) diff --git a/carps/optimizers/hebo.py b/carps/optimizers/hebo.py new file mode 100644 index 000000000..6726a54e9 --- /dev/null +++ b/carps/optimizers/hebo.py @@ -0,0 +1,360 @@ +"""Implementation of HEBO Optimizer. + +[2024-03-27] +Note that running `python carps/run.py +optimizer/hebo=config +problem/DUMMY=config seed=1 task.n_trials=25` +raises following error: +"linear_operator.utils.errors.NanError: cholesky_cpu: 4 of 4 elements of the torch.Size([2, 2]) tensor are NaN." + +This is related to this issue: https://github.com/huawei-noah/HEBO/issues/61. + +For non-dummy problems HEBO works fine. +""" + +from __future__ import annotations + +from collections import OrderedDict, abc +from typing import TYPE_CHECKING + +import numpy as np +import pandas as pd +from ConfigSpace import Configuration, ConfigurationSpace +from ConfigSpace.hyperparameters import ( + CategoricalHyperparameter, + Constant, + FloatHyperparameter, + Hyperparameter, + IntegerHyperparameter, + OrdinalHyperparameter, +) +from hebo.design_space.design_space import DesignSpace +from hebo.optimizers.hebo import HEBO + +from carps.optimizers.optimizer import Optimizer +from carps.utils.trials import TrialInfo, TrialValue + +if TYPE_CHECKING: + from carps.benchmarks.problem import Problem + from carps.loggers.abstract_logger import AbstractLogger + from carps.utils.task import Task + from carps.utils.types import Incumbent + + +def configspaceHP2HEBOHP(hp: Hyperparameter) -> dict: + """Convert ConfigSpace hyperparameter to HEBO hyperparameter. + + Parameters + ---------- + hp : Hyperparameter + ConfigSpace hyperparameter + + Returns: + ------- + dict + HEBO hyperparameter + + Raises: + ------ + NotImplementedError + If ConfigSpace hyperparameter is anything else than + IntegerHyperparameter, FloatHyperparameter, CategoricalHyperparameter, + OrdinalHyperparameter or Constant + """ + if isinstance(hp, IntegerHyperparameter): + if hp.log: + return {"name": hp.name, "type": "pow_int", "lb": hp.lower, "ub": hp.upper} + else: + return {"name": hp.name, "type": "int", "lb": hp.lower, "ub": hp.upper} + elif isinstance(hp, FloatHyperparameter): + if hp.log: + return {"name": hp.name, "type": "pow", "lb": hp.lower, "ub": hp.upper} + else: + return {"name": hp.name, "type": "num", "lb": hp.lower, "ub": hp.upper} + elif isinstance(hp, CategoricalHyperparameter): + return {"name": hp.name, "type": "cat", "categories": hp.choices} + elif isinstance(hp, OrdinalHyperparameter): + return { + "name": hp.name, + "type": "step_int", + "lb": 0, + "ub": len(hp.sequence), + "step": 1, + } + elif isinstance(hp, Constant): + return {"name": hp.name, "type": "cat", "categories": [hp.value]} + else: + raise NotImplementedError(f"Unknown hyperparameter type: {hp.__class__.__name__}") + + +def HEBOcfg2ConfigSpacecfg( + hebo_suggestion: pd.DataFrame, + design_space: DesignSpace, + config_space: ConfigurationSpace, + allow_inactive_with_values: bool = True, +) -> Configuration: + """Convert HEBO config to ConfigSpace config. + + Parameters + ---------- + hebo_suggestion : pd.DataFrame + Configuration in HEBO format + design_space : DesignSpace + HEBO design space + config_space : ConfigurationSpace + ConfigSpace configuration space + allow_inactive_with_values : bool + Allow values for inactive hyperparameters. This is relevant if the space has + conditionals but the optimizer does not support them. + + Returns: + ------- + Configuration + Config in ConfigSpace format + + Raises: + ------ + ValueError + If HEBO config is more than 1 + """ + if len(hebo_suggestion) > 1: + raise ValueError(f"Only one suggestion is ok, got {len(hebo_suggestion)}.") + hyp = hebo_suggestion.iloc[0].to_dict() + for k in hyp: + hp_type = design_space.paras[k] + if hp_type.is_numeric and hp_type.is_discrete and not np.isnan(hyp[k]): + hyp[k] = int(hyp[k]) + # Now we need to check if it is an ordinal hp + hp_k = config_space.get_hyperparameter(k) + if isinstance(hp_k, OrdinalHyperparameter): + hyp[k] = hp_k.sequence[hyp[k]] + + return Configuration( + configuration_space=config_space, values=hyp, allow_inactive_with_values=allow_inactive_with_values + ) + + +def ConfigSpacecfg2HEBOcfg(config: Configuration) -> pd.DataFrame: + """Convert ConfigSpace config to HEBO suggestion. + + Parameters + ---------- + config : Configuration + Configuration + + Returns: + ------- + pd.DataFrame + Configuration in HEBO format, e.g. + x1 x2 + 0 2.817594 0.336420 + """ + config_dict = dict(config) + return pd.DataFrame(config_dict, index=[0]) + + +class HEBOOptimizer(Optimizer): + def __init__(self, problem: Problem, task: Task, loggers: list[AbstractLogger] | None = None) -> None: + """Interface to HEBO (https://github.com/huawei-noah/HEBO) [1]. + + [1] Cowen-Rivers, Alexander I., et al. "An Empirical Study of Assumptions in Bayesian Optimisation." arXiv preprint arXiv:2012.03826 (2021). + + HEBO does not support conditional configuration spaces as well as priors for hyperparameters. + + + Parameters + ---------- + problem : Problem + _description_ + task : Task + The task description. + + Raises: + ------ + ValueError + If neither `num_trials` nor `max_wallclock_time` is specified. + """ + super().__init__(problem, task, loggers) + + # TODO: Extend HEBO to MO (maybe just adding a config suffices) + self.configspace = self.problem.configspace + + if len(self.configspace.get_conditions()) > 0: + pass + # msg = "HEBO does not support conditional search spaces." + # raise RuntimeError(msg) + + self.hebo_configspace = self.convert_configspace(self.configspace) + self.metric = getattr(problem, "metric", "cost") + self.budget_type = getattr(self.problem, "budget_type", None) + self.trial_counter = 0 + + self._solver: HEBO | None = None + + self.completed_experiments: OrderedDict[int, tuple[TrialValue, TrialInfo]] = OrderedDict() + + def convert_configspace(self, configspace: ConfigurationSpace) -> DesignSpace: + """Convert configuration space from Problem to Optimizer. + + Convert the configspace from ConfigSpace to HEBO. However, given that syne-tune does not support + conditions and forbidden clauses, we only add hyperparameters here + + Parameters + ---------- + configspace : ConfigurationSpace + Configuration space from Problem. + + dict[str, Any] + ------- + DesignSpace + HEBO design space + """ + hps_hebo = [] + for _, v in configspace.items(): + hps_hebo.append(configspaceHP2HEBOHP(v)) + return DesignSpace().parse(hps_hebo) + + def convert_from_trial(self, trial_info: TrialInfo) -> pd.DataFrame: + return ConfigSpacecfg2HEBOcfg( + config=trial_info.config, + ) + + def convert_to_trial(self, rec: pd.DataFrame) -> TrialInfo: + """Convert HEBO's recommendation to trial info. + + Parameters + ---------- + rec : pd.DataFrame + HEBO recommendation, can look like this for 2d: + x1 x2 + 0 2.817594 0.336420 + 1 -2.293059 -1.381435 + 2 -0.666595 2.016661 + 3 0.130466 -3.203030 + + These are four points. + + Returns: + ------- + TrialInfo + trial info, needed to interact with the Problem + """ + if len(rec) > 1: + raise ValueError(f"Only one suggestion is ok, got {len(rec)}.") + config = HEBOcfg2ConfigSpacecfg( + hebo_suggestion=rec, + design_space=self.hebo_configspace, + config_space=self.problem.configspace, + allow_inactive_with_values=True, + ) + return TrialInfo(config=config, instance=None, budget=None, seed=None) + + def ask(self) -> TrialInfo: + """Ask the optimizer for a new trial to run. + + Returns: + ------- + TrialInfo + Configuration, instance, seed, budget + """ + rec = self._solver.suggest(1) + return self.convert_to_trial(rec=rec) + + def tell(self, trial_info: TrialInfo, trial_value: TrialValue) -> None: + """Tell: Feed experiment results back to optimizer. + + Parameters + ---------- + trial_info : TrialInfo + Configuration, instance, seed, budget + trial_value : TrialValue + Cost and additional information + """ + cost = trial_value.cost + suggestion = self.convert_from_trial(trial_info=trial_info) + + self.trial_counter += 1 + cost = np.asarray([cost]) if isinstance(cost, abc.Sequence) else np.asarray(cost) + + self._solver.observe(suggestion, np.asarray([cost])) + + def evaluate(self, trial_info: TrialInfo) -> TrialValue: + """Evaluate target function. + + Store data point. + + Parameters + ---------- + trial_info : TrialInfo + Which config to evaluate (and instance, seed, budget) + + Returns: + ------- + TrialValue + Information about function evaluation + """ + trial_value = self.problem.evaluate(trial_info=trial_info) + self.completed_experiments[self.trial_counter] = (trial_value, trial_info) + return trial_value + + def _setup_optimizer(self) -> HEBO: + """Setup Optimizer. + + Returns: + ------- + HEBO + Instance of a HEBO Optimizer + + """ + return HEBO(space=self.hebo_configspace) + + def get_trajectory(self, sort_by: str = "trials") -> tuple[list[float], list[float]]: + """List of x and y values of the incumbents over time. x depends on ``sort_by``. + + Parameters + ---------- + sort_by: str + Can be "trials" or "walltime". + + Returns: + ------- + tuple[list[float], list[float]] + + """ + # if len(self.task.objectives) > 1: + # raise NotSupportedError + + X: list[int | float] = [] + Y: list[float] = [] + + current_incumbent = np.inf + + for k, v in self.completed_experiments.items(): + trial_value, trial_info = v + cost = trial_value.cost + if cost > 1e6: + continue + if current_incumbent < cost: + current_incumbent = cost + + if sort_by == "trials": + X.append(k) + elif sort_by == "walltime": + X.append(trial_value.endtime) + else: + raise RuntimeError("Unknown sort_by.") + + Y.append(cost) + + return X, Y + + def get_current_incumbent(self) -> Incumbent: + best_x = self.solver.best_x + best_y = self.solver.best_y + config = HEBOcfg2ConfigSpacecfg( + hebo_suggestion=best_x, + design_space=self.hebo_configspace, + config_space=self.problem.configspace, + allow_inactive_with_values=True, + ) + trial_info = TrialInfo(config=config) + trial_value = TrialValue(cost=best_y) + return (trial_info, trial_value) diff --git a/carps/optimizers/nevergrad.py b/carps/optimizers/nevergrad.py new file mode 100644 index 000000000..08aefc246 --- /dev/null +++ b/carps/optimizers/nevergrad.py @@ -0,0 +1,258 @@ +"""Nevergrad optimizer. + +* Nevergrad Documentation: https://facebookresearch.github.io/nevergrad/ +* List of Optimizers available: +* https://facebookresearch.github.io/nevergrad/optimizers_ref.html#optimizers +* Other Optimizers: +* Hyperopt: https://github.com/hyperopt/hyperopt, +* CMA-ES: https://github.com/CMA-ES/pycma, +* bayes_opt: https://github.com/bayesian-optimization/BayesianOptimization +* DE: https://facebookresearch.github.io/nevergrad/optimizers_ref.html#nevergrad.families.DifferentialEvolution +""" + +from __future__ import annotations + +from typing import TYPE_CHECKING + +import ConfigSpace.hyperparameters as CSH +import nevergrad as ng +import numpy as np +from ConfigSpace import Configuration, ConfigurationSpace + +from carps.optimizers.optimizer import Optimizer +from carps.utils.trials import TrialInfo, TrialValue + +if TYPE_CHECKING: + from nevergrad.optimization.base import ( + ConfiguredOptimizer as ConfNGOptimizer, + Optimizer as NGOptimizer, + ) + from nevergrad.parametrization import parameter + from omegaconf import DictConfig + + from carps.benchmarks.problem import Problem + from carps.loggers.abstract_logger import AbstractLogger + from carps.utils.task import Task + from carps.utils.types import Incumbent + + +opt_list = sorted(ng.optimizers.registry.keys()) +ext_opts = { + "Hyperopt": ng.optimization.optimizerlib.NGOpt13, + "CMA-ES": ng.optimization.optimizerlib.ParametrizedCMA, + "bayes_opt": ng.optimization.optimizerlib.ParametrizedBO, + "DE": ng.families.DifferentialEvolution, + "EvolutionStrategy": ng.families.EvolutionStrategy, +} + + +def CS_to_nevergrad_space(hp: CSH.Hyperparameter) -> ng.p.Instrumentation: + """Convert ConfigSpace to Nevergrad Parameter.""" + if isinstance(hp, CSH.FloatHyperparameter): + if hp.log: + return ng.p.Log(lower=hp.lower, upper=hp.upper) + else: + return ng.p.Scalar(lower=hp.lower, upper=hp.upper) + elif isinstance(hp, CSH.IntegerHyperparameter): + if hp.log: + return ng.p.Log(lower=hp.lower, upper=hp.upper).set_integer_casting() + else: + return ng.p.Scalar(lower=hp.lower, upper=hp.upper).set_integer_casting() + elif isinstance(hp, CSH.CategoricalHyperparameter): + return ng.p.Choice(hp.choices) + elif isinstance(hp, CSH.OrdinalHyperparameter): + return ng.p.TransitionChoice(hp.sequence) + elif isinstance(hp, CSH.Constant): + return ng.p.Choice([hp.value]) + else: + raise NotImplementedError(f"Unknown hyperparameter type: {hp.__class__.__name__}") + + +class NevergradOptimizer(Optimizer): + """An optimizer that uses Nevergrad to optimize an objective function.""" + + def __init__( + self, + problem: Problem, + nevergrad_cfg: DictConfig, + optimizer_cfg: DictConfig, + task: Task, + loggers: list[AbstractLogger] | None = None, + ) -> None: + super().__init__(problem, task, loggers) + + self.fidelity_enabled = False + self.fidelity_type = None + if self.task.is_multifidelity: + self.fidelity_enabled = True + self.fidelity_type: str = self.task.fidelity_type + self.task = task + self.configspace = problem.configspace + self.ng_space = self.convert_configspace(self.configspace) + self.nevergrad_cfg = nevergrad_cfg + self.optimizer_cfg = optimizer_cfg + if self.optimizer_cfg is None: + self.optimizer_cfg = {} + if self.nevergrad_cfg.optimizer_name not in opt_list and self.nevergrad_cfg.optimizer_name not in ext_opts: + raise ValueError(f"Optimizer {self.nevergrad_cfg.optimizer_name} not found in Nevergrad!") + + self._solver: NGOptimizer | ConfNGOptimizer | None = None + self.counter = 0 + self.history: dict[str, tuple[ng.p.Parameter, float | list[float] | None]] = {} + + def convert_configspace(self, configspace: ConfigurationSpace) -> ng.p.Parameter: + """Convert ConfigSpace configuration space to search space from optimizer. + + Parameters + ---------- + configspace : ConfigurationSpace + Configuration space from Problem. + + Returns: + ------- + SearchSpace + Optimizer's search space. + """ + ng_param = ng.p.Dict() + for hp in configspace.get_hyperparameters(): + ng_param[hp.name] = CS_to_nevergrad_space(hp) + return ng_param + + def _setup_optimizer(self) -> NGOptimizer | ConfNGOptimizer: + if self.nevergrad_cfg.optimizer_name in ext_opts: + if self.nevergrad_cfg.optimizer_name == "Hyperopt": + ng_opt = ext_opts[self.nevergrad_cfg.optimizer_name] + else: + ng_opt = ext_opts[self.nevergrad_cfg.optimizer_name](**self.optimizer_cfg) + ng_opt = ng_opt( + parametrization=self.ng_space, + budget=self.task.n_trials, + num_workers=self.task.n_workers, + ) + else: + ng_opt = ng.optimizers.registry[self.nevergrad_cfg.optimizer_name]( + parametrization=self.ng_space, + budget=self.task.n_trials, + num_workers=self.task.n_workers, + ) + ng_opt.parametrization.random_state = np.random.RandomState(self.nevergrad_cfg.seed) + return ng_opt + + def convert_to_trial( # type: ignore[override] + self, + config: Configuration, + name: str | None = None, + seed: int | None = None, + budget: float | None = None, + ) -> TrialInfo: + """Convert proposal from Nevergrad to TrialInfo. + + This ensures that the problem can be evaluated with a unified API. + + Parameters + ---------- + config : Configuration + Configuration from Nevergrad. + name : str, optional + Name of the trial, by default None + seed : int, optional + Seed of the trial, by default None + + Returns: + ------- + TrialInfo + Trial info containing configuration, budget, seed, instance. + """ + return TrialInfo( + config=config, + name=name, + seed=self.nevergrad_cfg.seed, + budget=budget, + instance=None, + ) + + def ask(self) -> TrialInfo: + """Ask the optimizer for a new trial to evaluate. + + If the optimizer does not support ask and tell, + raise `carps.utils.exceptions.AskAndTellNotSupportedError` + in child class. + + Returns: + ------- + TrialInfo + trial info (config, seed, instance, budget) + """ + config: parameter.Parameter = self.solver.ask() + unique_name = f"{self.counter}_{config.value}_{self.nevergrad_cfg.seed}" + self.history[unique_name] = (config, None) + trial_info = self.convert_to_trial( + config=Configuration(self.configspace, values=config.value, allow_inactive_with_values=True), + name=unique_name, + seed=self.nevergrad_cfg.seed, + budget=None if not self.fidelity_enabled else self.task.max_budget, + ) + self.counter += 1 + return trial_info + + def tell(self, trial_info: TrialInfo, trial_value: TrialValue) -> None: + """Tell the optimizer a new trial. + + If the optimizer does not support ask and tell, + raise `carps.utils.exceptions.AskAndTellNotSupportedError` + in child class. + + Parameters + ---------- + trial_info : TrialInfo + trial info (config, seed, instance, budget) + trial_value : TrialValue + trial value (cost, time, ...) + """ + unique_name = trial_info.name + assert unique_name is not None + assert unique_name in self.history + assert self._solver is not None + + self.history[unique_name] = (self.history[unique_name][0], trial_value.cost) + + self.solver.tell( + self.history[unique_name][0], + trial_value.cost, + ) + + def get_current_incumbent(self) -> Incumbent: + """Extract the incumbent config and cost. May only be available after a complete run. + + Returns: + ------- + Incumbent: tuple[TrialInfo, TrialValue] | list[tuple[TrialInfo, TrialValue]] | None + The incumbent configuration with associated cost. + """ + incumbent = None + cost = None + unique_name = None + if self.task.n_objectives > 1: + configs = self.solver.pareto_front() + costs = [param.losses.tolist() for param in configs] + trial_info = [ + self.convert_to_trial(config=Configuration(self.configspace, values=config.value)) for config in configs + ] + trial_value = [TrialValue(cost=cost) for cost in costs] + incumbent_tuple = list(zip(trial_info, trial_value, strict=False)) + else: + for name, value in self.history.items(): + if incumbent is None or value[1] < cost: + incumbent = value[0].value + cost = value[1] + unique_name = name + if cost is None: + raise ValueError(f"Tried to get Incumbent without calling tell() for config {incumbent}!") + trial_info = self.convert_to_trial( + config=Configuration(self.configspace, values=incumbent, allow_inactive_with_values=True), + name=unique_name, + seed=self.nevergrad_cfg.seed, + ) + trial_value = TrialValue(cost=cost) + incumbent_tuple = (trial_info, trial_value) + return incumbent_tuple diff --git a/carps/optimizers/optimizer.py b/carps/optimizers/optimizer.py new file mode 100644 index 000000000..2b95846b5 --- /dev/null +++ b/carps/optimizers/optimizer.py @@ -0,0 +1,192 @@ +from __future__ import annotations + +import time +from abc import ABC, abstractmethod +from typing import TYPE_CHECKING, Any + +from omegaconf import DictConfig, OmegaConf + +from carps.utils.task import Task +from carps.utils.trials import TrialInfo, TrialValue + +if TYPE_CHECKING: + from ConfigSpace import ConfigurationSpace + + from carps.benchmarks.problem import Problem + from carps.loggers.abstract_logger import AbstractLogger + from carps.utils.types import Incumbent, SearchSpace + + +class Optimizer(ABC): + def __init__( + self, problem: Problem, task: Task | dict | DictConfig, loggers: list[AbstractLogger] | None = None + ) -> None: + super().__init__() + self.problem = problem + + if isinstance(task, dict): + task = Task(**task) + elif isinstance(task, DictConfig): + task = Task(**OmegaConf.to_container(cfg=task, resolve=True)) + elif isinstance(task, Task): + pass + else: + raise ValueError("task must be either `Task`, `dict` or `DictConfig`.") + + self.task: Task = task + self.loggers: list[AbstractLogger] = loggers if loggers is not None else [] + + # Convert min to seconds + self.time_budget = self.task.time_budget * 60 if self.task.time_budget is not None else None + self.virtual_time_elapsed_seconds: float | None = 0.0 + self.trial_counter: float = 0 + + # This indicates if the optimizer can deal with multi-fidelity optimization + self.fidelity_enabled = False + + self._solver: Any = None + self._last_incumbent: tuple[TrialInfo, TrialValue] | None = None + + @property + def solver(self) -> Any: + return self._solver + + @solver.setter + def solver(self, value: Any) -> None: + self._solver = value + + def setup_optimizer(self): + self.solver = self._setup_optimizer() + + @abstractmethod + def _setup_optimizer(self) -> Any: + raise NotImplementedError + + @abstractmethod + def convert_configspace(self, configspace: ConfigurationSpace) -> SearchSpace: + """Convert ConfigSpace configuration space to search space from optimizer. + + Parameters + ---------- + configspace : ConfigurationSpace + Configuration space from Problem. + + Returns: + ------- + SearchSpace + Optimizer's search space. + """ + raise NotImplementedError + + @abstractmethod + def convert_to_trial(self, *args: tuple, **kwargs: dict) -> TrialInfo: + """Convert proposal by optimizer to TrialInfo. + + This ensures that the problem can be evaluated with a unified API. + + Returns: + ------- + TrialInfo + Trial info containing configuration, budget, seed, instance. + """ + raise NotImplementedError + + @abstractmethod + def get_current_incumbent(self) -> Incumbent: + """Extract the incumbent config and cost. May only be available after a complete run. + + Returns: + ------- + Incumbent: tuple[TrialInfo, TrialValue] | list[tuple[TrialInfo, TrialValue]] | None + The incumbent configuration with associated cost. + """ + raise NotImplementedError + + def run(self) -> Incumbent: + if self.solver is None: + self.setup_optimizer() + return self._run() + + def _time_left(self, start_time) -> bool: + return (time.time() - start_time) + self.virtual_time_elapsed_seconds < self.time_budget + + def continue_optimization(self, start_time) -> bool: + cont = True + if self.time_budget is not None and not self._time_left(start_time): + cont = False + if self.task.n_trials is not None and self.trial_counter >= self.task.n_trials: + cont = False + + return cont + + def _run(self) -> Incumbent: + """Run Optimizer on Problem.""" + start_time = time.time() + while self.continue_optimization(start_time=start_time): + trial_info = self.ask() + normalized_budget = 1 + if self.task.max_budget is not None and trial_info.budget is not None: + normalized_budget = trial_info.budget / self.task.max_budget + if self.task.is_multifidelity: + trial_info = TrialInfo( + config=trial_info.config, + instance=trial_info.instance, + seed=trial_info.seed, + budget=trial_info.budget, + normalized_budget=normalized_budget, + checkpoint=trial_info.checkpoint, + name=trial_info.name, + ) + trial_value = self.problem.evaluate(trial_info=trial_info) + self.virtual_time_elapsed_seconds += trial_value.virtual_time + self.tell(trial_info=trial_info, trial_value=trial_value) + + new_incumbent = self.get_current_incumbent() + if new_incumbent != self._last_incumbent: + self._last_incumbent = new_incumbent + for logger in self.loggers: + logger.log_incumbent(self.trial_counter, new_incumbent) + + if not self.task.is_multifidelity: + self.trial_counter += 1 + else: + self.trial_counter += trial_info.budget / self.task.max_budget + return self.get_current_incumbent() + + @abstractmethod + def ask(self) -> TrialInfo: + """Ask the optimizer for a new trial to evaluate. + + If the optimizer does not support ask and tell, + raise `carps.utils.exceptions.AskAndTellNotSupportedError` + in child class. + + Returns: + ------- + TrialInfo + trial info (config, seed, instance, budget) + """ + raise NotImplementedError + + @abstractmethod + def tell(self, trial_info: TrialInfo, trial_value: TrialValue) -> None: + """Tell the optimizer a new trial. + + If the optimizer does not support ask and tell, + raise `carps.utils.exceptions.AskAndTellNotSupportedError` + in child class. + + Parameters + ---------- + trial_info : TrialInfo + trial info (config, seed, instance, budget) + trial_value : TrialValue + trial value (cost, time, ...) + """ + raise NotImplementedError + + # def convert_configspace(self, configspace: ConfigurationSpace) -> SearchSpace: + # def convert_to_trial(self, *args: tuple, **kwargs: dict) -> TrialInfo: + # def ask(self) -> TrialInfo: + # def tell(self, trial_info: TrialInfo, trial_value: TrialValue) -> None: + # def get_current_incumbent(self) -> Incumbent: diff --git a/carps/optimizers/optuna.py b/carps/optimizers/optuna.py new file mode 100644 index 000000000..8289ae355 --- /dev/null +++ b/carps/optimizers/optuna.py @@ -0,0 +1,262 @@ +"""* Not immeditaly obvious where I even create the "solver" for optuna +* Is it always minimize? +""" + +from __future__ import annotations + +import warnings +from collections.abc import Iterable +from typing import TYPE_CHECKING + +import numpy as np +import optuna +from ConfigSpace import Configuration, ConfigurationSpace +from ConfigSpace.hyperparameters import ( + CategoricalHyperparameter, + Constant, + Hyperparameter, + OrdinalHyperparameter, + UniformFloatHyperparameter, + UniformIntegerHyperparameter, +) +from optuna.distributions import BaseDistribution, CategoricalDistribution, FloatDistribution, IntDistribution +from optuna.samplers import TPESampler +from optuna.trial import TrialState as OptunaTrialState +from rich import print as printr + +from carps.optimizers.optimizer import Optimizer +from carps.utils.pareto_front import pareto +from carps.utils.trials import StatusType, TrialInfo, TrialValue + +if TYPE_CHECKING: + from omegaconf import DictConfig + from optuna.study import Study + + from carps.benchmarks.problem import Problem + from carps.loggers.abstract_logger import AbstractLogger + from carps.utils.task import Task + from carps.utils.types import Incumbent + +# NOTE: Optuna has an extra OptunaTrialState.PRUNED, which indicates something +# was halted during it's run and not progressed to the next budget. They fundamentally +# do multi-fidelity differently in that they stop currently running trials and not restart +# a trial to run until a higher budget. +optuna_trial_states: dict[StatusType, OptunaTrialState] = { + StatusType.RUNNING: OptunaTrialState.RUNNING, + StatusType.SUCCESS: OptunaTrialState.COMPLETE, + StatusType.CRASHED: OptunaTrialState.FAIL, + StatusType.TIMEOUT: OptunaTrialState.FAIL, + StatusType.MEMORYOUT: OptunaTrialState.FAIL, +} + + +def hp_to_optuna_distribution(hp: Hyperparameter) -> BaseDistribution: + """Parse a Node and its children into a ConfigurationSpace. + + Args: + node: The Node to parse + flat: Whether to have a hierarchical naming scheme for nodes and their children. + conditionals: Whether to include conditionals in the space from a + [`Choice`][amltk.pipeline.Choice]. If this is `False`, this will + also remove all forbidden clauses and other conditional clauses. + The primary use of this functionality is that some optimizers do not + support these features. + + !!! TODO "Not yet supported" + + This functionality is not yet supported as we can't encode this into + a static Optuna search space. + + delim: The delimiter to use for the names of the hyperparameters. + """ + if isinstance(hp, UniformIntegerHyperparameter): + return IntDistribution(hp.lower, hp.upper, log=hp.log) + elif isinstance(hp, UniformFloatHyperparameter): + return FloatDistribution(hp.lower, hp.upper, log=hp.log) + elif isinstance(hp, CategoricalHyperparameter): + if hp.weights is not None: + raise NotImplementedError(f"Weights are not supported in Optuna ({hp})") + + return CategoricalDistribution(hp.choices) + elif isinstance(hp, OrdinalHyperparameter): + warnings.warn(f"Ordinal hyperparameters are not supported in Optuna, use Categorical instead for {hp}.") + return CategoricalDistribution(hp.sequence) + elif isinstance(hp, Constant): + return CategoricalDistribution([hp.value]) + + raise NotImplementedError(f"Can't handle hyperparameter {hp}") + + +class OptunaOptimizer(Optimizer): + """An optimizer that uses Optuna to optimize a search space.""" + + def __init__( + self, + problem: Problem, + optuna_cfg: DictConfig, + task: Task, + loggers: list[AbstractLogger] | None = None, + ) -> None: + super().__init__(problem, task, loggers) + self._solver: Study | None = None + self.optuna_cfg = optuna_cfg + + configspace = self.problem.configspace + if any(configspace.forbidden_clauses): + raise NotImplementedError("Forbidden clauses are not yet supported in Optuna") + + self.optuna_space = {hp.name: hp_to_optuna_distribution(hp) for hp in configspace.get_hyperparameters()} + self.configspace = configspace + self.history: dict[str, tuple[optuna.Trial, Configuration, None | float | list[float]]] = {} + + def _setup_optimizer(self) -> optuna.study.Study: + # TODO: minimize always? + # TODO How do I know if it's multi-objective? + + # if multiple_metrics: + # sampler = NSGAIISampler(seed=self.optuna_cfg.sampler.seed) + # else + # sampler = TPESampler(seed=self.optuna_cfg.sampler.seed) + """(function) def create_study( + *, + storage: str | BaseStorage | None = None, + sampler: BaseSampler | None = None, + pruner: BasePruner | None = None, + study_name: str | None = None, + direction: str | StudyDirection | None = None, + load_if_exists: bool = False, + directions: Sequence[str | StudyDirection] | None = None + ) -> Study. + """ + sampler = TPESampler(seed=self.optuna_cfg.sampler.seed) + study = optuna.create_study( + **self.optuna_cfg.study, sampler=sampler, directions=["minimize"] * self.task.n_objectives + ) + printr(sampler) + printr(study) + + return study + + def ask(self) -> TrialInfo: + """Ask the optimizer for a new trial to evaluate. + + If the optimizer does not support ask and tell, + raise `carps.utils.exceptions.AskAndTellNotSupportedError` + in child class. + + Returns: + ------- + TrialInfo + trial info (config, seed, instance, budget) + """ + assert self._solver is not None + + optuna_trial: optuna.Trial = self._solver.ask(self.optuna_space) + config = optuna_trial.params + trial_number = optuna_trial.number + unique_name = f"{trial_number=}" + configspace_config = Configuration( + configuration_space=self.configspace, values=config, allow_inactive_with_values=True + ) + self.history[unique_name] = (optuna_trial, configspace_config, None) + return TrialInfo( + config=configspace_config, + name=unique_name, + instance=None, + budget=None, + seed=None, + ) + + def tell(self, trial_info: TrialInfo, trial_value: TrialValue) -> None: + """Tell the optimizer a new trial. + + If the optimizer does not support ask and tell, + raise `carps.utils.exceptions.AskAndTellNotSupportedError` + in child class. + + Parameters + ---------- + trial_info : TrialInfo + trial info (config, seed, instance, budget) + trial_value : TrialValue + trial value (cost, time, ...) + """ + unique_name = trial_info.name + assert unique_name is not None + assert unique_name in self.history + assert self._solver is not None + + optuna_status = optuna_trial_states[trial_value.status] + + # NOTE: Is there any case in which StatusType.RUNNING is returned, giving + # us this OptunaTrialState.RUNNING? + assert optuna_status is not OptunaTrialState.RUNNING + + optuna_trial, configspace_config, prev_cost = self.history[unique_name] + assert prev_cost is None + + # Need to update the history with the cost such that we can access the cost + # for `get_current_incumbent()` + cost = trial_value.cost if optuna_status is OptunaTrialState.COMPLETE else None + self.history[unique_name] = (optuna_trial, configspace_config, cost) + + self._solver.tell(trial=optuna_trial, values=cost, state=optuna_status) + + def get_pareto_front(self) -> list[tuple[TrialInfo, TrialValue]]: + """Return the pareto front for multi-objective optimization.""" + non_none_entries = [[config, cost] for optuna_trial, config, cost in self.history.values() if cost is not None] + costs = np.array([v[1] for v in non_none_entries]) + ids_bool = pareto(costs) + ids = np.where(ids_bool)[0] + return [non_none_entries[i] for i in ids] + + def get_current_incumbent(self) -> Incumbent: + """Extract the incumbent config and cost. May only be available after a complete run. + + Returns: + ------- + Incumbent: tuple[TrialInfo, TrialValue] | list[tuple[TrialInfo, TrialValue]] | None + The incumbent configuration with associated cost. + """ + if self.task.n_objectives == 1: + non_none_entries = [(config, cost) for _, config, cost in self.history.values() if cost is not None] + if len(non_none_entries) == 0: + return None + best_config, best_cost = min(non_none_entries, key=lambda x: x[1]) + assert not isinstance(best_cost, Iterable) + trial_info = TrialInfo(config=best_config) + trial_value = TrialValue(cost=best_cost) + incumbent_tuple = (trial_info, trial_value) + else: + front = self.get_pareto_front() + incumbent_tuple = [(TrialInfo(config=config), TrialValue(cost=cost)) for config, cost in front] + return incumbent_tuple + + # NOT really needed + def convert_configspace(self, configspace: ConfigurationSpace) -> dict[str, BaseDistribution]: + """Convert ConfigSpace configuration space to search space from optimizer. + + Parameters + ---------- + configspace : ConfigurationSpace + Configuration space from Problem. + + Returns: + ------- + SearchSpace + Optimizer's search space. + """ + raise NotImplementedError + + # NOT really needed + def convert_to_trial(self, *args: tuple, **kwargs: dict) -> TrialInfo: + """Convert proposal by optimizer to TrialInfo. + + This ensures that the problem can be evaluated with a unified API. + + Returns: + ------- + TrialInfo + Trial info containing configuration, budget, seed, instance. + """ + raise NotImplementedError diff --git a/carps/optimizers/random_search.py b/carps/optimizers/random_search.py new file mode 100644 index 000000000..ff63ec359 --- /dev/null +++ b/carps/optimizers/random_search.py @@ -0,0 +1,74 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +import numpy as np + +from carps.optimizers.optimizer import Optimizer +from carps.utils.pareto_front import pareto +from carps.utils.trials import TrialInfo, TrialValue + +if TYPE_CHECKING: + from ConfigSpace import Configuration, ConfigurationSpace + + from carps.benchmarks.problem import Problem + from carps.loggers.abstract_logger import AbstractLogger + from carps.utils.task import Task + from carps.utils.types import Incumbent, SearchSpace + + +class RandomSearchOptimizer(Optimizer): + def __init__( + self, + problem: Problem, + task: Task, + loggers: list[AbstractLogger] | None = None, + ) -> None: + super().__init__(problem, task, loggers) + + self.configspace: ConfigurationSpace = self.problem.configspace + self.history: list[tuple[TrialInfo, TrialValue]] = [] + self.is_multifidelity = task.is_multifidelity + + if hasattr(task, "n_objectives"): + self.is_multiobjective = task.n_objectives > 1 + + def convert_configspace(self, configspace: ConfigurationSpace) -> SearchSpace: + return configspace + + def convert_to_trial(self, config: Configuration) -> TrialInfo: # type: ignore[override] + budget = None + if self.is_multifidelity: + budget = self.task.max_budget + # budget = np.random.choice(np.linspace(self.task.min_budget, self.task.max_budget, 5)) + return TrialInfo(config=config, budget=budget) + + def ask(self) -> TrialInfo: + config = self.problem.configspace.sample_configuration() + return self.convert_to_trial(config=config) + + def tell(self, trial_info: TrialInfo, trial_value: TrialValue) -> None: + self.history.append((trial_info, trial_value)) + + def _setup_optimizer(self) -> None: + return None + + def get_pareto_front(self) -> list[tuple[TrialInfo, TrialValue]]: + """Return the pareto front for multi-objective optimization.""" + if self.task.is_multifidelity: + max_budget = np.max([v[0].budget for v in self.history]) + results_on_highest_fidelity = np.array([v for v in self.history if v[0].budget == max_budget]) + costs = np.array([v[1].cost for v in results_on_highest_fidelity]) + # Determine pareto front of the trials run on max budget + front = results_on_highest_fidelity[pareto(costs)] + else: + costs = np.array([v[1].cost for v in self.history]) + front = np.array(self.history)[pareto(costs)] + return front.tolist() + + def get_current_incumbent(self) -> Incumbent: + if self.task.n_objectives == 1: + incumbent_tuple = min(self.history, key=lambda x: x[1].cost) + else: + incumbent_tuple = self.get_pareto_front() + return incumbent_tuple diff --git a/carps/optimizers/scikit_optimize.py b/carps/optimizers/scikit_optimize.py new file mode 100644 index 000000000..cbc1e2fb4 --- /dev/null +++ b/carps/optimizers/scikit_optimize.py @@ -0,0 +1,175 @@ +"""Scikit-Optimize. + +* Scikit-Optimize optimizer for CARPS. +* NOTE: Set to always minimize the cost +""" + +from __future__ import annotations + +from typing import TYPE_CHECKING, Any + +import ConfigSpace as CS +import ConfigSpace.hyperparameters as CSH +import numpy as np +import skopt +from skopt.space.space import Categorical, Integer, Real, Space + +from carps.optimizers.optimizer import Optimizer +from carps.utils.trials import TrialInfo, TrialValue + +if TYPE_CHECKING: + from omegaconf import DictConfig + + from carps.benchmarks.problem import Problem + from carps.loggers.abstract_logger import AbstractLogger + from carps.utils.task import Task + from carps.utils.types import Incumbent + + +base_estimators = ["GP", "RF", "ET", "GBRT"] +acq_funcs = ["LCB", "EI", "PI", "gp_hedge"] +acq_optimizers = ["sampling", "lbfgs", "auto"] + + +def CS_to_skopt_space(hp: CSH.Hyperparameter) -> Space: + """Convert ConfigSpace hyperparameter to skopt Space.""" + if isinstance(hp, CSH.FloatHyperparameter): + if hp.log: + return Real(hp.lower, hp.upper, name=hp.name, prior="log-uniform") + else: + return Real(hp.lower, hp.upper, name=hp.name) + elif isinstance(hp, CSH.IntegerHyperparameter): + if hp.log: + return Integer(hp.lower, hp.upper, name=hp.name, prior="log-uniform") + else: + return Integer(hp.lower, hp.upper, name=hp.name) + elif isinstance(hp, CSH.CategoricalHyperparameter): + weights = None + if hp.weights is not None: + weights = np.asarray(hp.weights) / np.sum(hp.weights) + return Categorical(hp.choices, name=hp.name, prior=weights) + elif isinstance(hp, CSH.OrdinalHyperparameter): + raise ValueError("Ordinal hyperparameters are not supported by Scikit-Optimize!") + elif isinstance(hp, CSH.Constant): + return Categorical(list(hp.value), name=hp.name) + else: + raise NotImplementedError(f"Unknown hyperparameter type: {hp.__class__.__name__}") + + +class SkoptOptimizer(Optimizer): + """An optimizer that uses Scikit-Optimize to optimize an objective function.""" + + def __init__( + self, + problem: Problem, + skopt_cfg: DictConfig, + task: Task, + loggers: list[AbstractLogger] | None = None, + ) -> None: + """Initialize a Scikit-Optimize optimizer.""" + super().__init__(problem, task, loggers) + + self.fidelity_enabled = False + + self.configspace = problem.configspace + + self.skopt_space = self.convert_configspace(self.configspace) + self._solver: skopt.optimizer.Optimizer | None = None + + self.skopt_cfg = skopt_cfg + assert self.skopt_cfg.base_estimator in base_estimators + assert self.skopt_cfg.acq_func in acq_funcs + assert self.skopt_cfg.acq_optimizer in acq_optimizers + + def convert_configspace(self, configspace: CS.ConfigurationSpace) -> list[Space]: + """Convert ConfigSpace configuration space to Scikit-Optimize Space. + + Parameters + ---------- + configspace : ConfigurationSpace + Configuration space from Problem. + + Returns: + ------- + list[Space] + Scikit-Optimize Space. + """ + space = [] + for hp in configspace.get_hyperparameters(): + space.append(CS_to_skopt_space(hp)) + return space + + def convert_to_trial( # type: ignore[override] + self, config: list[Any] + ) -> TrialInfo: + """Convert proposal by Scikit-Optimize to TrialInfo. + + This ensures that the problem can be evaluated with a unified API. + + Returns: + ------- + TrialInfo + Trial info containing configuration, budget, seed, instance. + """ + configuration = CS.Configuration( + configuration_space=self.configspace, + values={hp.name: value for hp, value in zip(self.configspace.get_hyperparameters(), config, strict=False)}, + allow_inactive_with_values=True, + ) + assert list(configuration.keys()) == list(self.configspace.get_hyperparameter_names()) + assert list(configuration.keys()) == [hp.name for hp in self.skopt_space] + return TrialInfo( + config=configuration, + seed=self.skopt_cfg.random_state, + budget=None, + instance=None, + ) + + def _setup_optimizer(self) -> skopt.optimizer.Optimizer: + if self.skopt_cfg is None: + self.skopt_cfg = {} + return skopt.optimizer.Optimizer(dimensions=self.skopt_space, **self.skopt_cfg) + + def ask(self) -> TrialInfo: + """Ask the optimizer for a new trial to evaluate. + + If the optimizer does not support ask and tell, + raise `carps.utils.exceptions.AskAndTellNotSupportedError` + in child class. + + Returns: + ------- + TrialInfo + trial info (config, seed, instance, budget) + """ + config = self.solver.ask() + return self.convert_to_trial(config) + + def tell(self, trial_info: TrialInfo, trial_value: TrialValue) -> None: + """Tell the optimizer a new trial. + + If the optimizer does not support ask and tell, + raise `carps.utils.exceptions.AskAndTellNotSupportedError` + in child class. + + Parameters + ---------- + trial_info : TrialInfo + trial info (config, seed, instance, budget) + trial_value : TrialValue + trial value (cost, time, ...) + """ + _ = self.solver.tell(list(trial_info.config.values()), trial_value.cost) + + def get_current_incumbent(self) -> Incumbent: + """Extract the incumbent config and cost. May only be available after a complete run. + + Returns: + ------- + Incumbent: tuple[TrialInfo, TrialValue] | list[tuple[TrialInfo, TrialValue]] | None + The incumbent configuration with associated cost. + """ + best_result = self.solver.get_result() + best_config = self.convert_to_trial(best_result.x) + best_cost = TrialValue(cost=best_result.fun) + return (best_config, best_cost) diff --git a/carps/optimizers/smac14.py b/carps/optimizers/smac14.py new file mode 100644 index 000000000..fd13208fa --- /dev/null +++ b/carps/optimizers/smac14.py @@ -0,0 +1,205 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING, Any + +import numpy as np +from omegaconf import DictConfig, OmegaConf + +from carps.optimizers.optimizer import Optimizer +from carps.utils.exceptions import AskAndTellNotSupportedError +from carps.utils.trials import TrialInfo, TrialValue + +if TYPE_CHECKING: + from ConfigSpace import Configuration, ConfigurationSpace + from smac.facade.smac_ac_facade import SMAC4AC + + from carps.benchmarks.problem import Problem + from carps.loggers.abstract_logger import AbstractLogger + from carps.utils.task import Task + from carps.utils.types import Incumbent + + +class NotSupportedError(Exception): + pass + + +class SMAC314Optimizer(Optimizer): + def __init__( + self, + problem: Problem, + smac_cfg: DictConfig, + task: Task, + loggers: list[AbstractLogger] | None = None, + ) -> None: + super().__init__(problem, task, loggers) + + self.configspace = self.problem.configspace + self.smac_cfg = smac_cfg + self._solver: SMAC4AC | None = None + + def convert_configspace(self, configspace: ConfigurationSpace) -> ConfigurationSpace: + """Convert configuration space from Problem to Optimizer. + + Here, we don't need to convert. + + Parameters + ---------- + configspace : ConfigurationSpace + Configuration space from Problem. + + Returns: + ------- + ConfigurationSpace + Configuration space for Optimizer. + """ + return configspace + + def convert_to_trial( # type: ignore[override] + self, config: Configuration, seed: int | None = None, budget: float | None = None, instance: str | None = None + ) -> TrialInfo: + """Convert proposal from SMAC to TrialInfo. + + Parameters + ---------- + config : Configuration + Configuration + seed : int | None, optional + Seed, by default None + budget : float | None, optional + Budget, by default None + instance : str | None, optional + Instance, by default None + + Returns: + ------- + TrialInfo + Trial info containing configuration, budget, seed, instance. + """ + return TrialInfo(config=config, seed=seed, budget=budget, instance=instance) + + def target_function( + self, config: Configuration, seed: int | None = None, budget: float | None = None, instance: str | None = None + ) -> float | list[float]: + """Target Function. + + Interface for the Problem. + + Parameters + ---------- + config : Configuration + Configuration + seed : int | None, optional + Seed, by default None + budget : float | None, optional + Budget, by default None + instance : str | None, optional + Instance, by default None + + Returns: + ------- + float | list[float] + Cost as float or list[float], depending on the number of objectives. + """ + trial_info = self.convert_to_trial(config=config, seed=seed, budget=budget, instance=instance) + trial_value = self.problem.evaluate(trial_info=trial_info) + return trial_value.cost + + def _setup_optimizer(self) -> SMAC4AC: + """Setup SMAC. + + Retrieve defaults and instantiate SMAC. + + Returns: + ------- + SMAC4AC + Instance of a SMAC facade. + + """ + from smac.facade.smac_ac_facade import SMAC4AC + from smac.facade.smac_bb_facade import SMAC4BB + from smac.facade.smac_hpo_facade import SMAC4HPO + from smac.facade.smac_mf_facade import SMAC4MF + from smac.scenario.scenario import Scenario + + if self.smac_cfg.scenario.n_workers > 1 and self.smac_cfg.optimization_type != "mf": + raise NotSupportedError("SMAC 1.4 does not support parallel execution natively.") + + if self.smac_cfg.scenario.wallclock_limit is None: + self.smac_cfg.scenario.wallclock_limit = np.inf + + # Instantiate Scenario + scenario_kwargs = { + "cs": self.configspace, + "output_dir": None, + } + # We always expect scenario kwargs from the user + _scenario_kwargs = OmegaConf.to_container(self.smac_cfg.scenario, resolve=True) + scenario_kwargs.update(_scenario_kwargs) + + scenario = Scenario(scenario=scenario_kwargs) + + intensifier_kwargs: dict[Any, Any] = {} + facade_kwargs: dict[Any, Any] = {} + + # Create facade + if self.smac_cfg.optimization_type == "bb": + facade_object = SMAC4BB + intensifier_kwargs["maxR"] = self.smac_cfg.max_config_calls + + elif self.smac_cfg.optimization_type == "hpo": + facade_object = SMAC4HPO + intensifier_kwargs["maxR"] = self.smac_cfg.max_config_calls + + elif self.smac_cfg.optimization_type == "mf": + facade_object = SMAC4MF + + n_seeds = self.smac_cfg.get("n_seeds", None) + intensifier_kwargs["n_seeds"] = n_seeds + intensifier_kwargs["initial_budget"] = self.smac_cfg.scenario.min_budget + intensifier_kwargs["max_budget"] = self.smac_cfg.scenario.max_budget + + inc_selection = self.smac_cfg.incumbent_selection + if inc_selection == "highest_observed_budget": + inc_selection = "highest_budget" + + intensifier_kwargs["incumbent_selection"] = inc_selection + facade_kwargs["n_jobs"] = self.smac_cfg.scenario.n_workers + elif self.smac_cfg.optimization_type == "ac": + facade_object = SMAC4AC + intensifier_kwargs["maxR"] = self.smac_cfg.max_config_calls + + else: + raise RuntimeError("Unknown optimization type.") + + if self.smac_cfg.intensifier is None: + intensifier = None + elif self.smac_cfg.intensifier == "successive_halving": + from smac.intensification.successive_halving import SuccessiveHalving + + intensifier = SuccessiveHalving + else: + raise RuntimeError("Unsupported intensifier.") + + return facade_object( + scenario=scenario, + tae_runner=self.target_function, + intensifier=intensifier, + intensifier_kwargs=intensifier_kwargs, + **facade_kwargs, + ) + + def ask(self) -> TrialInfo: + raise AskAndTellNotSupportedError + + def tell(self, trial_info: TrialInfo, trial_value: TrialValue) -> None: + raise AskAndTellNotSupportedError + + def _run(self) -> Incumbent: + """Run SMAC on Problem.""" + incumbent = self.solver.optimize() # noqa: F841 + return self.get_current_incumbent() + + def get_current_incumbent(self) -> Incumbent: + trial_info = TrialInfo(config=self.solver.solver.incumbent) + trial_value = TrialValue(cost=self.solver.get_runhistory().get_cost(self.solver.solver.incumbent)) + return (trial_info, trial_value) diff --git a/carps/optimizers/smac20.py b/carps/optimizers/smac20.py new file mode 100644 index 000000000..d368c30e4 --- /dev/null +++ b/carps/optimizers/smac20.py @@ -0,0 +1,293 @@ +from __future__ import annotations + +from dataclasses import asdict +from typing import TYPE_CHECKING, Any + +from hydra.utils import get_class +from omegaconf import DictConfig, OmegaConf +from rich import print as printr + +# from git import Repo +# from smac.callback.metadata_callback import MetadataCallback +from smac.multi_objective.parego import ParEGO +from smac.runhistory import ( + TrialInfo as SmacTrialInfo, + TrialKey as SmacTrialKey, + TrialValue as SmacTrialValue, +) +from smac.scenario import Scenario + +from carps.optimizers.optimizer import Optimizer +from carps.utils.loggingutils import setup_logging +from carps.utils.trials import TrialInfo, TrialValue + +if TYPE_CHECKING: + from ConfigSpace import Configuration, ConfigurationSpace + from smac.facade.abstract_facade import AbstractFacade + + from carps.benchmarks.problem import Problem + from carps.loggers.abstract_logger import AbstractLogger + from carps.utils.task import Task + from carps.utils.types import Incumbent + +setup_logging() + + +def maybe_inst_add_scenario(smac_kwargs: dict[str, Any], key: str, scenario: Scenario) -> dict[str, Any]: + if key in smac_kwargs: + smac_kwargs[key] = smac_kwargs[key](scenario=scenario) + return smac_kwargs + + +class SMAC3Optimizer(Optimizer): + def __init__( + self, + problem: Problem, + smac_cfg: DictConfig, + task: Task, + loggers: list[AbstractLogger] | None = None, + ) -> None: + super().__init__(problem, task, loggers) + + self.configspace = self.problem.configspace + self.smac_cfg = smac_cfg + self._solver: AbstractFacade | None = None + self._cb_on_start_called: bool = False + + def convert_configspace(self, configspace: ConfigurationSpace) -> ConfigurationSpace: + """Convert configuration space from Problem to Optimizer. + + Here, we don't need to convert. + + Parameters + ---------- + configspace : ConfigurationSpace + Configuration space from Problem. + + Returns: + ------- + ConfigurationSpace + Configuration space for Optimizer. + """ + return configspace + + def convert_to_trial( # type: ignore[override] + self, config: Configuration, seed: int | None = None, budget: float | None = None, instance: str | None = None + ) -> TrialInfo: + """Convert proposal from SMAC to TrialInfo. + + Parameters + ---------- + config : Configuration + Configuration + seed : int | None, optional + Seed, by default None + budget : float | None, optional + Budget, by default None + instance : str | None, optional + Instance, by default None + + Returns: + ------- + TrialInfo + Trial info containing configuration, budget, seed, instance. + """ + return TrialInfo(config=config, seed=seed, budget=budget, instance=instance) + + def target_function( + self, config: Configuration, seed: int | None = None, budget: float | None = None, instance: str | None = None + ) -> float | list[float]: + """Target Function. + + Interface for the Problem. + + Parameters + ---------- + config : Configuration + Configuration + seed : int | None, optional + Seed, by default None + budget : float | None, optional + Budget, by default None + instance : str | None, optional + Instance, by default None + + Returns: + ------- + float | list[float] + Cost as float or list[float], depending on the number of objectives. + """ + trial_info = self.convert_to_trial(config=config, seed=seed, budget=budget, instance=instance) + trial_value = self.problem.evaluate(trial_info=trial_info) + return trial_value.cost + + def _setup_optimizer(self) -> AbstractFacade: + """Setup SMAC. + + Retrieve defaults and instantiate SMAC. + + Returns: + ------- + SMAC4AC + Instance of a SMAC facade. + + """ + # repo = Repo(".", search_parent_directories=True) + # metadata_callback = MetadataCallback( + # repository=repo.working_tree_dir.split("/")[-1], + # branch=str(repo.active_branch), + # commit=str(repo.head.commit), + # command=" ".join([sys.argv[0][len(repo.working_tree_dir) + 1 :]] + sys.argv[1:]), + # additional_information={ + # "cfg": OmegaConf.to_yaml(cfg=cfg), + # }, + # ) + + # Select SMAC Facade + smac_class = get_class(self.smac_cfg.smac_class) + + if smac_class == get_class("smac.facade.multi_fidelity_facade.MultiFidelityFacade"): + self.fidelity_enabled = True + + # Setup other SMAC kwargs + smac_kwargs = {} + if self.smac_cfg.smac_kwargs is not None: + smac_kwargs = OmegaConf.to_container(self.smac_cfg.smac_kwargs, resolve=True, enum_to_str=True) + + # Instantiate Scenario + scenario_kwargs = { + "configspace": self.configspace, + # output_directory=Path(self.config.hydra.sweep.dir) + # / "smac3_output", # output directory is automatically set via config file + } + # We always expect scenario kwargs from the user + _scenario_kwargs = OmegaConf.to_container(self.smac_cfg.scenario, resolve=True) + scenario_kwargs.update(_scenario_kwargs) + + scenario = Scenario(**scenario_kwargs) + + smac_kwargs["scenario"] = scenario + + # Convert callbacks to list if necessary + # Callbacks can come as a dict due to impossible hydra composition of + # lists. + if "callbacks" not in smac_kwargs: + smac_kwargs["callbacks"] = [] + elif "callbacks" in smac_kwargs and type(smac_kwargs["callbacks"]) == dict: + smac_kwargs["callbacks"] = list(smac_kwargs["callbacks"].values()) + elif "callbacks" in smac_kwargs and type(smac_kwargs["callbacks"]) == list: + pass + + # If we have a custom intensifier we need to instantiate ourselves + # because the helper methods in the facades expect a scenario. + smac_kwargs = maybe_inst_add_scenario(smac_kwargs, "intensifier", scenario) + + if "acquisition_function" in smac_kwargs and "acquisition_maximizer" in smac_kwargs: + if "acquisition_maximizer" in smac_kwargs: + smac_kwargs["acquisition_maximizer"] = smac_kwargs["acquisition_maximizer"]( + configspace=self.configspace, acquisition_function=smac_kwargs["acquisition_function"] + ) + if hasattr(smac_kwargs["acquisition_maximizer"], "selector") and hasattr( + smac_kwargs["acquisition_maximizer"].selector, "expl2callback" + ): + smac_kwargs["callbacks"].append(smac_kwargs["acquisition_maximizer"].selector.expl2callback) + + smac_kwargs = maybe_inst_add_scenario(smac_kwargs, "config_selector", scenario) + smac_kwargs = maybe_inst_add_scenario(smac_kwargs, "initial_design", scenario) + smac_kwargs = maybe_inst_add_scenario(smac_kwargs, "multi_objective_algorithm", scenario) + + printr(smac_class, smac_kwargs) + + smac = smac_class( + target_function=self.target_function, + **smac_kwargs, + ) + printr(smac) + + return smac + + def ask(self) -> TrialInfo: + """Ask the optimizer for a new trial to evaluate. + + If the optimizer does not support ask and tell, + raise `carps.utils.exceptions.AskAndTellNotSupportedError` + in child class. + + Returns: + ------- + TrialInfo + trial info (config, seed, instance, budget) + """ + if not self._cb_on_start_called: + self._cb_on_start_called = True + for callback in self.solver.optimizer._callbacks: + callback.on_start(self.solver.optimizer) + smac_trial_info = self.solver.ask() + return TrialInfo( + config=smac_trial_info.config, + instance=smac_trial_info.instance, + budget=smac_trial_info.budget, + seed=smac_trial_info.seed, + name=None, + checkpoint=None, + ) + + def tell(self, trial_info: TrialInfo, trial_value: TrialValue) -> None: + """Tell the optimizer a new trial. + + If the optimizer does not support ask and tell, + raise `carps.utils.exceptions.AskAndTellNotSupportedError` + in child class. + + Parameters + ---------- + trial_value : TrialValue + trial value (cost, time, ...) + """ + smac_trial_info = SmacTrialInfo( + config=trial_info.config, instance=trial_info.instance, budget=trial_info.budget, seed=trial_info.seed + ) + additional_info = trial_value.additional_info + if self.task.n_objectives > 1: + # Save costs for multi-objective because SMAC might scalarize the cost + additional_info["cost"] = trial_value.cost + smac_trial_value = SmacTrialValue( + cost=trial_value.cost, + time=trial_value.time, + status=trial_value.status, + starttime=trial_value.starttime, + endtime=trial_value.endtime, + additional_info=additional_info, + ) + self.solver.tell(info=smac_trial_info, value=smac_trial_value) + + def get_current_incumbent(self) -> Incumbent: + if self.solver.scenario.count_objectives() == 1: + inc = self.solver.intensifier.get_incumbent() + cost = self.solver.runhistory.get_cost(config=inc) + trial_info = TrialInfo(config=inc) + trial_value = TrialValue(cost=cost) + incumbent_tuple = (trial_info, trial_value) + else: + if (mo := self.solver._runhistory_encoder.multi_objective_algorithm) is not None: + if isinstance(mo, ParEGO) and mo._theta is None: + # Initialize weights of ParEGO + mo.update_on_iteration_start() + incs = self.solver.intensifier.get_incumbents() + tis = [ + self.solver.runhistory.get_trials(c)[0] for c in incs + ] # first trial because only one budget #TODO update for momf + tks = [ + SmacTrialKey( + config_id=self.solver.runhistory.get_config_id(ti.config), + instance=ti.instance, + seed=ti.seed, + budget=ti.budget, + ) + for ti in tis + ] + tvs = [self.solver.runhistory[k] for k in tks] + tvs = [TrialValue(**asdict(tv)) for tv in tvs] + incumbent_tuple = list(zip(tis, tvs, strict=False)) + + return incumbent_tuple diff --git a/carps/optimizers/synetune.py b/carps/optimizers/synetune.py new file mode 100644 index 000000000..484b697d0 --- /dev/null +++ b/carps/optimizers/synetune.py @@ -0,0 +1,390 @@ +from __future__ import annotations + +import copy +import datetime +from collections import OrderedDict +from collections.abc import Callable +from typing import TYPE_CHECKING, Any + +import numpy as np +import omegaconf +from ConfigSpace import Configuration, ConfigurationSpace +from ConfigSpace.hyperparameters import ( + CategoricalHyperparameter, + Constant, + FloatHyperparameter, + Hyperparameter, + IntegerHyperparameter, + OrdinalHyperparameter, +) +from syne_tune.backend.trial_status import ( + Status, + Trial as SyneTrial, + TrialResult, +) +from syne_tune.config_space import ( + choice, + lograndint, + loguniform, + ordinal, + randint, + uniform, +) +from syne_tune.optimizer.baselines import ( + ASHA, + BOHB, + BORE, + DEHB, + KDE, + MOASHA, + MOBSTER, + MOREA, + BayesianOptimization, + MOLinearScalarizationBayesOpt, + MORandomScalarizationBayesOpt, +) + +from carps.optimizers.optimizer import Optimizer +from carps.utils.pareto_front import pareto +from carps.utils.trials import TrialInfo, TrialValue + +if TYPE_CHECKING: + from syne_tune.optimizer.scheduler import TrialScheduler as SyneTrialScheduler + + from carps.benchmarks.problem import Problem + from carps.loggers.abstract_logger import AbstractLogger + from carps.utils.task import Task + from carps.utils.types import Incumbent + +# This is a subset from the syne-tune baselines +optimizers_dict = { + "BayesianOptimization": BayesianOptimization, + "BO-MO-RS": MORandomScalarizationBayesOpt, + "BO-MO-LS": MOLinearScalarizationBayesOpt, + "MOREA": MOREA, + "ASHA": ASHA, + "MOBSTER": MOBSTER, + "BOHB": BOHB, + "KDE": KDE, + "BORE": BORE, + "DEHB": DEHB, + "MOASHA": MOASHA, +} + +mf_optimizer_dicts = { + "with_mf": {"ASHA", "MOASHA", "DEHB", "MOBSTER", "BOHB"}, + "without_mf": {"BORE", "BayesianOptimization", "KDE"}, +} + + +def configspaceHP2syneTuneHP(hp: Hyperparameter) -> Callable: + if isinstance(hp, IntegerHyperparameter): + if hp.log: + return lograndint(hp.lower, hp.upper) + else: + return randint(hp.lower, hp.upper) + elif isinstance(hp, FloatHyperparameter): + if hp.log: + return loguniform(hp.lower, hp.upper) + else: + return uniform(hp.lower, hp.upper) + elif isinstance(hp, CategoricalHyperparameter): + return choice(hp.choices) + elif isinstance(hp, OrdinalHyperparameter): + return ordinal(hp.sequence) + elif isinstance(hp, Constant): + return choice([hp.value]) + else: + raise NotImplementedError(f"Unknown hyperparameter type: {hp.__class__.__name__}") + + +class SynetuneOptimizer(Optimizer): + def __init__( + self, + problem: Problem, + optimizer_name: str, + task: Task, + optimizer_kwargs: dict | None = None, + loggers: list[AbstractLogger] | None = None, + conversion_factor: int = 1000, + ) -> None: + super().__init__(problem, task, loggers) + self.fidelity_enabled = False + self.max_budget = task.max_budget + assert optimizer_name in optimizers_dict + if optimizer_name in mf_optimizer_dicts["with_mf"]: + # raise NotImplementedError("Multi-Fidelity Optimization on SyneTune is not implemented yet!") + self.fidelity_enabled = True + if self.task.fidelity_type is None: + raise ValueError("To run multi-fidelity optimizer, the problem must define a fidelity type!") + if self.max_budget is None: + raise ValueError("To run multi-fidelity optimizer, we must specify max_budget!") + + self.fidelity_type: str = self.task.fidelity_type + self.configspace = self.problem.configspace + self.metric: str | list[str] = self.task.objectives + if len(self.metric) == 1: + self.metric = self.metric[0] + self.conversion_factor = conversion_factor + self.trial_counter: int = 0 + + self.optimizer_name = optimizer_name + self._solver: SyneTrialScheduler | None = None + + self.optimizer_kwargs = ( + omegaconf.OmegaConf.to_object(optimizer_kwargs) if optimizer_kwargs is not None else None + ) + + self.completed_experiments: OrderedDict[int, TrialResult] = OrderedDict() + self.convert = False + + def convert_configspace(self, configspace: ConfigurationSpace) -> dict[str, Any]: + """Convert configuration space from Problem to Optimizer. + + Convert the configspace from ConfigSpace to syne-tune. However, given that syne-tune does not support + conditions and forbidden clauses, we only add hyperparameters here + + Parameters + ---------- + configspace : ConfigurationSpace + Configuration space from Problem. + + dict[str, Any] + ------- + configspace_st + Configuration space for syne tune. + """ + configspace_st = {} + for k, v in configspace.items(): + configspace_st[k] = configspaceHP2syneTuneHP(v) + if self.fidelity_enabled: + configspace_st[self.fidelity_type] = ( + self.max_budget if not self.convert else int(self.conversion_factor * self.max_budget) + ) + + return configspace_st + + def convert_to_trial(self, trial: SyneTrial) -> TrialInfo: # type: ignore[override] + """Convert proposal from SyneTune to TrialInfo. + + Parameters + ---------- + config : Configuration + Configuration + seed : int | None, optional + Seed, by default None + budget : float | None, optional + Budget, by default None + instance : str | None, optional + Instance, by default None + + Returns: + ------- + TrialInfo + Trial info containing configuration, budget, seed, instance. + """ + configs = copy.deepcopy(trial.config) + budget = configs.pop(self.fidelity_type) if self.fidelity_type is not None else None + configuration = Configuration( + configuration_space=self.configspace, values=configs, allow_inactive_with_values=True + ) + return TrialInfo( + config=configuration, + seed=None, + budget=budget if not self.convert else budget / self.conversion_factor, + instance=None, + ) + + def ask(self) -> TrialInfo: + """Ask the optimizer for a new trial to evaluate. + + If the optimizer does not support ask and tell, + raise `carps.utils.exceptions.AskAndTellNotSupportedError` + in child class. + + Returns: + ------- + TrialInfo + trial info (config, seed, instance, budget) + """ + trial_suggestion = self._solver.suggest(self.trial_counter) + trial = SyneTrial( + trial_id=self.trial_counter, + config=trial_suggestion.config, + creation_time=datetime.datetime.now(), + ) + return self.convert_to_trial(trial=trial) + + def convert_to_synetrial(self, trial_info: TrialInfo) -> SyneTrial: + """Convert a trial info to the syne tune format. + + Parameters + ---------- + trial_info : TrialInfo + Trial info. + + Returns: + ------- + SyneTrial + Synetune format + """ + syne_config = dict(trial_info.config) + if self.fidelity_enabled: + syne_config[self.fidelity_type] = ( + trial_info.budget if not self.convert else int(self.conversion_factor * trial_info.budget) + ) + return SyneTrial( + trial_id=self.trial_counter, + config=syne_config, + creation_time=datetime.datetime.now(), + ) + + def tell(self, trial_info: TrialInfo, trial_value: TrialValue): + """Tell the optimizer a new trial. + + If the optimizer does not support ask and tell, + raise `carps.utils.exceptions.AskAndTellNotSupportedError` + in child class. + + Parameters + ---------- + trial_info : TrialInfo + trial info (config, seed, instance, budget) + trial_value : TrialValue + trial value (cost, time, ...) + """ + cost = trial_value.cost + trial = self.convert_to_synetrial(trial_info=trial_info) + experiment_result = {} + if self.task.n_objectives == 1: + experiment_result = {self.task.objectives[0]: cost} + else: + experiment_result = {self.task.objectives[i]: cost[i] for i in range(len(cost))} + + if self.optimizer_name == "MOASHA": + experiment_result[self.fidelity_type] = ( + trial_info.budget if not self.convert else int(self.conversion_factor * trial_info.budget) + ) + # del experiment_result[self.task.objectives] + + self._solver.on_trial_add(trial=trial) + self.trial_counter += 1 + + self._solver.on_trial_complete(trial=trial, result=experiment_result) + trial_result = trial.add_results( + metrics=experiment_result, + status=Status.completed, + training_end_time=datetime.datetime.now(), + ) + self.completed_experiments[trial_result.trial_id] = trial_result + + def best_trial(self, metric: str) -> TrialResult: + """Return the best trial according to the provided metric.""" + if self.optimizer_name == "MOASHA": + self.solver.mode = "min" + + sign = 1.0 if self.solver.mode == "max" else -1.0 + + return max( + [value for key, value in self.completed_experiments.items()], + key=lambda trial: sign * trial.metrics[metric], + ) + + def get_pareto_front(self) -> list[TrialResult]: + """Return the pareto front for multi-objective optimization.""" + if self.task.is_multifidelity: + # Determine maximum budget run + max_budget = np.max([v.metrics[self.fidelity_type] for v in self.completed_experiments.values()]) + # Get only those trial results that ran on max budget + results_on_highest_fidelity = np.array( + [v for v in self.completed_experiments.values() if v.metrics[self.fidelity_type] == max_budget] + ) + # Get costs, exclude fidelity + costs = np.array([[v.metrics[m] for m in self.task.objectives] for v in results_on_highest_fidelity]) + # Determine pareto front of the trials run on max budget + front = results_on_highest_fidelity[pareto(costs)] + else: + results = np.array(list(self.completed_experiments.values())) + costs = np.array([list(trial.metrics.values()) for trial in results]) + front = results[pareto(costs)] + return front.tolist() + + def _setup_optimizer(self) -> SyneTrialScheduler: + """Setup Optimizer. + + Retrieve defaults and instantiate SyneTune. + + Returns: + ------- + SyneTrialScheduler + Instance of a SyneTune. + + """ + if self.optimizer_kwargs is None: + self.optimizer_kwargs = {} + + _optimizer_kwargs = { + "metric": self.metric, + "mode": "min" if self.task.n_objectives == 1 else list(np.repeat("min", self.task.n_objectives)), + } + + if self.optimizer_name in mf_optimizer_dicts["with_mf"]: + _optimizer_kwargs["resource_attr"] = self.fidelity_type + # _optimizer_kwargs["max_t"] = self.max_budget # TODO check how to set n trials / wallclock limit for synetune + + # for floating point resources like trainsize, we need to convert them to integer for synetune + if "grace_period" in self.optimizer_kwargs and isinstance(self.optimizer_kwargs["grace_period"], float): + self.convert = True + _optimizer_kwargs["grace_period"] = int(self.conversion_factor * self.optimizer_kwargs["grace_period"]) + + if "max_t" in self.optimizer_kwargs: + _optimizer_kwargs["max_t"] = int(self.conversion_factor * self.max_budget) + + if "max_resource_level" in self.optimizer_kwargs: + _optimizer_kwargs["max_resource_level"] = int( + self.conversion_factor * self.optimizer_kwargs["max_resource_level"] + ) + + print(_optimizer_kwargs) + + self.syne_tune_configspace = self.convert_configspace(self.configspace) + _optimizer_kwargs["config_space"] = self.syne_tune_configspace + + self.optimizer_kwargs.update(_optimizer_kwargs) + + if self.optimizer_name == "MOASHA": + self.metric = self.optimizer_kwargs["metrics"] + del self.optimizer_kwargs["metric"] + del self.optimizer_kwargs["resource_attr"] + + if self.optimizer_name in ["SyncMOBSTER"]: + del self.optimizer_kwargs["metrics"] + del self.optimizer_kwargs["time_attr"] + + return optimizers_dict[self.optimizer_name](**self.optimizer_kwargs) + + def get_current_incumbent(self) -> Incumbent: + if self.task.n_objectives == 1: + trial_result = self.best_trial(metric=self.task.objectives[0]) + trial_info = self.convert_to_trial(trial=trial_result) + cost = trial_result.metrics[self.task.objectives[0]] + trial_value = TrialValue( + cost=cost, + time=trial_result.seconds, + virtual_time=trial_result.seconds, + additional_info=trial_result.metrics, + ) + incumbent_tuple = (trial_info, trial_value) + else: + trial_result = self.get_pareto_front() + tis, tvs = [], [] + for result in trial_result: + trial_info = self.convert_to_trial(trial=result) + costs = list(result.metrics.values()) + trial_value = TrialValue( + cost=costs, time=result.seconds, virtual_time=result.seconds, additional_info=result.metrics + ) + tis.append(trial_info) + tvs.append(trial_value) + incumbent_tuple = list(zip(tis, tvs, strict=False)) + return incumbent_tuple diff --git a/carps/py.typed b/carps/py.typed new file mode 100644 index 000000000..e69de29bb diff --git a/carps/run.py b/carps/run.py new file mode 100644 index 000000000..d1533be0b --- /dev/null +++ b/carps/run.py @@ -0,0 +1,39 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +import hydra +from hydra.core.hydra_config import HydraConfig + +from carps.utils.loggingutils import get_logger, setup_logging +from carps.utils.requirements import check_requirements +from carps.utils.running import optimize + +if TYPE_CHECKING: + from omegaconf import DictConfig + +setup_logging() +logger = get_logger(__file__) + + +@hydra.main(config_path="configs", config_name="base.yaml", version_base=None) # type: ignore[misc] +def main(cfg: DictConfig) -> None: + """Run optimizer on problem. + + Save trajectory and metadata to database. + + Parameters + ---------- + cfg : DictConfig + Global configuration. + + """ + hydra_cfg = HydraConfig.instance().get() + overrides = hydra_cfg.overrides.task + logger.info(f"Runcommand: `python -m carps.run {' '.join(overrides)}`") + check_requirements(cfg=cfg) + optimize(cfg=cfg) + + +if __name__ == "__main__": + main() diff --git a/carps/run_from_db.py b/carps/run_from_db.py new file mode 100644 index 000000000..f6d7c8bc3 --- /dev/null +++ b/carps/run_from_db.py @@ -0,0 +1,77 @@ +from __future__ import annotations + +import json +import os +from pathlib import Path +from typing import TYPE_CHECKING + +import fire +from omegaconf import OmegaConf +from py_experimenter.experiment_status import ExperimentStatus +from py_experimenter.experimenter import PyExperimenter + +from carps.utils.loggingutils import get_logger, setup_logging +from carps.utils.requirements import check_requirements +from carps.utils.running import optimize + +if TYPE_CHECKING: + from py_experimenter.result_processor import ResultProcessor + +setup_logging() +logger = get_logger("Run from DB") + + +def py_experimenter_evaluate(parameters: dict, result_processor: ResultProcessor, custom_config: dict): + try: + config = parameters["config"] + cfg_dict = json.loads(config) + + job_id = getattr(os.environ, "SLURM_JOB_ID", None) + if job_id is not None: + result_processor.process_results({"slurm_job_id": job_id}) + + cfg = OmegaConf.create(cfg_dict) + + check_requirements(cfg=cfg) + + # os.chdir(cfg.outdir) + + optimize(cfg, result_processor=result_processor) + + status = ExperimentStatus.DONE + except Exception as e: + print(e) + status = ExperimentStatus.ERROR + raise + + return status + + +def main( + pyexperimenter_configuration_file_path: str | None = None, database_credential_file_path: str | None = None +) -> None: + slurm_job_id = getattr(os.environ, "SLURM_JOB_ID", None) + + experiment_configuration_file_path = ( + pyexperimenter_configuration_file_path or Path(__file__).parent / "container/py_experimenter.yaml" + ) + + database_credential_file_path = ( + database_credential_file_path or Path(__file__).parent / "container/credentials.yaml" + ) + if database_credential_file_path is not None and not database_credential_file_path.exists(): + database_credential_file_path = None + + experimenter = PyExperimenter( + experiment_configuration_file_path=experiment_configuration_file_path, + name="example_notebook", + database_credential_file_path=database_credential_file_path, + log_file=f"logs/{slurm_job_id}.log", + use_ssh_tunnel=OmegaConf.load(experiment_configuration_file_path).PY_EXPERIMENTER.Database.use_ssh_tunnel, + ) + + experimenter.execute(py_experimenter_evaluate, max_experiments=1) + + +if __name__ == "__main__": + fire.Fire(main) diff --git a/carps/runenv.py b/carps/runenv.py new file mode 100644 index 000000000..1d4178156 --- /dev/null +++ b/carps/runenv.py @@ -0,0 +1,43 @@ +from __future__ import annotations + +import subprocess +from pathlib import Path +from typing import TYPE_CHECKING + +import hydra +from hydra.core.hydra_config import HydraConfig + +from carps.utils.loggingutils import get_logger, setup_logging + +if TYPE_CHECKING: + from omegaconf import DictConfig + +setup_logging() +logger = get_logger(__file__) + + +@hydra.main(config_path="configs", config_name="base.yaml", version_base=None) # type: ignore[misc] +def main(cfg: DictConfig) -> None: + """Run optimizer on problem. + + Save trajectory and metadata to database. + + Parameters + ---------- + cfg : DictConfig + Global configuration. + + """ + hydra_cfg = HydraConfig.instance().get() + overrides = hydra_cfg.overrides.task + runcommand = f"python -m carps.run {' '.join(overrides)}" + logger.info(f"Runcommand: `{runcommand}`") + env_location = Path(cfg.conda_env_location) / cfg.conda_env_name + logger.info(f"Selected environment: {env_location}") + command = f"source ~/.bashrc; micromamba run -p {env_location} {runcommand}" + logger.info(command) + subprocess.run(command, shell=True, check=False) + + +if __name__ == "__main__": + main() diff --git a/carps/tasks/__init__.py b/carps/tasks/__init__.py new file mode 100644 index 000000000..ba5bc7dab --- /dev/null +++ b/carps/tasks/__init__.py @@ -0,0 +1,2 @@ +# Collect all tasks to run +# Task = combination of problem and optimizer diff --git a/carps/utils/__init__.py b/carps/utils/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/carps/utils/check_missing.py b/carps/utils/check_missing.py new file mode 100644 index 000000000..23064e968 --- /dev/null +++ b/carps/utils/check_missing.py @@ -0,0 +1,95 @@ +from __future__ import annotations + +from enum import Enum, auto +from multiprocessing import Pool +from pathlib import Path + +import fire +import pandas as pd +from omegaconf import OmegaConf + +from carps.analysis.gather_data import read_jsonl_content +from carps.utils.loggingutils import get_logger, setup_logging + +setup_logging() +logger = get_logger(__file__) + + +class RunStatus(Enum): + COMPLETED = auto() + MISSING = auto() + TRUNCATED = auto() + + +def get_experiment_status(path: Path) -> dict: + status = RunStatus.MISSING + + cfg = OmegaConf.load(path) + n_trials = cfg.task.n_trials + trial_logs_fn = path.parent.parent / "trial_logs.jsonl" + if trial_logs_fn.is_file(): + trial_logs = read_jsonl_content(str(trial_logs_fn)) + n_trials_done = trial_logs["n_trials"].max() + status = RunStatus.COMPLETED if n_trials == n_trials_done else RunStatus.TRUNCATED + + overrides = OmegaConf.load(path.parent / "overrides.yaml") + # TODO maybe filter cluster + return { + "status": status.name, + "benchmark_id": cfg.benchmark_id, + "problem_id": cfg.problem_id, + "optimizer_id": cfg.optimizer_id, + "seed": cfg.seed, + "overrides": " ".join(overrides), + } + + +def check_missing(rundir: str, n_processes: int = 4) -> pd.DataFrame: + rundir = Path(rundir) + paths = rundir.glob("**/.hydra/config.yaml") + with Pool(processes=n_processes) as pool: + data = pool.map(get_experiment_status, paths) + data = pd.DataFrame(data) + data.to_csv("runstatus.csv", index=False) + return data + + +def generate_commands(missing_data: pd.DataFrame, runstatus: RunStatus, rundir: str = "") -> None: + logger.info(f"Regenerate commands for {runstatus.name} runs...") + data = missing_data + missing = data[data["status"].isin([runstatus.name])] + runcommands = [] + for _gid, gdf in missing.groupby(by=["optimizer_id", "problem_id"]): + seeds = list(gdf["seed"].unique()) + seeds.sort() + overrides = gdf["overrides"].iloc[0].split(" ") + overrides = [o for o in overrides if "seed" not in o] + overrides.append(f"seed={','.join(str(s) for s in seeds)} -m") + override = " ".join(overrides) + runcommand = f"python -m carps.run {override}\n" + runcommands.append(runcommand) + runcommand_fn = Path(rundir) / f"runcommands_{runstatus.name}.sh" + with open(runcommand_fn, "w") as file: + file.writelines(runcommands) + logger.info(f"Done! Regenerated runcommands at {runcommand_fn}.") + + +def regenerate_runcommands(rundir: str, from_cached: bool = False) -> None: + if from_cached: + logger.info("Loading experiment status data from 'runstatus.csv'...") + data = pd.read_csv("runstatus.csv") + logger.info("Done!") + else: + logger.info("Scanning rundirs for experiment status...") + data = check_missing(rundir=rundir) + logger.info("Done!") + + if len(data) > 0: + generate_commands(data, RunStatus.MISSING, rundir) + generate_commands(data, RunStatus.TRUNCATED, rundir) + else: + logger.info(f"But nothing found at {rundir}.") + + +if __name__ == "__main__": + fire.Fire(regenerate_runcommands) diff --git a/carps/utils/database/__init__.py b/carps/utils/database/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/carps/utils/database/reset_experiments.py b/carps/utils/database/reset_experiments.py new file mode 100644 index 000000000..f542e19e1 --- /dev/null +++ b/carps/utils/database/reset_experiments.py @@ -0,0 +1,35 @@ +from __future__ import annotations + +from pathlib import Path + +import fire +from omegaconf import OmegaConf +from py_experimenter.experiment_status import ExperimentStatus +from py_experimenter.experimenter import PyExperimenter + + +def main( + pyexperimenter_configuration_file_path: str | None = None, database_credential_file_path: str | None = None +) -> None: + experiment_configuration_file_path = ( + pyexperimenter_configuration_file_path or Path(__file__).parent.parent.parent / "container/py_experimenter.yaml" + ) + + database_credential_file_path = ( + database_credential_file_path or Path(__file__).parent.parent.parent / "container/credentials.yaml" + ) + if database_credential_file_path is not None and not database_credential_file_path.exists(): + database_credential_file_path = None + + experimenter = PyExperimenter( + experiment_configuration_file_path=experiment_configuration_file_path, + name="remove_error_rows", + database_credential_file_path=database_credential_file_path, + log_file="logs/reset_experiments.log", + use_ssh_tunnel=OmegaConf.load(experiment_configuration_file_path).PY_EXPERIMENTER.Database.use_ssh_tunnel, + ) + experimenter.db_connector.reset_experiments(ExperimentStatus.ERROR.value) + + +if __name__ == "__main__": + fire.Fire(main) diff --git a/carps/utils/exceptions.py b/carps/utils/exceptions.py new file mode 100644 index 000000000..f1a37b908 --- /dev/null +++ b/carps/utils/exceptions.py @@ -0,0 +1,9 @@ +from __future__ import annotations + + +class NotSupportedError(Exception): + pass + + +class AskAndTellNotSupportedError(NotSupportedError): + pass diff --git a/carps/utils/index_configs.py b/carps/utils/index_configs.py new file mode 100644 index 000000000..149f3251f --- /dev/null +++ b/carps/utils/index_configs.py @@ -0,0 +1,39 @@ +from __future__ import annotations + +from pathlib import Path + +import fire +import pandas as pd +from omegaconf import OmegaConf + +config_folder = Path(__file__).parent.parent / "configs" +config_folder_problem = config_folder / "problem" +config_folder_optimizer = config_folder / "optimizer" + + +def index_configs(): + """Index all problem and optimizer configs. + + Create `index.csv` containing the config filename `config_fn` and the + """ + for key, path in zip( + ["problem_id", "optimizer_id"], [config_folder_problem, config_folder_optimizer], strict=False + ): + paths = list(path.glob("**/*.yaml")) + + table = [] + for p in paths: + cfg = OmegaConf.load(p) + value = cfg.get(key) + table.append( + { + "config_fn": str(p), + key: value, + } + ) + table = pd.DataFrame(table) + table.to_csv(path / "index.csv", index=False) + + +if __name__ == "__main__": + fire.Fire(index_configs) diff --git a/carps/utils/loggingutils.py b/carps/utils/loggingutils.py new file mode 100644 index 000000000..3bf9ec399 --- /dev/null +++ b/carps/utils/loggingutils.py @@ -0,0 +1,15 @@ +from __future__ import annotations + +import logging + +from rich.logging import RichHandler + + +def setup_logging() -> None: + FORMAT = "%(message)s" + logging.basicConfig(level=logging.INFO, format=FORMAT, datefmt="[%X]", handlers=[RichHandler()]) + + +def get_logger(logger_name: str) -> logging.Logger: + """Get the logger by name.""" + return logging.getLogger(logger_name) diff --git a/carps/utils/overridefinder.py b/carps/utils/overridefinder.py new file mode 100644 index 000000000..98d576ff9 --- /dev/null +++ b/carps/utils/overridefinder.py @@ -0,0 +1,65 @@ +from __future__ import annotations + +import os +from pathlib import Path + +import fire +import pandas as pd + +from carps.utils.index_configs import index_configs +from carps.utils.loggingutils import get_logger + +logger = get_logger(__file__) + +config_folder = Path(__file__).parent.parent / "configs" +config_folder_problem = config_folder / "problem" +config_folder_optimizer = config_folder / "optimizer" + + +def find_override(problem_id: str | None = None, optimizer_id: str | None = None): + if problem_id is not None: + key = "problem_id" + path = config_folder_problem + to_find = problem_id + elif optimizer_id is not None: + key = "optimizer_id" + path = config_folder_optimizer + to_find = optimizer_id + else: + raise ValueError("Please specify either `problem_id` or `optimizer_id`.") + + index_fn = path / "index.csv" + if not index_fn.is_file(): + index_configs() + table = pd.read_csv(index_fn) + + try: + config_fn = table["config_fn"][table[key] == to_find].values[0] + stripped_path = str(config_fn)[len(str(config_folder)) + 1 : -len(".yaml")] + index = next(x for x, v in enumerate(stripped_path) if v == "/") + return "+" + stripped_path[:index] + "=" + stripped_path[index + 1 :] + except Exception as e: + logger.info(f"Nothing found for {to_find} in config path {path}. Error: {e}") + return None + + +def merge_overrides(overrides: list[str | None]) -> str: + # overrides = [ + # "+problem=YAHPO/MO/cfg_rbv2_super_1457", + # "+problem=YAHPO/MO/cfg_rbv2_super_1452", + # "+problem=YAHPO/MO/cfg_rbv2_super_1453", + # "+problem=YAHPO/MO/cfg_rbv2_super_1454", + # ] + overrides = [o for o in overrides if o is not None] + if len(overrides) > 1: + overrides = list(map(str, overrides)) + common = os.path.commonpath(overrides) + index = common.find("=") + override = common[: index + 1] + ",".join([p[index + 1 :] for p in overrides]) + else: + override = overrides[0] + return override + + +if __name__ == "__main__": + fire.Fire(find_override) diff --git a/carps/utils/pareto_front.py b/carps/utils/pareto_front.py new file mode 100644 index 000000000..78e2310ae --- /dev/null +++ b/carps/utils/pareto_front.py @@ -0,0 +1,12 @@ +from __future__ import annotations + +import numpy as np + + +def pareto(costs: np.ndarray) -> np.ndarray: + is_pareto = np.ones(costs.shape[0], dtype=bool) + for i, c in enumerate(costs): + if is_pareto[i]: + is_pareto[is_pareto] = np.any(costs[is_pareto] < c, axis=1) + is_pareto[i] = True + return is_pareto diff --git a/carps/utils/requirements.py b/carps/utils/requirements.py new file mode 100644 index 000000000..5eead87d3 --- /dev/null +++ b/carps/utils/requirements.py @@ -0,0 +1,71 @@ +from __future__ import annotations + +import warnings +from pathlib import Path +from typing import TYPE_CHECKING + +import pkg_resources + +if TYPE_CHECKING: + from omegaconf import DictConfig + + +def _check(p: str | Path) -> None: + """Check requirements specified in p. + + Parameters + ---------- + p : str | Path + Path to requirements. Txt file. + + Raises: + ------ + RuntimeError + When the requirement is not installed. + + Warning: + When there is a version conflict. + """ + p = Path(p) + if p.is_file(): + with open(p) as file: + requirements = file.readlines() + requirements = [r.strip() for r in requirements] + requirements = [r for r in requirements if "git+" not in r] + + try: + pkg_resources.require(requirements) + except pkg_resources.DistributionNotFound as error: + error_msg = str(error) + msg = ( + f"{error_msg}. Please install all necessary requirements with\n" + f"\t>>>>>>>>>> pip install -r {p}\n" + "You can also build an env for that specific combination, check `CARP-S/scripts/build_env(s).sh`." + ) + raise RuntimeError(msg) + except pkg_resources.VersionConflict as error: + error_msg = str(error) + msg = ( + f"Version Conflict: {error_msg} for {p}. Resolve manually. If it is about YAHPO and ConfigSpace, run the following " + "to make YAHPO compatible with newest ConfigSpace:\n" + f"\t>>>>>>>>>> python {p.parent.parent.parent.parent / 'scripts/patch_yahpo_configspace.py'}" + ) + warnings.warn(msg) + + +def check_requirements(cfg: DictConfig) -> None: + """Check whether requirements are satisified for benchmark and optimizer. + + Parameters + ---------- + cfg : DictConfig + Experiment configuration + """ + p_base = Path(__file__).parent.parent.parent / "container_recipes" + req_file_benchmark = p_base / "benchmarks" / cfg.benchmark_id / f"{cfg.benchmark_id}_requirements.txt" + req_file_optimizer = ( + p_base / "optimizers" / cfg.optimizer_container_id / f"{cfg.optimizer_container_id}_requirements.txt" + ) + + _check(req_file_benchmark) + _check(req_file_optimizer) diff --git a/carps/utils/running.py b/carps/utils/running.py new file mode 100644 index 000000000..1eba1ef39 --- /dev/null +++ b/carps/utils/running.py @@ -0,0 +1,113 @@ +from __future__ import annotations + +import os +from typing import TYPE_CHECKING + +from hydra.utils import instantiate +from omegaconf import DictConfig, OmegaConf +from rich import ( + inspect, + print as printr, +) + +from carps.utils.exceptions import NotSupportedError + +if TYPE_CHECKING: + from py_experimenter.result_processor import ResultProcessor + + from carps.benchmarks.problem import Problem + from carps.optimizers.optimizer import Optimizer + + +def make_problem(cfg: DictConfig, result_processor: ResultProcessor | None = None) -> Problem: + """Make Problem. + + Parameters + ---------- + cfg : DictConfig + Global configuration. + result_processor : ResultProcessor + Py experimenter result processor, important for logging. Necessary to + instantiate database logger. + + Returns: + ------- + Problem + Target problem. + """ + problem_cfg = cfg.problem + loggers = [] + if "loggers" in cfg: + for logger in cfg.loggers: + if "DatabaseLogger" in logger._target_: + kwargs = {"result_processor": result_processor} + elif "FileLogger" in logger._target_: + kwargs = {"directory": cfg.outdir} + else: + kwargs = {} + logger = instantiate(logger)(**kwargs) + loggers.append(logger) + return instantiate(problem_cfg, loggers=loggers) + + +def make_optimizer(cfg: DictConfig, problem: Problem) -> Optimizer: + """Make Optimizer. + + Parameters + ---------- + loggers : list[AbstractLogger] + List of loggers to use. + cfg : DictConfig + Global configuration + problem : Problem + Target problem + + Returns: + ------- + Optimizer + Instantiated optimizer. + """ + optimizer_cfg = cfg.optimizer + optimizer = instantiate(optimizer_cfg)(problem=problem, task=cfg.task, loggers=problem.loggers) + if "optimizer_wrappers" in cfg: + for wrapper in cfg.optimizer_wrappers: + optimizer = wrapper(optimizer) + return optimizer + + +def optimize(cfg: DictConfig, result_processor: ResultProcessor | None = None) -> None: + """Run optimizer on problem. + + Save trajectory and metadata to database. + + Parameters + ---------- + cfg : DictConfig + Global configuration. + result_processor : ResultProcessor + Py experimenter result processor, important for logging. Necessary to + instantiate database logger. + + """ + os.environ["HYDRA_FULL_ERROR"] = "1" + + cfg_dict = OmegaConf.to_container(cfg=cfg, resolve=True) + printr(cfg_dict) + # hydra_cfg = HydraConfig.instance().get() + # printr(hydra_cfg.run.dir) + + problem = make_problem(cfg=cfg, result_processor=result_processor) + inspect(problem) + + optimizer = make_optimizer(cfg=cfg, problem=problem) + inspect(optimizer) + + try: + inc_tuple = optimizer.run() + printr("Solution found: ", inc_tuple) + except NotSupportedError: + print("Not supported. Skipping.") + except Exception as e: + print("Something went wrong:") + print(e) + raise e diff --git a/carps/utils/task.py b/carps/utils/task.py new file mode 100644 index 000000000..f3562e536 --- /dev/null +++ b/carps/utils/task.py @@ -0,0 +1,193 @@ +from __future__ import annotations + +from dataclasses import dataclass +from typing import Any + +from ConfigSpace import CategoricalHyperparameter, ConfigurationSpace, Constant, OrdinalHyperparameter +from ConfigSpace.hyperparameters import ( + BetaFloatHyperparameter, + BetaIntegerHyperparameter, + NormalFloatHyperparameter, + NormalIntegerHyperparameter, + UniformFloatHyperparameter, + UniformIntegerHyperparameter, +) +from dataclasses_json import dataclass_json + + +def get_search_space_info(configspace: ConfigurationSpace) -> dict[str, Any]: + hps = dict(configspace) + dimension = len(hps) + search_space_has_priors = False + n_categoricals = 0 + n_integers = 0 + n_ordinals = 0 + n_floats = 0 + for hp in hps.values(): + if isinstance(hp, CategoricalHyperparameter): + n_categoricals += 1 + elif isinstance(hp, BetaIntegerHyperparameter | NormalIntegerHyperparameter | UniformIntegerHyperparameter): + n_integers += 1 + elif isinstance(hp, BetaFloatHyperparameter | NormalFloatHyperparameter | UniformFloatHyperparameter): + n_floats += 1 + elif isinstance(hp, OrdinalHyperparameter): + n_ordinals += 1 + elif isinstance(hp, Constant): + dimension -= 1 + + if isinstance( + hp, + BetaFloatHyperparameter + | BetaIntegerHyperparameter + | NormalFloatHyperparameter + | NormalIntegerHyperparameter, + ): + search_space_has_priors = True + + assert n_categoricals + n_floats + n_integers + n_ordinals == dimension + + search_space_has_conditionals = len(configspace.get_conditions()) > 0 + search_space_has_forbiddens = len(configspace.get_forbiddens()) > 0 + return { + "dimensions": dimension, + "search_space_n_categoricals": n_categoricals, + "search_space_n_ordinals": n_ordinals, + "search_space_n_integers": n_integers, + "search_space_n_floats": n_floats, + "search_space_has_conditionals": search_space_has_conditionals, + "search_space_has_forbiddens": search_space_has_forbiddens, + "search_space_has_priors": search_space_has_priors, + } + + +@dataclass_json +@dataclass(frozen=True) +class Task: + """Task information. + + For general optimization, only `n_trials` or `time_budget` needs + to be defined. The optimizers receive the search space. + For multi-fidelity, at least `is_multifidelity` and `max_budget´ + need to be specified. + For multi-objecitve, at least `n_objectives` needs to be specified. + The remaining parameters are meta-data and not necessarily needed + by the optimizer but useful to order tasks. + + Parameters + ---------- + # General + n_trials : int + The number of trials aka calls to the objective function. + Specify this for classic blackbox problems. + Either `n_trials´ or `time_budget` needs to be specified. + time_budget : float + The time budget in minutes for optimization. + Specify this for multi-fidelity problems. + Either `n_trials´ or `time_budget` needs to be specified. + + # Parallelism + n_workers : int = 1 + The number of workers allowed for this task. Not every optimizer + allows parallelism. + + # Multi-objective + n_objectives : int + The number of optimization objectives. + objectives : list[str] + Optional names of objectives. + + # Multi-fidelity + is_multifidelity : bool + Whether the task is a multi-fidelity problem. + fidelity_type : str + The kind of fidelity used. + min_budget : float + Minimum fidelity. Not used by every optimizer. + max_budget : float + Maximum fidelity. Required for multi-fidelity. + + has_constraints : bool + Whether the task has any constraints. + + # Objective Function Characteristics + domain : str + The task's domain, e.g. synethetic, ML, NAS. + objective_function_approximation : str + How the objective function is approximated / represented, e.g. + real, surrogate or tabular. + has_virtual_time : bool + Whether the task tracked evaluation time in the case of surrogate + or tabular objective functions. + deterministic : bool + Whether the objective function is deterministic. + + # Search Space Information + dimensions: int + The dimensionality of the task. + search_space_n_categoricals: int + The number of categorical hyperparameters (HPs). + search_space_n_ordinals: int + The number of ordinal HPs. + search_space_n_integers: int + The number of integer HPs. + search_space_n_floats: int + The number of float HPs. + search_space_has_conditionals: bool + Whether the search space has conditions. Not every optimizer + supports conditional search spaces. + search_space_has_forbiddens: bool + Whether the search space has forbiddens/constraints. + Not every optimizer supports forbiddens. + search_space_has_priors: bool + Whether there are any priors on HPs, e.g. beta or normal. + + Raises: + ------ + ValueError + When `is_multifidelity` is set and `max_budget` not specified. + In order to use multi-fidelity, both need to be specified. + ValueError + When neither `n_trials` nor `time_budget` are specified. + """ + + # General (REQUIRED) + n_trials: int | None = None + time_budget: float | None = None # 1 cpu, walltime budget in minutes + + # Parallelism + n_workers: int = 1 + + # Multi-Objective + n_objectives: int | None = None + objectives: list[str] | None = None + + # Multi-Fidelity + is_multifidelity: bool | None = None + fidelity_type: str | None = None + min_budget: float | None = None + max_budget: float | None = None + + # Constraint BO + has_constraints: bool | None = None + + # Objective Function Characteristics + domain: str | None = None # e.g. synthetic, ML, NAS, x + objective_function_approximation: str | None = None # real, surrogate, tabular + has_virtual_time: bool | None = None + deterministic: bool | None = None + + # Search Space + dimensions: int | None = None + search_space_n_categoricals: int | None = None + search_space_n_ordinals: int | None = None + search_space_n_integers: int | None = None + search_space_n_floats: int | None = None + search_space_has_conditionals: bool | None = None + search_space_has_forbiddens: bool | None = None + search_space_has_priors: bool | None = None + + def __post_init__(self): + if self.is_multifidelity and self.max_budget is None: + raise ValueError("Please specify max budget for multifidelity.") + if self.n_trials is None and self.time_budget is None: + raise ValueError("Please specify either `n_trials` or `time_budget`.") diff --git a/carps/utils/trials.py b/carps/utils/trials.py new file mode 100644 index 000000000..c8de9a584 --- /dev/null +++ b/carps/utils/trials.py @@ -0,0 +1,73 @@ +from __future__ import annotations + +from dataclasses import dataclass, field +from enum import IntEnum +from typing import TYPE_CHECKING, Any + +from dataclasses_json import dataclass_json + +if TYPE_CHECKING: + from ConfigSpace import Configuration + + +class StatusType(IntEnum): + """Class to define status types of configs.""" + + RUNNING = 0 # In case a job was submitted, but it has not finished. + SUCCESS = 1 + CRASHED = 2 + TIMEOUT = 3 + MEMORYOUT = 4 + + +@dataclass_json +@dataclass(frozen=True) +class TrialInfo: + """Information about a trial. + + Parameters + ---------- + config : Configuration + instance : int | None, defaults to None, length + seed : int | None, defaults to None + budget : float | None, defaults to None + normalized_budget: float | None, defaults to None + The budget normalized by max_budget. Mostly used for logging purposes. + name: str | None, defaults to None, arbitrary information, length 100 + checkpoint: str | None, defaults to None, checkpoint path, length 250 + + The length of the strings depends on the setting for the database. + """ + + config: Configuration + instance: int | None = None + seed: int | None = None + budget: float | None = None + normalized_budget: float | None = None + name: str | None = None + checkpoint: str | None = None + + +@dataclass_json +@dataclass(frozen=True) +class TrialValue: + """Values of a trial. + + Parameters + ---------- + cost : float | list[float] + time : float, defaults to 0.0 + virtual_time : float, defaults to 0.0 + status : StatusType, defaults to StatusType.SUCCESS + starttime : float, defaults to 0.0 + endtime : float, defaults to 0.0 + additional_info : dict[str, Any], defaults to {} + """ + + cost: float | list[float] + time: float = 0.0 + virtual_time: float = 0.0 + status: StatusType = StatusType.SUCCESS + starttime: float = 0.0 + endtime: float = 0.0 + additional_info: dict[str, Any] = field(default_factory=dict) diff --git a/carps/utils/types.py b/carps/utils/types.py new file mode 100644 index 000000000..a700b5e7d --- /dev/null +++ b/carps/utils/types.py @@ -0,0 +1,11 @@ +from __future__ import annotations + +from typing import Any, Optional, Union + +import numpy as np + +from carps.utils.trials import TrialInfo, TrialValue + +SearchSpace = Any +Cost = Union[np.ndarray, float] +Incumbent = Optional[tuple[TrialInfo, TrialValue] | list[tuple[TrialInfo, TrialValue]]] diff --git a/container_recipes/benchmarks/BBOB/BBOB.recipe b/container_recipes/benchmarks/BBOB/BBOB.recipe new file mode 100644 index 000000000..e14e3fc7e --- /dev/null +++ b/container_recipes/benchmarks/BBOB/BBOB.recipe @@ -0,0 +1,39 @@ +Bootstrap: docker +From: python:3.10-slim + +%startscript + flask run + +%environment + export FLASK_APP=carps/container/container_script_problem.py + +%files + ./carps /benchmarking/carps + ./container_recipes /benchmarking/container_recipes + requirements.txt /benchmarking/requirements.txt + setup.py /benchmarking/setup.py + README.md /benchmarking/README.md + +%post + apt update -y + apt upgrade -y + apt install curl -y + apt install wget -y + apt install git -y + apt install gcc -y + apt install build-essential -y + apt install clang -y + + pip install wheel + pip install -r /benchmarking/requirements.txt + pip install ../benchmarking + pip install -r /benchmarking/container_recipes/general/general_requirements_container_problem.txt + + # log benchmarking version + BENCHMARKING_VERSION=$(python -c "import carps; print(carps.version)") + echo "benchmarking_version $BENCHMARKING_VERSION" >> "$SINGULARITY_LABELS" + + # benchmark-specific commands go here + pip install -r /benchmarking/container_recipes/benchmarks/BBOB/BBOB_requirements.txt + + echo "Successfully installed all features" \ No newline at end of file diff --git a/container_recipes/benchmarks/BBOB/BBOB_requirements.txt b/container_recipes/benchmarks/BBOB/BBOB_requirements.txt new file mode 100644 index 000000000..ab93bfcb5 --- /dev/null +++ b/container_recipes/benchmarks/BBOB/BBOB_requirements.txt @@ -0,0 +1 @@ +ioh==0.3.14 \ No newline at end of file diff --git a/container_recipes/benchmarks/DUMMY_Problem/DUMMY_Problem.recipe b/container_recipes/benchmarks/DUMMY_Problem/DUMMY_Problem.recipe new file mode 100644 index 000000000..3c3db63aa --- /dev/null +++ b/container_recipes/benchmarks/DUMMY_Problem/DUMMY_Problem.recipe @@ -0,0 +1,42 @@ +Bootstrap: docker +From: continuumio/anaconda3 + +%startscript + # this is necessary to start the benchmarking server + flask run + +%environment + # this is necessary to start the benchmarking server + export FLASK_APP=carps/container/container_script_problem.py + +%files + ./carps /benchmarking/carps + ./container_recipes /benchmarking/container_recipes + requirements.txt /benchmarking/requirements.txt + setup.py /benchmarking/setup.py + README.md /benchmarking/README.md + +%post + apt update -y + apt upgrade -y + apt install curl -y + apt install wget -y + apt install git -y + apt install gcc -y + apt install build-essential -y + apt install clang -y + . /opt/conda/etc/profile.d/conda.sh + + pip install wheel + pip install -r /benchmarking/requirements.txt + pip install ../benchmarking + pip install -r /benchmarking/container_recipes/general/general_requirements_container_problem.txt + + # log benchmarking version + BENCHMARKING_VERSION=$(python -c "import carps; print(carps.version)") + echo "benchmarking_version $BENCHMARKING_VERSION" >> "$SINGULARITY_LABELS" + + # benchmark-specific commands go here + pip install -r /benchmarking/container_recipes/benchmarks/DUMMY_Problem/DUMMY_Problem_requirements.txt + + echo "Successfully installed all features" \ No newline at end of file diff --git a/container_recipes/benchmarks/DUMMY_Problem/DUMMY_Problem_requirements.txt b/container_recipes/benchmarks/DUMMY_Problem/DUMMY_Problem_requirements.txt new file mode 100644 index 000000000..273ddce8e --- /dev/null +++ b/container_recipes/benchmarks/DUMMY_Problem/DUMMY_Problem_requirements.txt @@ -0,0 +1,2 @@ +# example +scikit-learn \ No newline at end of file diff --git a/container_recipes/benchmarks/HPOB/HPOB.recipe b/container_recipes/benchmarks/HPOB/HPOB.recipe new file mode 100644 index 000000000..3d029cc6d --- /dev/null +++ b/container_recipes/benchmarks/HPOB/HPOB.recipe @@ -0,0 +1,39 @@ +Bootstrap: docker +From: python:3.10-slim + +%startscript + flask run + +%environment + export FLASK_APP=carps/container/container_script_problem.py + +%files + ./carps /benchmarking/carps + ./container_recipes /benchmarking/container_recipes + requirements.txt /benchmarking/requirements.txt + setup.py /benchmarking/setup.py + README.md /benchmarking/README.md + +%post + apt update -y + apt upgrade -y + apt install curl -y + apt install wget -y + apt install git -y + apt install gcc -y + apt install build-essential -y + apt install clang -y + + pip install wheel + pip install -r /benchmarking/requirements.txt + pip install ../benchmarking + pip install -r /benchmarking/container_recipes/general/general_requirements_container_problem.txt + + # log benchmarking version + BENCHMARKING_VERSION=$(python -c "import carps; print(carps.version)") + echo "benchmarking_version $BENCHMARKING_VERSION" >> "$SINGULARITY_LABELS" + + # benchmark-specific commands go here + pip install -r benchmarking/container_recipes/benchmarks/HPOB/HPOB_requirements.txt + + echo "Successfully installed all features" \ No newline at end of file diff --git a/container_recipes/benchmarks/HPOB/HPOB_requirements.txt b/container_recipes/benchmarks/HPOB/HPOB_requirements.txt new file mode 100644 index 000000000..42705634a --- /dev/null +++ b/container_recipes/benchmarks/HPOB/HPOB_requirements.txt @@ -0,0 +1 @@ +xgboost==1.5.2 diff --git a/container_recipes/benchmarks/HPOB/download_data.sh b/container_recipes/benchmarks/HPOB/download_data.sh new file mode 100644 index 000000000..dd4fd8651 --- /dev/null +++ b/container_recipes/benchmarks/HPOB/download_data.sh @@ -0,0 +1,4 @@ +apt install unzip -y +wget https://rewind.tf.uni-freiburg.de/index.php/s/rTwPgaxS2Z7NH39/download/saved-surrogates.zip -P carps/benchmark_data/HPO-B/saved-surrogates +unzip carps/benchmark_data/HPO-B/saved-surrogates/saved-surrogates.zip -d carps/benchmark_data/HPO-B +rm carps/benchmark_data/HPO-B/saved-surrogates/saved-surrogates.zip \ No newline at end of file diff --git a/container_recipes/benchmarks/HPOBench/HPOBench_container.recipe b/container_recipes/benchmarks/HPOBench/HPOBench_container.recipe new file mode 100644 index 000000000..cdd7bbafa --- /dev/null +++ b/container_recipes/benchmarks/HPOBench/HPOBench_container.recipe @@ -0,0 +1,53 @@ +Bootstrap: docker +From: python:3.9-slim + +%startscript + # this is necessary to start the benchmarking server + flask run + +%environment + # this is necessary to start the benchmarking server + export FLASK_APP=carps/container/container_script_problem.py + +%files + ./carps /benchmarking/carps + ./container_recipes /benchmarking/container_recipes + requirements.txt /benchmarking/requirements.txt + setup.py /benchmarking/setup.py + README.md /benchmarking/README.md + +%post + apt update -y + apt upgrade -y + apt install curl -y + apt install wget -y + apt install git -y + apt install gcc -y + apt install build-essential -y + apt install clang -y + + pip install wheel + pip install -r /benchmarking/requirements.txt + pip install ../benchmarking + pip install -r /benchmarking/container_recipes/general/general_requirements_container_problem.txt + + # log benchmarking version + BENCHMARKING_VERSION=$(python -c "import carps; print(carps.version)") + echo "benchmarking_version $BENCHMARKING_VERSION" >> "$SINGULARITY_LABELS" + + # benchmark-specific commands go here + cd /benchmarking/carps + git clone https://github.com/automl/HPOBench.git + cd HPOBench + git checkout 47bf141f79e6bdfb26d1f1218b5d5aac09d7d2ce + pip install . + pip install -r /benchmarking/container_recipes/benchmarks/hpobench/hpobench_requirements.txt + + # Create symlinks + chmod -R 755 /benchmarking + mkdir /var/lib/hpobench + ln -s /tmp/socket /var/lib/hpobench + ln -s /tmp/hpobench/data /var/lib/hpobench + ln -s /tmp/hpobench/cache /var/lib/hpobench + + echo "Successfully installed all features" \ No newline at end of file diff --git a/container_recipes/benchmarks/HPOBench/HPOBench_requirements.txt b/container_recipes/benchmarks/HPOBench/HPOBench_requirements.txt new file mode 100644 index 000000000..287dad8ef --- /dev/null +++ b/container_recipes/benchmarks/HPOBench/HPOBench_requirements.txt @@ -0,0 +1,8 @@ +git+https://github.com/automl/HPOBench.git +tqdm +pandas==1.2.4 +Cython==0.29.36 +scikit-learn==0.24.2 #--no-build-isolation +openml==0.12.2 +xgboost==1.3.1 +ConfigSpace==0.6.1 \ No newline at end of file diff --git a/container_recipes/benchmarks/HPOBench/install_HPOBench_requirements.sh b/container_recipes/benchmarks/HPOBench/install_HPOBench_requirements.sh new file mode 100644 index 000000000..83d09e473 --- /dev/null +++ b/container_recipes/benchmarks/HPOBench/install_HPOBench_requirements.sh @@ -0,0 +1,8 @@ +pip install git+https://github.com/automl/HPOBench.git +pip install tqdm +pip install pandas==1.2.4 +pip install Cython==0.29.36 +pip install scikit-learn==0.24.2 --no-build-isolation +pip install openml==0.12.2 +pip install xgboost==1.3.1 +pip install ConfigSpace==0.6.1 \ No newline at end of file diff --git a/container_recipes/benchmarks/MFPBench/MFPBench_pip_freeze.txt b/container_recipes/benchmarks/MFPBench/MFPBench_pip_freeze.txt new file mode 100644 index 000000000..915cd8ffa --- /dev/null +++ b/container_recipes/benchmarks/MFPBench/MFPBench_pip_freeze.txt @@ -0,0 +1,268 @@ +about-time==4.2.1 +absl-py==2.1.0 +aiofiles==22.1.0 +aiosqlite==0.20.0 +alembic==1.12.1 +alive-progress==3.1.5 +antlr4-python3-runtime==4.9.3 +anyio==4.3.0 +arch==5.3.0 +argon2-cffi==23.1.0 +argon2-cffi-bindings==21.2.0 +arrow==1.3.0 +asttokens==2.4.1 +attrs==23.2.0 +autograd==1.6.2 +Babel==2.14.0 +bcrypt==4.1.2 +beautifulsoup4==4.12.3 +bleach==6.1.0 +boto3==1.34.69 +botocore==1.34.69 +-e git+https://github.com/AutoML/SMACBenchmarking.git@5a4344e54a7771a8b00c2d35fa26942f090028a4#egg=CARP_S +certifi==2024.2.2 +cffi @ file:///croot/cffi_1714483155441/work +cfgv==3.4.0 +charset-normalizer==3.3.2 +click==8.1.7 +cloudpickle==2.2.1 +cma==3.2.2 +codecarbon==2.3.5 +coloredlogs==15.0.1 +colorlog==6.7.0 +comm==0.2.2 +ConfigSpace==0.6.1 +contextlib2==21.6.0 +contourpy==1.2.0 +coverage==4.5.4 +critdd @ git+https://github.com/mirkobunse/critdd@dc381ecd2a8b1b2e02f99f292aaff0fa3ae6f40d +cryptography @ file:///croot/cryptography_1714660666131/work +cycler==0.12.1 +Cython==3.0.8 +dask==2023.11.0 +dask-jobqueue==0.8.2 +dataclasses-json==0.6.5 +debtcollector==2.5.0 +debugpy==1.8.1 +decopatch==1.4.10 +decorator==5.1.1 +defusedxml==0.7.1 +DEHB==0.1.1 +Deprecated==1.2.14 +dill==0.3.8 +distlib==0.3.7 +distributed==2023.11.0 +dnspython @ file:///croot/dnspython_1703096966733/work +docker==7.0.0 +domdf-python-tools==3.8.0.post2 +emcee==3.1.4 +entrypoints==0.4 +exceptiongroup==1.2.1 +executing==2.0.1 +fastjsonschema==2.19.1 +filelock==3.13.1 +fire==0.6.0 +flatbuffers==23.5.26 +fonttools==4.44.3 +fqdn==1.5.1 +fsspec==2023.10.0 +google-pasta==0.2.0 +grapheme==0.6.0 +greenlet==3.0.1 +hpobench @ file:///home/soham/repos/HPOBench +humanfriendly==10.0 +hydra-colorlog==1.2.0 +hydra-core==1.3.2 +hydra-joblib-launcher==1.2.0 +hydra-submitit-launcher==1.2.0 +identify==2.5.36 +idna @ file:///croot/idna_1714398848350/work +importlib-metadata==6.8.0 +iniconfig==2.0.0 +ioh==0.3.14 +ipykernel==6.29.4 +ipython==8.24.0 +ipython-genutils==0.2.0 +iso8601==2.1.0 +isoduration==20.11.0 +jahs-bench==1.1.0 +jedi==0.19.1 +Jinja2==3.1.2 +jmespath==1.0.1 +joblib==1.4.2 +json5==0.9.25 +jsonpointer==2.4 +jsonschema==4.21.1 +jsonschema-specifications==2023.12.1 +jupyter-events==0.10.0 +jupyter-ydoc==0.2.5 +jupyter_client==7.4.9 +jupyter_core==5.7.2 +jupyter_server==2.14.0 +jupyter_server_fileid==0.9.2 +jupyter_server_terminals==0.5.3 +jupyter_server_ydoc==0.8.0 +jupyterlab==3.6.7 +jupyterlab_pygments==0.3.0 +jupyterlab_server==2.27.1 +kiwisolver==1.4.5 +locket==1.0.0 +loguru==0.7.2 +makefun==1.15.2 +Mako==1.3.0 +markdown-it-py==3.0.0 +MarkupSafe==2.1.3 +marshmallow==3.21.2 +matplotlib==3.8.1 +matplotlib-inline==0.1.7 +mdurl==0.1.2 +-e git+https://github.com/Sohambasu07/mf-prior-bench.git@0cf25063ba35feebe0e4eb9aa0b0ee86688b6d27#egg=mf_prior_bench +mistune==3.0.2 +mkl-fft @ file:///croot/mkl_fft_1695058164594/work +mkl-random @ file:///croot/mkl_random_1695059800811/work +mkl-service==2.4.0 +more-itertools==10.1.0 +mpmath==1.3.0 +msgpack==1.0.7 +multiprocess==0.70.16 +mypy==1.10.0 +mypy-extensions==1.0.0 +natsort==8.4.0 +nbclassic==1.0.0 +nbclient==0.10.0 +nbconvert==7.16.4 +nbformat==5.10.4 +nest-asyncio==1.6.0 +netaddr==0.10.0 +networkx==3.3 +nodeenv==1.8.0 +notebook==6.5.7 +notebook_shim==0.2.4 +numpy==1.26.2 +omegaconf==2.3.0 +onnxruntime==1.16.2 +optuna==3.4.0 +oslo.concurrency==5.2.0 +oslo.config==9.2.0 +oslo.i18n==6.2.0 +oslo.utils==6.3.0 +overrides==7.7.0 +packaging==23.2 +pandas==2.2.2 +pandocfilters==1.5.1 +paramiko==3.4.0 +parquet==1.3.1 +parso==0.8.4 +partd==1.4.1 +pathos==0.3.2 +patsy==0.5.6 +pbr==6.0.0 +pexpect==4.9.0 +Pillow==10.1.0 +platformdirs==3.11.0 +pluggy==1.5.0 +ply==3.11 +pox==0.3.4 +ppft==1.7.6.8 +pre-commit==3.7.0 +prometheus_client==0.20.0 +prompt-toolkit==3.0.43 +property-cached==1.6.4 +protobuf==4.25.0 +psutil==5.9.6 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +py-cpuinfo==9.0.0 +py-experimenter==1.4.1 +pyaml==24.4.0 +pyarrow==14.0.1 +pycparser @ file:///tmp/build/80754af9/pycparser_1636541352034/work +Pygments==2.17.2 +pymongo @ file:///croot/pymongo_1714079720093/work +pymoo==0.6.0 +PyMySQL==1.1.0 +PyNaCl==1.5.0 +pynisher==1.0.10 +pynvml==11.5.0 +pyparsing==3.1.1 +PyQt5==5.15.10 +PyQt5-Qt5==5.15.2 +PyQt5-sip==12.13.0 +pyrfr==0.9.0 +Pyro4==4.80 +pytest==8.2.0 +pytest-cases==3.8.5 +python-dateutil==2.8.2 +python-json-logger==2.0.7 +pytz==2023.3.post1 +PyYAML==6.0.1 +pyzmq==26.0.3 +rapidfuzz==3.9.0 +referencing==0.34.0 +regex==2023.10.3 +requests==2.31.0 +rfc3339-validator==0.1.4 +rfc3986==2.0.0 +rfc3986-validator==0.1.1 +rich==13.7.1 +rliable==1.0.8 +rpds-py==0.18.0 +ruff==0.4.2 +s3fs==0.4.2 +s3transfer==0.10.1 +sagemaker==2.214.0 +schema==0.7.5 +scikit-learn==1.4.2 +scikit-optimize==0.10.1 +scipy==1.11.3 +seaborn==0.13.2 +Send2Trash==1.8.3 +serpent==1.41 +six==1.16.0 +smac==2.0.2 +smdebug-rulesconfig==1.0.1 +sniffio==1.3.1 +sortedcontainers==2.4.0 +soupsieve==2.5 +SQLAlchemy==2.0.23 +sshtunnel==0.4.0 +stack-data==0.6.3 +statsmodels==0.14.1 +stevedore==5.1.0 +submitit==1.5.1 +swig==4.2.1 +sympy==1.12 +syne_tune==0.13.0 +tblib==3.0.0 +termcolor==2.4.0 +terminado==0.18.1 +threadpoolctl==3.2.0 +thriftpy2==0.4.17 +tinycss2==1.3.0 +toml==0.10.2 +tomli==2.0.1 +toolz==0.12.0 +tornado==6.3.3 +tqdm==4.66.1 +traitlets==5.14.3 +types-python-dateutil==2.9.0.20240316 +typing-inspect==0.9.0 +typing_extensions==4.8.0 +tzdata==2023.3 +ujson==5.9.0 +uri-template==1.3.0 +urllib3==2.1.0 +virtualenv==20.24.6 +wcwidth==0.2.13 +webcolors==1.13 +webencodings==0.5.1 +websocket-client==1.8.0 +wrapt==1.16.0 +xgboost==2.0.3 +y-py==0.6.2 +yacs==0.1.8 +yahpo-gym==1.0.1 +ypy-websocket==0.8.4 +zict==3.0.0 +zipp==3.17.0 diff --git a/container_recipes/benchmarks/MFPBench/MFPBench_requirements.txt b/container_recipes/benchmarks/MFPBench/MFPBench_requirements.txt new file mode 100644 index 000000000..556c7bc61 --- /dev/null +++ b/container_recipes/benchmarks/MFPBench/MFPBench_requirements.txt @@ -0,0 +1,5 @@ +scikit-learn +mf-prior-bench + +# PD1 +xgboost>=1.7 \ No newline at end of file diff --git a/container_recipes/benchmarks/MFPBench/download_data.sh b/container_recipes/benchmarks/MFPBench/download_data.sh new file mode 100644 index 000000000..5705870b5 --- /dev/null +++ b/container_recipes/benchmarks/MFPBench/download_data.sh @@ -0,0 +1,2 @@ +python -m mfpbench download --status --data-dir data +python -m mfpbench download --benchmark pd1 \ No newline at end of file diff --git a/container_recipes/benchmarks/Pymoo/Pymoo_pip_freeze.txt b/container_recipes/benchmarks/Pymoo/Pymoo_pip_freeze.txt new file mode 100644 index 000000000..a1ddcad83 --- /dev/null +++ b/container_recipes/benchmarks/Pymoo/Pymoo_pip_freeze.txt @@ -0,0 +1,273 @@ +about-time==4.2.1 +absl-py==2.1.0 +aiofiles==22.1.0 +aiosqlite==0.20.0 +alembic==1.12.1 +alive-progress==3.1.5 +antlr4-python3-runtime==4.9.3 +anyio==4.3.0 +arch==5.3.0 +argon2-cffi==23.1.0 +argon2-cffi-bindings==21.2.0 +arrow==1.3.0 +asttokens==2.4.1 +attrs==23.2.0 +autograd==1.6.2 +Babel==2.14.0 +bayesian-optimization==1.4.3 +bcrypt==4.1.2 +beautifulsoup4==4.12.3 +bleach==6.1.0 +boto3==1.34.69 +botocore==1.34.69 +-e git+https://github.com/AutoML/SMACBenchmarking.git@71f8d330f9f07c7ef3f46f84460d86fb37141f5d#egg=CARP_S +certifi==2024.2.2 +cffi @ file:///croot/cffi_1714483155441/work +cfgv==3.4.0 +charset-normalizer==3.3.2 +click==8.1.7 +cloudpickle==2.2.1 +cma==3.2.2 +codecarbon==2.3.5 +colorama==0.4.6 +coloredlogs==15.0.1 +colorlog==6.7.0 +comm==0.2.2 +ConfigSpace==0.6.1 +contextlib2==21.6.0 +contourpy==1.2.0 +coverage==4.5.4 +critdd @ git+https://github.com/mirkobunse/critdd@dc381ecd2a8b1b2e02f99f292aaff0fa3ae6f40d +cryptography @ file:///croot/cryptography_1714660666131/work +cycler==0.12.1 +Cython==3.0.8 +dask==2023.11.0 +dask-jobqueue==0.8.2 +dataclasses-json==0.6.5 +debtcollector==2.5.0 +debugpy==1.8.1 +decopatch==1.4.10 +decorator==5.1.1 +defusedxml==0.7.1 +DEHB==0.1.1 +Deprecated==1.2.14 +dill==0.3.8 +distlib==0.3.7 +distributed==2023.11.0 +dnspython @ file:///croot/dnspython_1703096966733/work +docker==7.0.0 +domdf-python-tools==3.8.0.post2 +emcee==3.1.4 +entrypoints==0.4 +exceptiongroup==1.2.1 +executing==2.0.1 +fastjsonschema==2.19.1 +filelock==3.13.1 +fire==0.6.0 +flatbuffers==23.5.26 +fonttools==4.44.3 +fqdn==1.5.1 +fsspec==2023.10.0 +future==1.0.0 +google-pasta==0.2.0 +grapheme==0.6.0 +greenlet==3.0.1 +humanfriendly==10.0 +hydra-colorlog==1.2.0 +hydra-core==1.3.2 +hydra-joblib-launcher==1.2.0 +hydra-submitit-launcher==1.2.0 +hyperopt==0.2.7 +identify==2.5.36 +idna @ file:///croot/idna_1714398848350/work +importlib-metadata==6.8.0 +iniconfig==2.0.0 +ioh==0.3.14 +ipykernel==6.29.4 +ipython==8.24.0 +ipython-genutils==0.2.0 +iso8601==2.1.0 +isoduration==20.11.0 +jahs-bench==1.1.0 +jedi==0.19.1 +Jinja2==3.1.2 +jmespath==1.0.1 +joblib==1.4.2 +json5==0.9.25 +jsonpointer==2.4 +jsonschema==4.21.1 +jsonschema-specifications==2023.12.1 +jupyter-events==0.10.0 +jupyter-ydoc==0.2.5 +jupyter_client==7.4.9 +jupyter_core==5.7.2 +jupyter_server==2.14.0 +jupyter_server_fileid==0.9.2 +jupyter_server_terminals==0.5.3 +jupyter_server_ydoc==0.8.0 +jupyterlab==3.6.7 +jupyterlab_pygments==0.3.0 +jupyterlab_server==2.27.1 +kiwisolver==1.4.5 +locket==1.0.0 +loguru==0.7.2 +makefun==1.15.2 +Mako==1.3.0 +markdown-it-py==3.0.0 +MarkupSafe==2.1.3 +marshmallow==3.21.2 +matplotlib==3.8.1 +matplotlib-inline==0.1.7 +mdurl==0.1.2 +mf-prior-bench==1.9.0 +mistune==3.0.2 +mkl-fft @ file:///croot/mkl_fft_1695058164594/work +mkl-random @ file:///croot/mkl_random_1695059800811/work +mkl-service==2.4.0 +more-itertools==10.1.0 +mpmath==1.3.0 +msgpack==1.0.7 +multiprocess==0.70.16 +mypy==1.10.0 +mypy-extensions==1.0.0 +natsort==8.4.0 +nbclassic==1.0.0 +nbclient==0.10.0 +nbconvert==7.16.4 +nbformat==5.10.4 +nest-asyncio==1.6.0 +netaddr==0.10.0 +networkx==3.3 +nevergrad==1.0.2 +nodeenv==1.8.0 +notebook==6.5.7 +notebook_shim==0.2.4 +numpy==1.26.2 +omegaconf==2.3.0 +onnxruntime==1.16.2 +optuna==3.4.0 +oslo.concurrency==5.2.0 +oslo.config==9.2.0 +oslo.i18n==6.2.0 +oslo.utils==6.3.0 +overrides==7.7.0 +packaging==23.2 +pandas==2.2.2 +pandocfilters==1.5.1 +paramiko==3.4.0 +parquet==1.3.1 +parso==0.8.4 +partd==1.4.1 +pathos==0.3.2 +patsy==0.5.6 +pbr==6.0.0 +pexpect==4.9.0 +Pillow==10.1.0 +platformdirs==3.11.0 +pluggy==1.5.0 +ply==3.11 +pox==0.3.4 +ppft==1.7.6.8 +pre-commit==3.7.0 +prometheus_client==0.20.0 +prompt-toolkit==3.0.43 +property-cached==1.6.4 +protobuf==4.25.0 +psutil==5.9.6 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +py-cpuinfo==9.0.0 +py-experimenter==1.4.1 +py4j==0.10.9.7 +pyaml==24.4.0 +pyarrow==14.0.1 +pycparser @ file:///tmp/build/80754af9/pycparser_1636541352034/work +Pygments==2.17.2 +pymongo @ file:///croot/pymongo_1714079720093/work +pymoo==0.6.1.1 +PyMySQL==1.1.0 +PyNaCl==1.5.0 +pynisher==1.0.10 +pynvml==11.5.0 +pyparsing==3.1.1 +PyQt5==5.15.10 +PyQt5-Qt5==5.15.2 +PyQt5-sip==12.13.0 +pyrfr==0.9.0 +Pyro4==4.80 +pytest==8.2.0 +pytest-cases==3.8.5 +python-dateutil==2.8.2 +python-json-logger==2.0.7 +pytz==2023.3.post1 +PyYAML==6.0.1 +pyzmq==26.0.3 +rapidfuzz==3.9.0 +referencing==0.34.0 +regex==2023.10.3 +requests==2.31.0 +rfc3339-validator==0.1.4 +rfc3986==2.0.0 +rfc3986-validator==0.1.1 +rich==13.7.1 +rliable==1.0.8 +rpds-py==0.18.0 +ruff==0.4.2 +s3fs==0.4.2 +s3transfer==0.10.1 +sagemaker==2.214.0 +schema==0.7.5 +scikit-learn==1.4.2 +scikit-optimize==0.10.1 +scipy==1.11.3 +seaborn==0.13.2 +Send2Trash==1.8.3 +serpent==1.41 +six==1.16.0 +smac==2.1.0 +smdebug-rulesconfig==1.0.1 +sniffio==1.3.1 +sortedcontainers==2.4.0 +soupsieve==2.5 +SQLAlchemy==2.0.23 +sshtunnel==0.4.0 +stack-data==0.6.3 +statsmodels==0.14.1 +stevedore==5.1.0 +submitit==1.5.1 +swig==4.2.1 +sympy==1.12 +syne_tune==0.13.0 +tblib==3.0.0 +termcolor==2.4.0 +terminado==0.18.1 +threadpoolctl==3.2.0 +thriftpy2==0.4.17 +tinycss2==1.3.0 +toml==0.10.2 +tomli==2.0.1 +toolz==0.12.0 +tornado==6.3.3 +tqdm==4.66.1 +traitlets==5.14.3 +types-python-dateutil==2.9.0.20240316 +typing-inspect==0.9.0 +typing_extensions==4.8.0 +tzdata==2023.3 +ujson==5.9.0 +uri-template==1.3.0 +urllib3==2.1.0 +virtualenv==20.24.6 +wcwidth==0.2.13 +webcolors==1.13 +webencodings==0.5.1 +websocket-client==1.8.0 +wrapt==1.16.0 +xgboost==2.0.3 +y-py==0.6.2 +yacs==0.1.8 +yahpo-gym==1.0.1 +ypy-websocket==0.8.4 +zict==3.0.0 +zipp==3.17.0 diff --git a/container_recipes/benchmarks/Pymoo/Pymoo_requirements.txt b/container_recipes/benchmarks/Pymoo/Pymoo_requirements.txt new file mode 100644 index 000000000..5a09b0194 --- /dev/null +++ b/container_recipes/benchmarks/Pymoo/Pymoo_requirements.txt @@ -0,0 +1 @@ +pymoo \ No newline at end of file diff --git a/container_recipes/benchmarks/YAHPO/YAHPO.recipe b/container_recipes/benchmarks/YAHPO/YAHPO.recipe new file mode 100644 index 000000000..933d608cb --- /dev/null +++ b/container_recipes/benchmarks/YAHPO/YAHPO.recipe @@ -0,0 +1,46 @@ +Bootstrap: docker +From: continuumio/anaconda3 + +%startscript + # this is necessary to start the benchmarking server + flask run + +%environment + # this is necessary to start the benchmarking server + export FLASK_APP=carps/container/container_script_problem.py + +%files + ./carps /benchmarking/carps + ./container_recipes /benchmarking/container_recipes + requirements.txt /benchmarking/requirements.txt + setup.py /benchmarking/setup.py + README.md /benchmarking/README.md + +%post + apt update -y + apt upgrade -y + apt install curl -y + apt install wget -y + apt install git -y + apt install gcc -y + apt install build-essential -y + apt install clang -y + . /opt/conda/etc/profile.d/conda.sh + + pip install wheel + pip install -r /benchmarking/requirements.txt + pip install ../benchmarking + pip install -r /benchmarking/container_recipes/general/general_requirements_container_problem.txt + + # log benchmarking version + BENCHMARKING_VERSION=$(python -c "import carps; print(carps.version)") + echo "benchmarking_version $BENCHMARKING_VERSION" >> "$SINGULARITY_LABELS" + + # benchmark-specific commands go here + pip install -r /benchmarking/container_recipes/benchmarks/YAHPO/YAHPO_requirements.txt + cd /benchmarking/carps + mkdir benchmark_data + cd benchmark_data + git clone https://github.com/slds-lmu/yahpo_data.git + + echo "Successfully installed all features" \ No newline at end of file diff --git a/container_recipes/benchmarks/YAHPO/YAHPO_requirements.txt b/container_recipes/benchmarks/YAHPO/YAHPO_requirements.txt new file mode 100644 index 000000000..ee575dc96 --- /dev/null +++ b/container_recipes/benchmarks/YAHPO/YAHPO_requirements.txt @@ -0,0 +1,3 @@ +yahpo-gym==1.0.1 +onnxruntime==1.15.0 +ConfigSpace~=0.6.0 \ No newline at end of file diff --git a/container_recipes/benchmarks/YAHPO/prepare_yahpo.sh b/container_recipes/benchmarks/YAHPO/prepare_yahpo.sh new file mode 100644 index 000000000..7deed7cc7 --- /dev/null +++ b/container_recipes/benchmarks/YAHPO/prepare_yahpo.sh @@ -0,0 +1,10 @@ +# If you want to use yahpo locally and do not want to change to an old ConfigSpace version +# run this :) +pip install yahpo-gym +cd carps +mkdir benchmark_data +cd benchmark_data +git clone https://github.com/slds-lmu/yahpo_data.git +cd ../.. +python scripts/patch_yahpo_configspace.py +pip install ConfigSpace --upgrade \ No newline at end of file diff --git a/container_recipes/general/general_requirements_container_optimizer.txt b/container_recipes/general/general_requirements_container_optimizer.txt new file mode 100644 index 000000000..a69488a13 --- /dev/null +++ b/container_recipes/general/general_requirements_container_optimizer.txt @@ -0,0 +1,4 @@ +# these are included in all optimizer containers +requests~=2.31.0 +paramiko>=3.4.0 +sshtunnel>=0.4.0 \ No newline at end of file diff --git a/container_recipes/general/general_requirements_container_problem.txt b/container_recipes/general/general_requirements_container_problem.txt new file mode 100644 index 000000000..8a41d305e --- /dev/null +++ b/container_recipes/general/general_requirements_container_problem.txt @@ -0,0 +1,2 @@ +# these are included in all problem containers +flask~=2.3.2 \ No newline at end of file diff --git a/container_recipes/general/general_requirements_container_runner.txt b/container_recipes/general/general_requirements_container_runner.txt new file mode 100644 index 000000000..6b359a540 --- /dev/null +++ b/container_recipes/general/general_requirements_container_runner.txt @@ -0,0 +1,5 @@ +# general requirements for the hydra-initializer container +spython~=0.3.0 +domdf_python_tools +paramiko>=3.4.0 +sshtunnel>=0.4.0 \ No newline at end of file diff --git a/container_recipes/general/runner.recipe b/container_recipes/general/runner.recipe new file mode 100644 index 000000000..14df7fd88 --- /dev/null +++ b/container_recipes/general/runner.recipe @@ -0,0 +1,30 @@ +Bootstrap: docker +From: python:3.10-slim + +%files + ./carps /benchmarking/carps + ./container_recipes /benchmarking/container_recipes + requirements.txt /benchmarking/requirements.txt + setup.py /benchmarking/setup.py + README.md /benchmarking/README.md + +%post + apt update -y + apt upgrade -y + apt install curl -y + apt install wget -y + apt install git -y + + pip install -r /benchmarking/requirements.txt + pip install ../benchmarking + pip install -r /benchmarking/container_recipes/general/general_requirements_container_runner.txt + + # log benchmarking version + BENCHMARKING_VERSION=$(python -c "import carps; print(carps.version)") + echo "benchmarking_version $BENCHMARKING_VERSION" >> "$SINGULARITY_LABELS" + + echo "Successfully installed all features" + +%runscript + python /benchmarking/carps/container/container_script_runner.py + diff --git a/container_recipes/optimizers/DEHB/DEHB_pip_freeze.txt b/container_recipes/optimizers/DEHB/DEHB_pip_freeze.txt new file mode 100644 index 000000000..0a6e23d10 --- /dev/null +++ b/container_recipes/optimizers/DEHB/DEHB_pip_freeze.txt @@ -0,0 +1,268 @@ +about-time==4.2.1 +absl-py==2.1.0 +aiofiles==22.1.0 +aiosqlite==0.20.0 +alembic==1.12.1 +alive-progress==3.1.5 +antlr4-python3-runtime==4.9.3 +anyio==4.3.0 +arch==5.3.0 +argon2-cffi==23.1.0 +argon2-cffi-bindings==21.2.0 +arrow==1.3.0 +asttokens==2.4.1 +attrs==23.2.0 +autograd==1.6.2 +Babel==2.14.0 +bcrypt==4.1.2 +beautifulsoup4==4.12.3 +bleach==6.1.0 +boto3==1.34.69 +botocore==1.34.69 +-e git+https://github.com/AutoML/SMACBenchmarking.git@69a11e7ff541673a7438466122091f95e8e93a1c#egg=CARP_S +certifi==2024.2.2 +cffi @ file:///croot/cffi_1714483155441/work +cfgv==3.4.0psynetu +charset-normalizer==3.3.2 +click==8.1.7 +cloudpickle==2.2.1 +cma==3.2.2 +codecarbon==2.3.5 +coloredlogs==15.0.1 +colorlog==6.7.0 +comm==0.2.2 +ConfigSpace==0.6.1 +contextlib2==21.6.0 +contourpy==1.2.0 +coverage==4.5.4 +critdd @ git+https://github.com/mirkobunse/critdd@dc381ecd2a8b1b2e02f99f292aaff0fa3ae6f40d +cryptography @ file:///croot/cryptography_1714660666131/work +cycler==0.12.1 +Cython==3.0.8 +dask==2023.11.0 +dask-jobqueue==0.8.2 +dataclasses-json==0.6.5 +debtcollector==2.5.0 +debugpy==1.8.1 +decopatch==1.4.10 +decorator==5.1.1 +defusedxml==0.7.1 +DEHB==0.1.1 +Deprecated==1.2.14 +dill==0.3.8 +distlib==0.3.7 +distributed==2023.11.0 +dnspython @ file:///croot/dnspython_1703096966733/work +docker==7.0.0 +domdf-python-tools==3.8.0.post2 +emcee==3.1.4 +entrypoints==0.4 +exceptiongroup==1.2.1 +executing==2.0.1 +fastjsonschema==2.19.1 +filelock==3.13.1 +fire==0.6.0 +flatbuffers==23.5.26 +fonttools==4.44.3 +fqdn==1.5.1 +fsspec==2023.10.0 +future==1.0.0 +google-pasta==0.2.0 +grapheme==0.6.0 +greenlet==3.0.1 +humanfriendly==10.0 +hydra-colorlog==1.2.0 +hydra-core==1.3.2 +hydra-joblib-launcher==1.2.0 +hydra-submitit-launcher==1.2.0 +identify==2.5.36 +idna @ file:///croot/idna_1714398848350/work +importlib-metadata==6.8.0 +iniconfig==2.0.0 +ioh==0.3.14 +ipykernel==6.29.4 +ipython==8.24.0 +ipython-genutils==0.2.0 +iso8601==2.1.0 +isoduration==20.11.0 +jahs-bench==1.1.0 +jedi==0.19.1 +Jinja2==3.1.2 +jmespath==1.0.1 +joblib==1.4.2 +json5==0.9.25 +jsonpointer==2.4 +jsonschema==4.21.1 +jsonschema-specifications==2023.12.1 +jupyter-events==0.10.0 +jupyter-ydoc==0.2.5 +jupyter_client==7.4.9 +jupyter_core==5.7.2 +jupyter_server==2.14.0 +jupyter_server_fileid==0.9.2 +jupyter_server_terminals==0.5.3 +jupyter_server_ydoc==0.8.0 +jupyterlab==3.6.7 +jupyterlab_pygments==0.3.0 +jupyterlab_server==2.27.1 +kiwisolver==1.4.5 +locket==1.0.0 +loguru==0.7.2 +makefun==1.15.2 +Mako==1.3.0 +markdown-it-py==3.0.0 +MarkupSafe==2.1.3 +marshmallow==3.21.2 +matplotlib==3.8.1 +matplotlib-inline==0.1.7 +mdurl==0.1.2 +mf-prior-bench==1.9.0 +mistune==3.0.2 +mkl-fft @ file:///croot/mkl_fft_1695058164594/work +mkl-random @ file:///croot/mkl_random_1695059800811/work +mkl-service==2.4.0 +more-itertools==10.1.0 +mpmath==1.3.0 +msgpack==1.0.7 +multiprocess==0.70.16 +mypy==1.10.0 +mypy-extensions==1.0.0 +natsort==8.4.0 +nbclassic==1.0.0 +nbclient==0.10.0 +nbconvert==7.16.4 +nbformat==5.10.4 +nest-asyncio==1.6.0 +netaddr==0.10.0 +networkx==3.3 +nodeenv==1.8.0 +notebook==6.5.7 +notebook_shim==0.2.4 +numpy==1.26.2 +omegaconf==2.3.0 +onnxruntime==1.16.2 +optuna==3.4.0 +oslo.concurrency==5.2.0 +oslo.config==9.2.0 +oslo.i18n==6.2.0 +oslo.utils==6.3.0 +overrides==7.7.0 +packaging==23.2 +pandas==2.2.2 +pandocfilters==1.5.1 +paramiko==3.4.0 +parquet==1.3.1 +parso==0.8.4 +partd==1.4.1 +pathos==0.3.2 +patsy==0.5.6 +pbr==6.0.0 +pexpect==4.9.0 +Pillow==10.1.0 +platformdirs==3.11.0 +pluggy==1.5.0 +ply==3.11 +pox==0.3.4 +ppft==1.7.6.8 +pre-commit==3.7.0 +prometheus_client==0.20.0 +prompt-toolkit==3.0.43 +property-cached==1.6.4 +protobuf==4.25.0 +psutil==5.9.6 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +py-cpuinfo==9.0.0 +py-experimenter==1.4.1 +pyaml==24.4.0 +pyarrow==14.0.1 +pycparser @ file:///tmp/build/80754af9/pycparser_1636541352034/work +Pygments==2.17.2 +pymongo @ file:///croot/pymongo_1714079720093/work +pymoo==0.6.0 +PyMySQL==1.1.0 +PyNaCl==1.5.0 +pynisher==1.0.10 +pynvml==11.5.0 +pyparsing==3.1.1 +PyQt5==5.15.10 +PyQt5-Qt5==5.15.2 +PyQt5-sip==12.13.0 +pyrfr==0.9.0 +Pyro4==4.80 +pytest==8.2.0 +pytest-cases==3.8.5 +python-dateutil==2.8.2 +python-json-logger==2.0.7 +pytz==2023.3.post1 +PyYAML==6.0.1 +pyzmq==26.0.3 +rapidfuzz==3.9.0 +referencing==0.34.0 +regex==2023.10.3 +requests==2.31.0 +rfc3339-validator==0.1.4 +rfc3986==2.0.0 +rfc3986-validator==0.1.1 +rich==13.7.1 +rliable==1.0.8 +rpds-py==0.18.0 +ruff==0.4.2 +s3fs==0.4.2 +s3transfer==0.10.1 +sagemaker==2.214.0 +schema==0.7.5 +scikit-learn==1.4.2 +scikit-optimize==0.10.1 +scipy==1.11.3 +seaborn==0.13.2 +Send2Trash==1.8.3 +serpent==1.41 +six==1.16.0 +smac==2.0.2 +smdebug-rulesconfig==1.0.1 +sniffio==1.3.1 +sortedcontainers==2.4.0 +soupsieve==2.5 +SQLAlchemy==2.0.23 +sshtunnel==0.4.0 +stack-data==0.6.3 +statsmodels==0.14.1 +stevedore==5.1.0 +submitit==1.5.1 +swig==4.2.1 +sympy==1.12 +syne_tune==0.13.0 +tblib==3.0.0 +termcolor==2.4.0 +terminado==0.18.1 +threadpoolctl==3.2.0 +thriftpy2==0.4.17 +tinycss2==1.3.0 +toml==0.10.2 +tomli==2.0.1 +toolz==0.12.0 +tornado==6.3.3 +tqdm==4.66.1 +traitlets==5.14.3 +types-python-dateutil==2.9.0.20240316 +typing-inspect==0.9.0 +typing_extensions==4.8.0 +tzdata==2023.3 +ujson==5.9.0 +uri-template==1.3.0 +urllib3==2.1.0 +virtualenv==20.24.6 +wcwidth==0.2.13 +webcolors==1.13 +webencodings==0.5.1 +websocket-client==1.8.0 +wrapt==1.16.0 +xgboost==2.0.3 +y-py==0.6.2 +yacs==0.1.8 +yahpo-gym==1.0.1 +ypy-websocket==0.8.4 +zict==3.0.0 +zipp==3.17.0 diff --git a/container_recipes/optimizers/DEHB/DEHB_requirements.txt b/container_recipes/optimizers/DEHB/DEHB_requirements.txt new file mode 100644 index 000000000..56cef3a9b --- /dev/null +++ b/container_recipes/optimizers/DEHB/DEHB_requirements.txt @@ -0,0 +1 @@ +dehb \ No newline at end of file diff --git a/container_recipes/optimizers/DUMMY_Optimizer/DUMMY_Optimizer.recipe b/container_recipes/optimizers/DUMMY_Optimizer/DUMMY_Optimizer.recipe new file mode 100644 index 000000000..a40d40006 --- /dev/null +++ b/container_recipes/optimizers/DUMMY_Optimizer/DUMMY_Optimizer.recipe @@ -0,0 +1,35 @@ +Bootstrap: docker +From: continuumio/anaconda3 + +%files + + ./carps /benchmarking/carps + ./container_recipes /benchmarking/container_recipes + requirements.txt /benchmarking/requirements.txt + setup.py /benchmarking/setup.py + README.md /benchmarking/README.md + +%post + apt update -y + apt upgrade -y + apt install curl -y + apt install wget -y + apt install git -y + apt install gcc -y + apt install build-essential -y + apt install clang -y + . /opt/conda/etc/profile.d/conda.sh + + pip install wheel + pip install -r /benchmarking/requirements.txt + pip install ../benchmarking + pip install -r /benchmarking/container_recipes/general/general_requirements_container_optimizer.txt + + # log benchmarking version + BENCHMARKING_VERSION=$(python -c "import carps; print(carps.version)") + echo "benchmarking_version $BENCHMARKING_VERSION" >> "$SINGULARITY_LABELS" + + # benchmark-specific commands go here + pip install -r benchmarking/container_recipes/optimizers/DUMMY_Optimizer/DUMMY_Optimizer_requirements.txt + + echo "Successfully installed all features" diff --git a/container_recipes/optimizers/DUMMY_Optimizer/DUMMY_Optimizer_requirements.txt b/container_recipes/optimizers/DUMMY_Optimizer/DUMMY_Optimizer_requirements.txt new file mode 100644 index 000000000..273ddce8e --- /dev/null +++ b/container_recipes/optimizers/DUMMY_Optimizer/DUMMY_Optimizer_requirements.txt @@ -0,0 +1,2 @@ +# example +scikit-learn \ No newline at end of file diff --git a/container_recipes/optimizers/HEBO/HEBO.recipe b/container_recipes/optimizers/HEBO/HEBO.recipe new file mode 100644 index 000000000..264981338 --- /dev/null +++ b/container_recipes/optimizers/HEBO/HEBO.recipe @@ -0,0 +1,30 @@ +Bootstrap: docker +From: python:3.10-slim + +%files + ./carps /benchmarking/carps + ./container_recipes /benchmarking/container_recipes + requirements.txt /benchmarking/requirements.txt + setup.py /benchmarking/setup.py + README.md /benchmarking/README.md + +%post + apt update -y + apt upgrade -y + apt install curl -y + apt install wget -y + apt install git -y + apt install gcc -y + apt install build-essential -y + apt install clang -y + apt install swig -y + + pip install wheel + pip install -r /benchmarking/requirements.txt + pip install ../benchmarking + pip install -r /benchmarking/container_recipes/general/general_requirements_container_problem.txt + + # benchmark-specific commands go here + pip install -r benchmarking/container_recipes/optimizers/HEBO/HEBO_requirements.txt + + echo "Successfully installed all features" diff --git a/container_recipes/optimizers/HEBO/HEBO_install.sh b/container_recipes/optimizers/HEBO/HEBO_install.sh new file mode 100644 index 000000000..0ad6ab6b9 --- /dev/null +++ b/container_recipes/optimizers/HEBO/HEBO_install.sh @@ -0,0 +1,2 @@ +git clone https://github.com/huawei-noah/HEBO.git lib/HEBOrepo +pip install -e lib/HEBOrepo/HEBO \ No newline at end of file diff --git a/container_recipes/optimizers/HEBO/HEBO_requirements.txt b/container_recipes/optimizers/HEBO/HEBO_requirements.txt new file mode 100644 index 000000000..40148c6f8 --- /dev/null +++ b/container_recipes/optimizers/HEBO/HEBO_requirements.txt @@ -0,0 +1 @@ +hebo==0.3.5 \ No newline at end of file diff --git a/container_recipes/optimizers/Nevergrad/Nevergrad_pip_freeze.txt b/container_recipes/optimizers/Nevergrad/Nevergrad_pip_freeze.txt new file mode 100644 index 000000000..e6eab1a50 --- /dev/null +++ b/container_recipes/optimizers/Nevergrad/Nevergrad_pip_freeze.txt @@ -0,0 +1,273 @@ +about-time==4.2.1 +absl-py==2.1.0 +aiofiles==22.1.0 +aiosqlite==0.20.0 +alembic==1.12.1 +alive-progress==3.1.5 +antlr4-python3-runtime==4.9.3 +anyio==4.3.0 +arch==5.3.0 +argon2-cffi==23.1.0 +argon2-cffi-bindings==21.2.0 +arrow==1.3.0 +asttokens==2.4.1 +attrs==23.2.0 +autograd==1.6.2 +Babel==2.14.0 +bayesian-optimization==1.4.3 +bcrypt==4.1.2 +beautifulsoup4==4.12.3 +bleach==6.1.0 +boto3==1.34.69 +botocore==1.34.69 +-e git+https://github.com/AutoML/SMACBenchmarking.git@778e574eb6177ad91964f22ba342ef89289151ea#egg=CARP_S +certifi==2024.2.2 +cffi @ file:///croot/cffi_1714483155441/work +cfgv==3.4.0 +charset-normalizer==3.3.2 +click==8.1.7 +cloudpickle==2.2.1 +cma==3.2.2 +codecarbon==2.3.5 +colorama==0.4.6 +coloredlogs==15.0.1 +colorlog==6.7.0 +comm==0.2.2 +ConfigSpace==0.6.1 +contextlib2==21.6.0 +contourpy==1.2.0 +coverage==4.5.4 +critdd @ git+https://github.com/mirkobunse/critdd@dc381ecd2a8b1b2e02f99f292aaff0fa3ae6f40d +cryptography @ file:///croot/cryptography_1714660666131/work +cycler==0.12.1 +Cython==3.0.8 +dask==2023.11.0 +dask-jobqueue==0.8.2 +dataclasses-json==0.6.5 +debtcollector==2.5.0 +debugpy==1.8.1 +decopatch==1.4.10 +decorator==5.1.1 +defusedxml==0.7.1 +DEHB==0.1.1 +Deprecated==1.2.14 +dill==0.3.8 +distlib==0.3.7 +distributed==2023.11.0 +dnspython @ file:///croot/dnspython_1703096966733/work +docker==7.0.0 +domdf-python-tools==3.8.0.post2 +emcee==3.1.4 +entrypoints==0.4 +exceptiongroup==1.2.1 +executing==2.0.1 +fastjsonschema==2.19.1 +filelock==3.13.1 +fire==0.6.0 +flatbuffers==23.5.26 +fonttools==4.44.3 +fqdn==1.5.1 +fsspec==2023.10.0 +future==1.0.0 +google-pasta==0.2.0 +grapheme==0.6.0 +greenlet==3.0.1 +humanfriendly==10.0 +hydra-colorlog==1.2.0 +hydra-core==1.3.2 +hydra-joblib-launcher==1.2.0 +hydra-submitit-launcher==1.2.0 +hyperopt==0.2.7 +identify==2.5.36 +idna @ file:///croot/idna_1714398848350/work +importlib-metadata==6.8.0 +iniconfig==2.0.0 +ioh==0.3.14 +ipykernel==6.29.4 +ipython==8.24.0 +ipython-genutils==0.2.0 +iso8601==2.1.0 +isoduration==20.11.0 +jahs-bench==1.1.0 +jedi==0.19.1 +Jinja2==3.1.2 +jmespath==1.0.1 +joblib==1.4.2 +json5==0.9.25 +jsonpointer==2.4 +jsonschema==4.21.1 +jsonschema-specifications==2023.12.1 +jupyter-events==0.10.0 +jupyter-ydoc==0.2.5 +jupyter_client==7.4.9 +jupyter_core==5.7.2 +jupyter_server==2.14.0 +jupyter_server_fileid==0.9.2 +jupyter_server_terminals==0.5.3 +jupyter_server_ydoc==0.8.0 +jupyterlab==3.6.7 +jupyterlab_pygments==0.3.0 +jupyterlab_server==2.27.1 +kiwisolver==1.4.5 +locket==1.0.0 +loguru==0.7.2 +makefun==1.15.2 +Mako==1.3.0 +markdown-it-py==3.0.0 +MarkupSafe==2.1.3 +marshmallow==3.21.2 +matplotlib==3.8.1 +matplotlib-inline==0.1.7 +mdurl==0.1.2 +mf-prior-bench==1.9.0 +mistune==3.0.2 +mkl-fft @ file:///croot/mkl_fft_1695058164594/work +mkl-random @ file:///croot/mkl_random_1695059800811/work +mkl-service==2.4.0 +more-itertools==10.1.0 +mpmath==1.3.0 +msgpack==1.0.7 +multiprocess==0.70.16 +mypy==1.10.0 +mypy-extensions==1.0.0 +natsort==8.4.0 +nbclassic==1.0.0 +nbclient==0.10.0 +nbconvert==7.16.4 +nbformat==5.10.4 +nest-asyncio==1.6.0 +netaddr==0.10.0 +networkx==3.3 +nevergrad==1.0.2 +nodeenv==1.8.0 +notebook==6.5.7 +notebook_shim==0.2.4 +numpy==1.26.2 +omegaconf==2.3.0 +onnxruntime==1.16.2 +optuna==3.4.0 +oslo.concurrency==5.2.0 +oslo.config==9.2.0 +oslo.i18n==6.2.0 +oslo.utils==6.3.0 +overrides==7.7.0 +packaging==23.2 +pandas==2.2.2 +pandocfilters==1.5.1 +paramiko==3.4.0 +parquet==1.3.1 +parso==0.8.4 +partd==1.4.1 +pathos==0.3.2 +patsy==0.5.6 +pbr==6.0.0 +pexpect==4.9.0 +Pillow==10.1.0 +platformdirs==3.11.0 +pluggy==1.5.0 +ply==3.11 +pox==0.3.4 +ppft==1.7.6.8 +pre-commit==3.7.0 +prometheus_client==0.20.0 +prompt-toolkit==3.0.43 +property-cached==1.6.4 +protobuf==4.25.0 +psutil==5.9.6 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +py-cpuinfo==9.0.0 +py-experimenter==1.4.1 +py4j==0.10.9.7 +pyaml==24.4.0 +pyarrow==14.0.1 +pycparser @ file:///tmp/build/80754af9/pycparser_1636541352034/work +Pygments==2.17.2 +pymongo @ file:///croot/pymongo_1714079720093/work +pymoo==0.6.0 +PyMySQL==1.1.0 +PyNaCl==1.5.0 +pynisher==1.0.10 +pynvml==11.5.0 +pyparsing==3.1.1 +PyQt5==5.15.10 +PyQt5-Qt5==5.15.2 +PyQt5-sip==12.13.0 +pyrfr==0.9.0 +Pyro4==4.80 +pytest==8.2.0 +pytest-cases==3.8.5 +python-dateutil==2.8.2 +python-json-logger==2.0.7 +pytz==2023.3.post1 +PyYAML==6.0.1 +pyzmq==26.0.3 +rapidfuzz==3.9.0 +referencing==0.34.0 +regex==2023.10.3 +requests==2.31.0 +rfc3339-validator==0.1.4 +rfc3986==2.0.0 +rfc3986-validator==0.1.1 +rich==13.7.1 +rliable==1.0.8 +rpds-py==0.18.0 +ruff==0.4.2 +s3fs==0.4.2 +s3transfer==0.10.1 +sagemaker==2.214.0 +schema==0.7.5 +scikit-learn==1.4.2 +scikit-optimize==0.10.1 +scipy==1.11.3 +seaborn==0.13.2 +Send2Trash==1.8.3 +serpent==1.41 +six==1.16.0 +smac==2.0.2 +smdebug-rulesconfig==1.0.1 +sniffio==1.3.1 +sortedcontainers==2.4.0 +soupsieve==2.5 +SQLAlchemy==2.0.23 +sshtunnel==0.4.0 +stack-data==0.6.3 +statsmodels==0.14.1 +stevedore==5.1.0 +submitit==1.5.1 +swig==4.2.1 +sympy==1.12 +syne_tune==0.13.0 +tblib==3.0.0 +termcolor==2.4.0 +terminado==0.18.1 +threadpoolctl==3.2.0 +thriftpy2==0.4.17 +tinycss2==1.3.0 +toml==0.10.2 +tomli==2.0.1 +toolz==0.12.0 +tornado==6.3.3 +tqdm==4.66.1 +traitlets==5.14.3 +types-python-dateutil==2.9.0.20240316 +typing-inspect==0.9.0 +typing_extensions==4.8.0 +tzdata==2023.3 +ujson==5.9.0 +uri-template==1.3.0 +urllib3==2.1.0 +virtualenv==20.24.6 +wcwidth==0.2.13 +webcolors==1.13 +webencodings==0.5.1 +websocket-client==1.8.0 +wrapt==1.16.0 +xgboost==2.0.3 +y-py==0.6.2 +yacs==0.1.8 +yahpo-gym==1.0.1 +ypy-websocket==0.8.4 +zict==3.0.0 +zipp==3.17.0 diff --git a/container_recipes/optimizers/Nevergrad/Nevergrad_requirements.txt b/container_recipes/optimizers/Nevergrad/Nevergrad_requirements.txt new file mode 100644 index 000000000..4748c58db --- /dev/null +++ b/container_recipes/optimizers/Nevergrad/Nevergrad_requirements.txt @@ -0,0 +1,5 @@ +nevergrad +hyperopt +bayesian-optimization +ioh==0.3.14 +# make sure that joblib is quite new >= 1.4.2 \ No newline at end of file diff --git a/container_recipes/optimizers/Optuna/Optuna_requirements.txt b/container_recipes/optimizers/Optuna/Optuna_requirements.txt new file mode 100644 index 000000000..79b494aab --- /dev/null +++ b/container_recipes/optimizers/Optuna/Optuna_requirements.txt @@ -0,0 +1 @@ +optuna \ No newline at end of file diff --git a/container_recipes/optimizers/RandomSearch/RandomSearch.recipe b/container_recipes/optimizers/RandomSearch/RandomSearch.recipe new file mode 100644 index 000000000..1ce471272 --- /dev/null +++ b/container_recipes/optimizers/RandomSearch/RandomSearch.recipe @@ -0,0 +1,31 @@ +Bootstrap: docker +From: python:3.10-slim + +%files + + ./carps /benchmarking/carps + ./container_recipes /benchmarking/container_recipes + requirements.txt /benchmarking/requirements.txt + setup.py /benchmarking/setup.py + README.md /benchmarking/README.md + +%post + apt update -y + apt upgrade -y + apt install curl -y + apt install wget -y + apt install git -y + apt install gcc -y + apt install build-essential -y + apt install clang -y + + pip install wheel + pip install -r /benchmarking/requirements.txt + pip install ../benchmarking + pip install -r /benchmarking/container_recipes/general/general_requirements_container_optimizer.txt + + # log benchmarking version + BENCHMARKING_VERSION=$(python -c "import carps; print(carps.version)") + echo "benchmarking_version $BENCHMARKING_VERSION" >> "$SINGULARITY_LABELS" + + echo "Successfully installed all features" diff --git a/container_recipes/optimizers/SMAC3-1.4/SMAC3-1.4.recipe b/container_recipes/optimizers/SMAC3-1.4/SMAC3-1.4.recipe new file mode 100644 index 000000000..bd9f9cf33 --- /dev/null +++ b/container_recipes/optimizers/SMAC3-1.4/SMAC3-1.4.recipe @@ -0,0 +1,35 @@ +Bootstrap: docker +From: python:3.10-slim + +%files + + ./carps /benchmarking/carps + ./container_recipes /benchmarking/container_recipes + requirements.txt /benchmarking/requirements.txt + setup.py /benchmarking/setup.py + README.md /benchmarking/README.md + +%post + apt update -y + apt upgrade -y + apt install curl -y + apt install wget -y + apt install git -y + apt install gcc -y + apt install build-essential -y + apt install clang -y + apt install swig -y + + pip install wheel + pip install -r /benchmarking/requirements.txt + pip install ../benchmarking + pip install -r /benchmarking/container_recipes/general/general_requirements_container_optimizer.txt + + # log benchmarking version + BENCHMARKING_VERSION=$(python -c "import carps; print(carps.version)") + echo "benchmarking_version $BENCHMARKING_VERSION" >> "$SINGULARITY_LABELS" + + # benchmark-specific commands go here + pip install -r benchmarking/container_recipes/optimizers/SMAC3-1.4/SMAC3-1.4_requirements.txt + + echo "Successfully installed all features" diff --git a/container_recipes/optimizers/SMAC3-1.4/SMAC3-1.4_requirements.txt b/container_recipes/optimizers/SMAC3-1.4/SMAC3-1.4_requirements.txt new file mode 100644 index 000000000..6bb65f482 --- /dev/null +++ b/container_recipes/optimizers/SMAC3-1.4/SMAC3-1.4_requirements.txt @@ -0,0 +1,2 @@ +smac==1.4 +scikit-learn==1.1.3 \ No newline at end of file diff --git a/container_recipes/optimizers/SMAC3/SMAC3.recipe b/container_recipes/optimizers/SMAC3/SMAC3.recipe new file mode 100644 index 000000000..5fb9c64d3 --- /dev/null +++ b/container_recipes/optimizers/SMAC3/SMAC3.recipe @@ -0,0 +1,34 @@ +Bootstrap: docker +From: continuumio/miniconda3 + +%files + ./carps /benchmarking/carps + ./container_recipes /benchmarking/container_recipes + requirements.txt /benchmarking/requirements.txt + setup.py /benchmarking/setup.py + README.md /benchmarking/README.md + +%post + apt update -y + apt upgrade -y + apt install curl -y + apt install wget -y + apt install git -y + apt install gcc -y + apt install build-essential -y + apt install clang -y + + pip install swig + pip install wheel + pip install -r /benchmarking/requirements.txt + pip install /benchmarking + pip install -r /benchmarking/container_recipes/general/general_requirements_container_optimizer.txt + + # log benchmarking version + BENCHMARKING_VERSION=$(python -c "import carps; print(carps.version)") + echo "benchmarking_version $BENCHMARKING_VERSION" >> "$SINGULARITY_LABELS" + + # benchmark-specific commands go here + pip install -r /benchmarking/container_recipes/optimizers/SMAC3/SMAC3_requirements.txt + + echo "Successfully installed all features" diff --git a/container_recipes/optimizers/SMAC3/SMAC3_requirements.txt b/container_recipes/optimizers/SMAC3/SMAC3_requirements.txt new file mode 100644 index 000000000..453223185 --- /dev/null +++ b/container_recipes/optimizers/SMAC3/SMAC3_requirements.txt @@ -0,0 +1,2 @@ +swig +smac>=2.1.0 \ No newline at end of file diff --git a/container_recipes/optimizers/Scikit_Optimize/Scikit_Optimize_requirements.txt b/container_recipes/optimizers/Scikit_Optimize/Scikit_Optimize_requirements.txt new file mode 100644 index 000000000..82df52e92 --- /dev/null +++ b/container_recipes/optimizers/Scikit_Optimize/Scikit_Optimize_requirements.txt @@ -0,0 +1 @@ +scikit-optimize \ No newline at end of file diff --git a/container_recipes/optimizers/Scikit_Optimize/Scikit_optimize_pip_freeze.txt b/container_recipes/optimizers/Scikit_Optimize/Scikit_optimize_pip_freeze.txt new file mode 100644 index 000000000..2649f1c53 --- /dev/null +++ b/container_recipes/optimizers/Scikit_Optimize/Scikit_optimize_pip_freeze.txt @@ -0,0 +1,261 @@ +about-time==4.2.1 +absl-py==2.1.0 +aiofiles==22.1.0 +aiosqlite==0.20.0 +alembic==1.12.1 +alive-progress==3.1.5 +antlr4-python3-runtime==4.9.3 +anyio==4.3.0 +arch==5.3.0 +argon2-cffi==23.1.0 +argon2-cffi-bindings==21.2.0 +arrow==1.3.0 +asttokens==2.4.1 +attrs==23.2.0 +autograd==1.6.2 +Babel==2.14.0 +bcrypt==4.1.2 +beautifulsoup4==4.12.3 +bleach==6.1.0 +boto3==1.34.69 +botocore==1.34.69 +-e git+https://github.com/AutoML/SMACBenchmarking.git@2e80d1897a7c881a822659c163acfc997af6992d#egg=CARP_S +certifi==2024.2.2 +cffi @ file:///croot/cffi_1714483155441/work +cfgv==3.4.0 +charset-normalizer==3.3.2 +click==8.1.7 +cloudpickle==2.2.1 +cma==3.2.2 +codecarbon==2.3.5 +coloredlogs==15.0.1 +colorlog==6.7.0 +comm==0.2.2 +ConfigSpace==0.6.1 +contextlib2==21.6.0 +contourpy==1.2.0 +coverage==4.5.4 +critdd @ git+https://github.com/mirkobunse/critdd@dc381ecd2a8b1b2e02f99f292aaff0fa3ae6f40d +cryptography @ file:///croot/cryptography_1714660666131/work +cycler==0.12.1 +Cython==3.0.8 +dask==2023.11.0 +dask-jobqueue==0.8.2 +dataclasses-json==0.6.5 +debtcollector==2.5.0 +debugpy==1.8.1 +decorator==5.1.1 +defusedxml==0.7.1 +DEHB==0.1.1 +Deprecated==1.2.14 +dill==0.3.8 +distlib==0.3.7 +distributed==2023.11.0 +dnspython @ file:///croot/dnspython_1703096966733/work +docker==7.0.0 +domdf-python-tools==3.8.0.post2 +emcee==3.1.4 +entrypoints==0.4 +exceptiongroup==1.2.1 +executing==2.0.1 +fastjsonschema==2.19.1 +filelock==3.13.1 +fire==0.6.0 +flatbuffers==23.5.26 +fonttools==4.44.3 +fqdn==1.5.1 +fsspec==2023.10.0 +google-pasta==0.2.0 +grapheme==0.6.0 +greenlet==3.0.1 +humanfriendly==10.0 +hydra-colorlog==1.2.0 +hydra-core==1.3.2 +hydra-joblib-launcher==1.2.0 +hydra-submitit-launcher==1.2.0 +identify==2.5.36 +idna @ file:///croot/idna_1714398848350/work +importlib-metadata==6.8.0 +iniconfig==2.0.0 +ioh==0.3.14 +ipykernel==6.29.4 +ipython==8.24.0 +ipython-genutils==0.2.0 +iso8601==2.1.0 +isoduration==20.11.0 +jahs-bench==1.1.0 +jedi==0.19.1 +Jinja2==3.1.2 +jmespath==1.0.1 +joblib==1.4.2 +json5==0.9.25 +jsonpointer==2.4 +jsonschema==4.21.1 +jsonschema-specifications==2023.12.1 +jupyter-events==0.10.0 +jupyter-ydoc==0.2.5 +jupyter_client==7.4.9 +jupyter_core==5.7.2 +jupyter_server==2.14.0 +jupyter_server_fileid==0.9.2 +jupyter_server_terminals==0.5.3 +jupyter_server_ydoc==0.8.0 +jupyterlab==3.6.7 +jupyterlab_pygments==0.3.0 +jupyterlab_server==2.27.1 +kiwisolver==1.4.5 +locket==1.0.0 +loguru==0.7.2 +Mako==1.3.0 +markdown-it-py==3.0.0 +MarkupSafe==2.1.3 +marshmallow==3.21.2 +matplotlib==3.8.1 +matplotlib-inline==0.1.7 +mdurl==0.1.2 +mf-prior-bench==1.7.4 +mistune==3.0.2 +more-itertools==10.1.0 +mpmath==1.3.0 +msgpack==1.0.7 +multiprocess==0.70.16 +mypy==1.10.0 +mypy-extensions==1.0.0 +natsort==8.4.0 +nbclassic==1.0.0 +nbclient==0.10.0 +nbconvert==7.16.4 +nbformat==5.10.4 +nest-asyncio==1.6.0 +netaddr==0.10.0 +networkx==3.3 +nodeenv==1.8.0 +notebook==6.5.7 +notebook_shim==0.2.4 +numpy==1.26.2 +omegaconf==2.3.0 +onnxruntime==1.16.2 +optuna==3.4.0 +oslo.concurrency==5.2.0 +oslo.config==9.2.0 +oslo.i18n==6.2.0 +oslo.utils==6.3.0 +overrides==7.7.0 +packaging==23.2 +pandas==2.2.2 +pandocfilters==1.5.1 +paramiko==3.4.0 +parquet==1.3.1 +parso==0.8.4 +partd==1.4.1 +pathos==0.3.2 +patsy==0.5.6 +pbr==6.0.0 +pexpect==4.9.0 +Pillow==10.1.0 +platformdirs==3.11.0 +pluggy==0.13.1 +ply==3.11 +pox==0.3.4 +ppft==1.7.6.8 +pre-commit==3.7.0 +prometheus_client==0.20.0 +prompt-toolkit==3.0.43 +property-cached==1.6.4 +protobuf==4.25.0 +psutil==5.9.6 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +py-cpuinfo==9.0.0 +py-experimenter==1.4.1 +pyaml==24.4.0 +pyarrow==14.0.1 +pycparser @ file:///tmp/build/80754af9/pycparser_1636541352034/work +Pygments==2.17.2 +pymongo @ file:///croot/pymongo_1714079720093/work +pymoo==0.6.0 +PyMySQL==1.1.0 +PyNaCl==1.5.0 +pynisher==1.0.10 +pynvml==11.5.0 +pyparsing==3.1.1 +PyQt5==5.15.10 +PyQt5-Qt5==5.15.2 +PyQt5-sip==12.13.0 +pyrfr==0.9.0 +Pyro4==4.80 +pytest==6.2.4 +python-dateutil==2.8.2 +python-json-logger==2.0.7 +pytz==2023.3.post1 +PyYAML==6.0.1 +pyzmq==26.0.3 +rapidfuzz==3.9.0 +referencing==0.34.0 +regex==2023.10.3 +requests==2.31.0 +rfc3339-validator==0.1.4 +rfc3986==2.0.0 +rfc3986-validator==0.1.1 +rich==13.7.1 +rliable==1.0.8 +rpds-py==0.18.0 +ruff==0.4.2 +s3fs==0.4.2 +s3transfer==0.10.1 +sagemaker==2.214.0 +schema==0.7.5 +scikit-learn==1.4.2 +scikit-optimize==0.10.1 +scipy==1.11.3 +seaborn==0.13.2 +Send2Trash==1.8.3 +serpent==1.41 +six==1.16.0 +smac==2.0.2 +smdebug-rulesconfig==1.0.1 +sniffio==1.3.1 +sortedcontainers==2.4.0 +soupsieve==2.5 +SQLAlchemy==2.0.23 +sshtunnel==0.4.0 +stack-data==0.6.3 +statsmodels==0.14.1 +stevedore==5.1.0 +submitit==1.5.1 +swig==4.2.1 +sympy==1.12 +syne_tune==0.13.0 +tblib==3.0.0 +termcolor==2.4.0 +terminado==0.18.1 +threadpoolctl==3.2.0 +thriftpy2==0.4.17 +tinycss2==1.3.0 +toml==0.10.2 +tomli==2.0.1 +toolz==0.12.0 +tornado==6.3.3 +tqdm==4.66.1 +traitlets==5.14.3 +types-python-dateutil==2.9.0.20240316 +typing-inspect==0.9.0 +typing_extensions==4.8.0 +tzdata==2023.3 +ujson==5.9.0 +uri-template==1.3.0 +urllib3==2.1.0 +virtualenv==20.24.6 +wcwidth==0.2.13 +webcolors==1.13 +webencodings==0.5.1 +websocket-client==1.8.0 +wrapt==1.16.0 +xgboost==2.0.3 +y-py==0.6.2 +yacs==0.1.8 +yahpo-gym==1.0.1 +ypy-websocket==0.8.4 +zict==3.0.0 +zipp==3.17.0 \ No newline at end of file diff --git a/container_recipes/optimizers/SyneTune/SyneTune.recipe b/container_recipes/optimizers/SyneTune/SyneTune.recipe new file mode 100644 index 000000000..37516d577 --- /dev/null +++ b/container_recipes/optimizers/SyneTune/SyneTune.recipe @@ -0,0 +1,39 @@ +Bootstrap: docker +From: continuumio/miniconda3 + +%startscript + flask run + +%environment + export FLASK_APP=carps/container/container_app.py + +%files + ./carps /benchmarking/carps + ./container_recipes /benchmarking/container_recipes + requirements.txt /benchmarking/requirements.txt + setup.py /benchmarking/setup.py + README.md /benchmarking/README.md + +%post + apt update -y + apt upgrade -y + apt install curl -y + apt install wget -y + apt install git -y + apt install gcc -y + apt install build-essential -y + apt install clang -y + + pip install wheel + pip install -r /benchmarking/requirements.txt + pip install ../benchmarking + pip install -r /benchmarking/container_recipes/general/general_requirements_container_optimizer.txt + + # log benchmarking version + BENCHMARKING_VERSION=$(python -c "import carps; print(carps.version)") + echo "benchmarking_version $BENCHMARKING_VERSION" >> "$SINGULARITY_LABELS" + + # optimizer-specific commands go here + pip install -r benchmarking/container_recipes/optimizers/SyneTune/SyneTune_requirements.txt + + echo "Successfully installed all features" \ No newline at end of file diff --git a/container_recipes/optimizers/SyneTune/SyneTune_requirements.txt b/container_recipes/optimizers/SyneTune/SyneTune_requirements.txt new file mode 100644 index 000000000..46c8956a4 --- /dev/null +++ b/container_recipes/optimizers/SyneTune/SyneTune_requirements.txt @@ -0,0 +1,4 @@ +syne-tune[basic]==0.13.0 +# for bore +xgboost==2.0.3 +scikit-learn==1.4.0 diff --git "a/docs/assets/DALL\302\267E 2024-04-02 17.36.45 - A cute carp logo, stylized and simplistic, with a happy expression. The carp should be designed with smooth lines and rounded shapes to enhance its ad.webp" "b/docs/assets/DALL\302\267E 2024-04-02 17.36.45 - A cute carp logo, stylized and simplistic, with a happy expression. The carp should be designed with smooth lines and rounded shapes to enhance its ad.webp" new file mode 100644 index 0000000000000000000000000000000000000000..94e3879443cf84f33039a477cc7b6aaeddbdbada GIT binary patch literal 103548 zcmV)6K*+yRNk&F=lmP%&MM6+kP&goFod5tZDFdAWDgXok1U@ksi$o$Jp%D3$Y#;*! zv$ucG^4%QK8mjU^a=g7yE@B1hZr@l<0B=mWg<{MDrXP|Y^s)%Ie}(@C{2z22U*ylp ze`^09{`35g?a$7S4E2rWU$K9O|5N?f_LJq`g57K9jpM(sf4Tn&{(Jui_>cep|NiFx zto^0;75sPn=l-wp-vB?wzn*`d{`LOD{`dH=|NsB~t$*l$uJ?)Uu9{BQf8=l|3EfqzZ^JO6vz%l^Nx_n;^APxSxyKjnLDe%k-Y`AYt; z{`>!*`)~Na|Nr~_ivL6Y{r_wB-^O3wKlGn>*xT$6RDX~Cr~H@p&+{Mef5(35ecAq- z{}+aTFn_%D1^jpUNBAG@zqG&MziR#8_SS4a@_+4rr2Vk?2=+7T|LMQPe~kZu{zKzu z@&D|4Bm4jQPxqeSKhD3b|GobO`^o-`|Nqrr@ccQxyZ*=a@8ARZSN1>ozv#bmf5m_Q z|Nr>e{Wtu-^1tZ+_y3ds|NsBvN9W(+zvh3H|4IL={D1%d|39Fg$N!>#vi|A*fBzr( zkN^MtKJ35ldusiu|Ec-y^gsHm{-5)(JsE9&UQsx|I7UpjR%7GjYxLXyUh~n&WMqiH zY;v1Wk=8E)Kv*Rlew?mpd(M|Gfni2U$&}8s_*U}ie~6rI!JBmCGG+4hA}GxmJk7ZM zGD$Mh;_;1}-5eY?zaUdn(@5n8OWZGi@vTPyPp131%`FqhdJ8KH$UBEaN%CJC1Ku69 zBvVs�cxIi^JQO6q@y0@osk9eam3@V>ug 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 literal 0 HcmV?d00001 diff --git "a/docs/assets/DALL\302\267E 2024-04-02 17.38.06 - A cute carp logo, stylized and simplistic, with a happy expression. The carp should be designed with smooth lines and rounded shapes to enhance its ad.webp" "b/docs/assets/DALL\302\267E 2024-04-02 17.38.06 - A cute carp logo, stylized and simplistic, with a happy expression. The carp should be designed with smooth lines and rounded shapes to enhance its ad.webp" new file mode 100644 index 0000000000000000000000000000000000000000..a9e5261064d30b1d4626361f2296368edef6f43c GIT binary patch literal 113464 zcmV(uK7*uiyWg zpZ4GKKi7NB{}ukn{&)Dl^&cP~)IYiZ*!=ML+4eF0;s5{c5B(?nZ~gzz|Cg`$fBrw! z|G5AE^o{*L{dfN_^*`!A|Nr3o7XFd`2meRyU;qF7KR_S)eLz3u|Nr&?|IO@w4^$Nu8|=KkyG z^V1)jpXz^={Dt`l{Db+A_)qPBwtwP3Z2jPNr0_rSfAD&QdwKQ`^q=Ivbid2|l72V+ zPelKl|3m)|+z0wE_TTouoIm4#|NWc)r^B1^zw$kRf0_Se|AGEf{a60K@!wBh-2c}9 zRsNgyo7^AiU*-Sl|C;|%`&af4{Hyw}`>*d`=l}BmmH+?$_wOJ6=eLjC5Br~=|3<&8 zU-ADx#NUQ0Pfqo3)E`kL~i5inl)jNhp3FY|wu4BOqDlzM`_ zI`f1x9$;p1!Lus|O|f_k2B6pH6zp=w+?Tq$$yd8_5*aMPv*xzqKY#=Y{QoG$hG-l` zYeT?u7Yd3ggSKoJrxlr9$Z@%Y{IK%=0Khzf0SU8O6=sW{-JDZSoT{2yu*3mh%Hl2^_C#w5k1n%%cvvKsels~&$rJS@ByTCN5Lp3!B}T&MI|X$)EthjQ=Tjn#!Z z3cV%xwo15-g+ure!e$M57_5+QN(d>mzz=nHw=c9Z=pQEOzRN7lMK}`KdzI;klf!Ae zRhqWZMLJ%m)u@=Gw;B0^)mj85Z=tm)F_bH-FZ{K{OJ3CCCySx|J=!cok0GKPuIrRG zwO%wYfr-Wr|NZ|ra*=8CQ!SjKlF_~J38Au(VwK5)z&9;2@&1-qF-#@qLi!U&42kC3_q-&_oW9;ve&Ni88LR5v4HJv0ALE`fAbMq(C%BxS*K$o&@bP* z>|zdjCN-NO8KqwNzY_iR(!OOEXjWSW9s80wKvuYBmj*b5als!Jp|tPE3p}7-t(g4h z!$G+iUV1jgHA&)jB<>g0Sk^H)o}AH^>lJ{t_lIFHkAT~XT?7TpD5%{rm-w>Z4J5F> zy?0Gr)2$v{b1v`U+3xhJ)={Wz!Z_iN_-FznhGB@Z<&fhF1R@-`q=3-m$=I(0{`3x#`h9Q7pa) zq$L-)z(r=2_+}}VnCkf7==?$acU(V4XYZds_A}80%yZdsDp@X3I;63TW1Hu_hoW&zV{uYPsD=k-m9*RS^K*uL6D1}osVEawID@Rkf zdv^WA_FaOjo54mY8~P75F*{TCrT@yy2Fsz=e-OU8{0WXWM$Di7g1BD#`p=e3LKXk2 zjzRkozh=Jf1fxVbL5xbb20)(3%oI%^_&OO=3fzNG>&hc1M#PBBIVcr7bJi%CJ@+O* z@MUZYsFSZL(`p`r$+^h3gS4RF&NiIeFk?A=s_U9VV<2vZ}tZN_$jY)-rCB^+LLo zSmgcxhDedXpS4>wR+WdZrpMFR(_c?F<`*@I=RyhppPiCq;p1`4IsDKsH7QrRU0dY^lbeW1k#5WWdeU5a)Nf7SpB<^*h!*V~)o%DSYD=H(Ea^`c!Jp>6 znAQB&|M>v$Wq3B|Iy|anhSK54`PBozAQ-=aE)T!9hg56=&Hr%kts2p-2I*#DXxRC{ zYPg9PxOiHYLPzDo+figpTg!#(eOb9`;x6RvO8cZR>xG+U?)hvO{>IlE&+}HK@-CJ0 zG8@1Dn+B);5@2`g&#NvB-OI3FKmXm4pN2f3=>7lv+UL3Q+RICzrHlT`r~ACjeuBLZ zHFv5JEM8S~=eYWiLHut|g8!v=v@@cXywUYND%#aPxjFz}=(w~TE9d(*Nwh@obD+q; zZY(loePG?ZMDhMaX(j>HWXYd}G#*dG&V+4NgC2`g)8u_8kDVQMtAXfQ-QJGH2N-AM zRK;FR`C^~%o0W6@8zSNKs7!k6A=RCOxQF?$)QS2!10Xw-?`U&BBFk}$( z1fO1Orje1cO#=&vSArMSH1u`fnkhm^wBAXmzQvF79i}jf&k^2T7NP!hAJ#CAs54(EBON*4FE`cdP@@^kGaUUJ$6mrhqXwd%3mb;Rqr$Z% ze^FOB66okaoIMi!&#Q z54a%DqdUROt#0>v2+NbF1K0?`t7{$YJ!HB36uML*Xjb9a%H1GxWiRuebEJoyTfE!N z<5|?MS~g+b?lBn6ZHLk$cD61)nc1=qM`4hS<6es9sulcv){{iV7~(j9YnHTq)!}jL zKYWXW$hL#D)L0toRq3j=EVhQ{3NBI{3w__{_olfdm=Jj*$-Z%opx)eM6)J>I`S%QP zwscSnA*uW$4bIFL)|wl2IbGQjTDxse@YbVpEGC?oU}MyVziWR@%dBf`PEtVNPqaj0 zR<1;o8WkwZZW&=X{&ilZM?-fb*tiL#BTMzEEWW<+G&vRAV+1JQmW1e4SCG9|%?%m2 zek{z6E3nnczC1`BwrTU?0_@2Fjl@vWr!R|c z6T-fEJq9#u30##e%vtKIXTPn^YmzySc@7L9^Ei z$wE@ET0*nD-I%-o)%)Z12U{AZG>6yu*eG*JXSBlhyE^K!sg*l0_x{6fKZfogeeS?_ z7;MQf6AKg@<+m{Zs6_7#Y8rxY5aTckcdK8ud|#Ee9#?xo9@(GhXC#61p?B%BZ{w+z z61&G@6~@&7$Am~+`Xif5k@~~gW76xf1GazvconaR$Mc02Kj|C(3pmKbVKf8^aI{mc z4;nLrAzEJ2j#p5z0Kb_|w!4Tdbq~C1kG6Nl zWwuqqF9RZrmu26~(e$${A*^7HsFrE8aEYCnL5XpV2>BuZ{*@SO&s}J8{tzAia8}#( z;B_0O^<4F6#?S|;Kg`9?gG!jH@`e?2E5uA{LEAZb?p0U|H5-&yp7iWyZ8n6+52sAz z!R9Hz%w-&A+eNf9F6;eBPLcpUdtUKsMo8Qz-sUyQv9+2iuXx!No4w2HT~`@xpk&~S zhOtr8U5@z^f7qNQY$kR$vGC4o-zq;s&e9A(mYb(N^2WPTo@dTjeF%wh3o*YAP8dcd zKV8=ok#hiK6=oCqowKR`-b*&x@{Wa$@$$NV%Y#H+D_%mGll*+U8`KS)c?t`9)h3yA zEiAYV1`8Mi6Pxsu5Oh+nxC=ccM0BqT{24ccZecH-zAm(sg^l>z1++dtFLf3CfIkc- z!RM|=06cpu_3ohc+Z4|n@@frEr>%uz{b|>GfTJPr#G*m^vm6va6Uwt=3fLGch@XTb zixuB%+k^rC(NlS^_?5@`m-cfV&>cvBIz;pMOcPC=R7nC{3=^jRgK}l(@;_%l;#`k; z2Av&gGj6KH?_caBaCJBul!>(8@_O+JpI^L;gHL^d&2*lFvY8%>x<==dyE`GLx)vNV zy3p6RX8b0Ng_7;Xo!%!ju0y~`ZdF||zL5!={TBFGKZO3}KqmXy=Kx={C#8H?PEK9+ zAz8t8bdTm8J&h?TqUfRMZ=KgVGHKEYIC`TrqCj0H%v+w^(J+6|&m5)Dj(d8f7#Y!P z%0RBxW($=pM2cF41rYu4jcL*E;CxDNC# zpIbMs+9jc`ZUsqM^V06Pbj3eJ*sl{{RUI%l(u95wMSU=Gwlfh+;>{zv#fLFsUO>m^ z1nzNtvKKUil!SEv37F!Ti#!TQDaL*1+}Be&EHF#Lms!3?m$b9NejFH6-#eW!TwEuL zDn%$1fzMEKo7n2rMbl{&B_T28`1!jGWgDVtx7G|GpfT2h$s^TEC55fKkVKtS{Vd)h zr@|m#@=ieN${jd*;|f2Rl}+%Vxzz|O_x+Qeq09zWSXG#bZ@ARJUII@iThumepJNc- z;$k@a)5+lCm*m;sC@&2x*BBo*$OFWToX0x-!UEJIqXM`wv)!mRFm`?KPeoo_l>iLf zFA|dnpPJ{<;J^ITE~o~MPyz#YKIV?(Kh~XRlTXJ2zlTnO4DLFUfWQ+uC_t?lM_}CJ zY6y=X`;r0MxiiWrg(vo4T{iPt!0di$9Us!ULDHO7q&y3n(AfLH+1`6`CeHamcxdF7 zT{x{ICdp(VDn6>aX_Az>l#9YIMM~B4FR#~eCAO35yfqP&EOjf}d-E4f+>SCEJLC+;j z>B2lWe&)z&XMBq{oio`D661}tKR0o|>DG=*@ZYBDGmYt?GT_>-$vD^HYH!dm#nShM{PLoX9>tV-f5@K!;st2R-ahTaLpI@ zpn^1fBAd?Ts5F0=kECW~p(V6XhtXeG(IsF`!`@ezraOH-HtXB;sPXj9$OoNL`JG5$ zP4p9aVmjS-AnOTawxhy#iw;YbuL$D*JlRZ*rC-TjZ~z$^Ah&5dC|(S}1;XvV1t8oH+7HOxdPO7?9i@QUrkS$=(sMP4_uqoT^)=FwyEA#5!$5&qn09kH9mzLD#78U zI&4~0tBI+|tz2nL`-(84T4yU36-KL+9+;63mgqGgK&i93c&%Dw^|WVvj2IT*Z0i6S z$#y=~<{(914JG{A&Jqd|auUTXq9+z8FxGKxP@zAHMC@tw-`oO9p?NExSdLC$6ra5 zppl98a0(l1pQkEdouYV)#eJvTM|2f3eaF#)rNKEV&t_uR6b}3?WtHWE6iwuP0G#C{ zWu7Bpg0#-i_51#`xN!q(=iHQ@wUjw$qEz47U#92m{S~%nS6gEhgKQ=N6DWt19Y)}E z8#}NEd4kf7z7xnffQW zI3@bg`YqXOZ%$Of`1O+7{(ozRwL7((!4D?f<)(VKO-Gn2gd>q6lIpx}4fiHWe;{9$C7tH+e`{H^o5+Q}vebJ7oGkp1dh>U2( zet(enTU6)e^5KslhJuOna!-db8P}w4|84^21$ak~Fk)7{3uatLqf-M?Us30n-)Qxi zZ_HQ3UyZvUe_PGC$VDU%A(LwdZBPICA3WZbTEvQj>arN|JQnE9RaVuCjo~Ee`|)gM z<5ETOi!ZQ{jhoB~B|-_yA6VWVqi_yz4RrlryntbDvhVVI}NfO~8ggM(52aHG0? zS?m?q0;g?|0tV?@h2xO0^0|<&&Lq|*z9$CxQAqY=$m7e==e7kR7a+53*nxpd@-bmV zIO?+z=YQ}ll_!{r%a%gdUmcr3?#(!v$DX`5fYw=DsuWnLkNB8tcy&!+&F-g`tZNbz zjR}H7ScISWiqVRA3CU;0I9vBswK;o}F2*zWq8Kt-`^cy2`XzS%rQ~p9v8P}tP})_e zDhf#pJC^(!+t_Ir%A@snoLcc1T=|d%LmF$Tt&hR?`jBghdoeD>JU!l!+1^%SkWwNt z0(G-Q$7=Ea`qe>j7CcYO{c2gRGqlS$i_&temP+&E>jpVCoXoM=YoBO2p(at?5)AB?HpRtfEiU9HFjQue<*j6F zUfw?BN{UF2B(lD#30tv?r<*S}Lo@IG_&!GFCj5McFjzEDhn2gWXvyVORcu#@TO3A& zm~zDU5xxf+*X06&zf^67_c>tHC#RZof|nRFdIz8r9nOvEL0+e**FJx|*fX0>DinN_ z#)C{-%;d*T)cubm7B6jQu~(q{QI9SALg*#69`K?w4s_cCxzq z?^DsaV)ydZtCy-wR;eY104b0BQdY!ZY2>B0PCfnq3{TUUek){LZo)pQT)kwJp&6rg z|MJ}5fmhK8b8prNw~fI^(Wm(SA_e!v(qKjXvAnG15NowD{vIObXo={wUjZxV{)Hm> z*Uuq%OVZMEBZ!n5<0b?NsC5`(Z|PKvIpW0uBYY7^A)vOfmOpFw@ACqLlmzXaZ?8D4 z4!6s+mFZlUyyYQvw{2|F@ZBVU8U)YMBi6ILV!JZJ*GCoJnsP@ES||1aD3c#xLXx!l zPE2VVvv3z*MrDYJLT4hI&?Gvl6)~(Ew6y$^#AQr#FC_YlyympiU>iT7gvEY zu$_);xf~)krB$9wc>+ii;FO}faT8BA%&4<1l=AG^J+JwtQRd1T3Y&Hed_JS`jL*p3i$XxwF{1@ZdlkU>xeYClelMU8`uQHH6MedVIlG9lp7g+gjA z-GK5s*c(ddsfa7$Dq;_X@bf=T5uWC<*MGD!fPP(5yjQZT%ip4hg2 zOex#+qV~M)<4;0rTEVl}!b|I8uhWIo{qJ&t4Fm6m+GyJRX0yd%8Yv|zM1wYtyJ zzU^x|VxLl!tKdfnLV0ud&IrIgHFvS8tYd5juSyIwZ$b(%cD1W8NU_|W4Al~biTJ)& zblstpw~eqn`|Zr7N?)^+D8sabf4g?9%jm=-59nnIfdD6Wh;eogBOKzH0vlNVPQfE2`_HX)6OubC>JnBy@T1t8``>1{kf(=OqFjADj4m$ zQs67p$6=LFWH5A$&-mW3OQYV#IiL418ibMS#106$92izJfFSGc8oss4rm2IU9g%f< zETzOrQRz{Zd3vCdgc&WF=p_;xP}ojP*$5#7UY{{s82tjhM!i-mqHmf{TN}`e0wfOI zQE?h zKC#7Jl~R`td?t`)`E1|-0RHK&^Z2lrcLRSS4cC&cWx7HhCB6#{@62ESXjk6Z9F%s%#EIVbaH~o` zXOJ0*6JN)6oP!cbiCnI-%a_t+6{*NCRr#TcvDq7eGMFFuQXtzsYgt2eI$|&iN&>fV z2o`5|fG!sKUu1Hh`QJlMevF6m$TyS@&i8c5Yi-=hBL@EGp+EfN2BWfcNeBh2oj95z7J{KkDYK_YYku2P77$Ih( zaOF_+cOKvd5ye_(g?*O?JAhbobtxzSHM#R?68diXG(Zop8Rz77ZAF>qMGB)$Df;AK z?cr6M-N2dfzCM%rQ%Zb9>fzH!<3_m#h_Vq@7w+0VJBKE+0x9?5q5YEUn(rm5*aFn7 z4cu^IW!m0%3rE0|<2!A{W&b$p9=Vi#Ph1TAr>vP};?glJo@)@u4#-JM3X&ic=tx$v zJ*dh)9ruTjcF~g}iY7FIXK}JM4sJ=pQ>KFDSUQ?8bXJ0MzL>Z-HE|xPs%;r1 zTgY)Qd3OBE&7n<_>Y~(m>@-abDPcA9E&o=_E@N>W*Wt1-R>qC83JW&Pj5g2gw2Y?j zQ#j#v&7$PSzdtnX?7A1@2}uETRs~k=wcwb#C6^w-;DOQ#vf5OTY1^WR#in6bnuX1kRGg+q9PTVkV+B!25SfD8 zwE)ttx*}+QnwkMNp!N}<*rTVvQk2ABH}?rSi)96AMGTWs_@*p)l0Q&00ETG*Oi!fb zDc5UQ*0O^1fK*^xUgJ?#B%9Gnj=ec3IdReXLvUbFPje>QAzmNNvPXJbX7he)1nzZj z3$vyj051WofOe|2B9;p24>oV;1Sr8leu{jxK-~su$u}-b6ao^`v)CDk-u!${x(tKL zQq^@P>dpwkDcBTI6Y^EL8lJf^Kpyn2pM*V|QuJcypU5$}@OSt`=n%ZZhnwqJZJ`Gb z1hiJg(`TwXN4OIFty`h&qk6dt1_#_a8FoX9E)sc-naGfA(T5ceth~4xJ!+kUe3}fO=WDgHBGF^^C+sDhk;7SZ0|y90~C(ZymwvzDa5fPc-v1zwzFHzpmRG-I{vm=L$E zW;dK2?1VZGBlPXy%8{}{wiYz#=?WfFvJT(7F%1^@1N6RzDX-rL4w9>0Ic}L0c(hDe5n3kw z>JsGw3f9^ju&`AMQhcf7u2iGru-ITvZT?-(sG?F`7;|^$NJ5B|ACtV?l+kI_sJObi z!-gh+{ z0Iaf(m+41KPQW@^We!18SiD~yj%saL!UB=bKaRiN$==^cX?W6DCKttP8emNmP#`s6}i+qI@N^Q_El1JI`hBdf&;>e{@Bg~Ncgc3 z%lpJg>teF<)QKaiKd`n|?9|#)K?F6gHj}sPPVIrg7m5w^fx07PRNfkyq3-lLu#i@n zybQfXkVycT!DXP8E-P{>2rYz=pr`20v8-!1l}5IZ)oTAnT=|kN_PZt2W0Q@_==3;3 zYnY&6;cQXX*-(!}BX$j5X1{fqZYA#7F~qBO_>WNG2&kb034Hd&_RGg+6_-Bak(r`E zDZ_7yd4ef)?>#V?a+U{Di)% za~@B4Xs#@lL1SOS#ggqf940vj3=4E5hBkCg2GfqW#GNPUbvKw;ZHe;^8vomvD~)6YRDxd{GoyV_HBb#FaM_R)^OqM z)DQu=13NNB98O< z{lFk+U=IE}K|(-JI9-wXGE3AiQD`BMv=1fG+NDy5$DgmG7r9CfR_^J?1_)?Nnef?H zOit{sa2Euk|I2*@Yrpl{K>!gLVq)X(Ij;QOtWu9F;JjUnkD@q1(p5i25t8~RJoC%R zG?ZOLqH;8zZ7-cSa-Y_#v_^EOcQHu+B5BwM2@BjIp^pS|T0)pcIBJ}PlFP*&dnni! zu}lyZ|Jd3CTi}}hi@euyyYNkxAlNi5-$@+tKdK~10OI-&8GC7B-b~Fy*}Kts0lqJ@ z8XSpW#K{k?OA(O)G?QiHq7BE}`CoztX>ot&Aks>ypM}lzq6siDf}gsF%nURbHH|*` zWXeqmP|S8(x?%DHa!Ln=^K$&rj2n{HKE`)gZ7J6z&9DZGtA|05CKYwnOot#m z=Dwm63{@NZ56`;Cw{A@i@}tj-kgf35_(%fGK>R1!Gi(6>24j=YkFJFTjT>t6$uEh4 zj9N`T#TA|h^9z0{8zkBR!5#_$gsJ6ejAU~~CK99js*A%}&}fl^4MPZ_i?5%fAsQ^+ zg#J{$a32(ktSqq|D(gJ9F%z0mC6~F{7i0{=;bO%m#R=_&iZE}?qcZj|xJy;F_soE7 zS{y-)C6cAwZs}wX0B^((XrSYCd5;jN`ny9yO!= zDB8+^Kb zoR0*3k9UzDV6m9hy(&o*Yt#eAH+9K#_a))!`a>mg8ds0TOhG+E!}{?HCT0J+CgneO ztlDtb<6x%PmJ9XvJUI#?zu$)6`0U6hL#qFR3!X1(?L5&u~C109he z*~bvh6Z5GR#@hQjzk^J>rs@v}CW-f(j9Z6eSty9i!M%$M`_yD(PVrR6A_R*z=Fzbt z&5~Aw44-V*DH&uD_j`%8f}m&PU+W+`3HggCP0U}ftoNY>7(9cYRqBv8RkOWOX0T=nWcj6?3yw0=IdWKye}UD zUVYNhxKtjmRuiry{mmhUFe&rKw}71L49&hoql15el{jhb_1@kkHLJ-y`djnY{ja$r zt!v;-(|g-N3>->ap}~f~tu~v9vuRXE7$a7J^FRd6W%wvcfKwzb@TIU4V3C3bNc{<1 zs%b1~;$xfcAJkqbx635@Hl@n|z}$cra>F^(;!8d$kP@4anoG!4NR=vF78<8vBqnZv zqGHr%2K>d`>hg>vaA( zz5@j9TWR(V8`~xh||r9xz)0x=gY9g{(G0K42uD zhw(`{MZnG&+P6tiz=>;zdGw4q&V!Q;75MMpamZTJlU!3bEac!_Q0(n+Jz=A1X>Omm zzLZb=S5kO?LVivnjS))BcQz>gXdgwuGg!KMS?o2^M1%}nF8dzxJe@Jo63bO^XRft? zMYF<%nm#=J9|E}giiZUZ)XG+5AO}5j*Vr6mKAT~IB73xJ*OKzl+?4O~P7_NK+go3i zc$k&buz>~7$9feS@8CLYz#|O3sgo(=>O1WAyaIm!Yvsa}X%4L7r%kO=y{N=j?0L-@ zKg|W($jF^Mv$PVvdMxZ%k@hPa$1A#d;n{OE2|3IbEcfO zUh3SZU?Y}5MxM{%ZXm)y2o9P0Z(Z9sUpVvf75ntonesFINDc=0tERJ8NUUbmq8{XW zr)$%%>Om}l9du_`q)B`Az9=exAQBnWjuC#il7Mf!3zGducc?1hU~7SyZ{g=20Q|Dw z4KArvsK2uX`Rmb1FQe}5y%2$CgQ%u`@!?U4xo6NnkG8{U^6JU1!w(kNhiRhuR0nmD zJ`B&ebj!@XyasVXm55ykGdsU88+M|GAg$>3O!nzBS%hrKX<*&!f3roNrcvv~bt7Lo zUQjnDq6m8-KgHSQQvN#y{i4X{<2&IUzB7uK8mh(4I$}ze-sHC{hJpY<#}J~p#6$(KKS{;wN-1BNH~`u*ZpFVU3h+oh2r?EI z@}hZ{mvqwcz_QU^VMgE?fG3^f9E~khNny!Y-^H53Y(u4_41P;I(q1>&k%pM;n;uBme1JiHI6CghDS_V zb5lX3=J6!kb!TriniEsM$^_`4b1Q&fx=ZC7*bwka$;}pfFl*ddZ37N`6(BWo4af<# z$VO}ctLGNXT9Z5>IeL05_SZP86u>yd+1GAI4kU1#mw6gJXNJ9?n@i9DUB;X*6 zd-?3kKpQnpMb1XUSn!p3K<8QEV|HZQNc&Qa3@!nJ6(|hk0Hdp0GuebA*V@>dwXeHAtK@-Cz zc+<#CT6pmt(D1gG|NQCwCIBnL;@JbZtX>5N_e4oc9V3Nr!^jEE6drmTU9Z;!1Fj|N zigp+<(CE`K_@QPEoI?fcgb`#z!L1?I#O}7zUej$2A{SvORpBrmT1G!*h!pkBGfE9|d|KB>_|gH=1;SVW)mZaF57y|B`& zt-bAI+ObM4==^uxFSKF~^9k2=#450yhtk59`8s((GzH>`B-LYJiY&t65a*pkM%f5rOo5?!jJ7_hW1xGR3RildqKPlnPG< ziikQsw{x~}p3|hk=fz7ay!+Y27?0ld4sYc=fUJ|G9#0#;9@L{~>=~ua{|D_e;pqnj zKy0rPOviroO2Wwuc6CN805CO&Z1#(z8kM zssk+J_4jO;e=C>O-aOZ?LV*ayYc*>a_}!0vUHlGIGf3_W2;MTFEK?}J zl?5qytT>-sV4QluE=#U7gc{V&F0Q}d7`9MA!G$bNp@#!<$XL^fcUQaf^{>f)oYX3L zQ-ZozpEOx&_G9^_DlBcEQil$380N8?osyU^?G?7jDmq~>qGi8z2aJgc7oZtm`%W*< zXYRvmQ-QJ#cy#M6uPy&SUSr|JlP+Hk{v5$4Pzl?yPYg>7?5=G)qDf#AA5QoPdMtRRfOf`LtQxDp0p8PVQnNmar451g?vv&7bGzIWk zXhxjMNvmais~>%;SqO`cICt>GpGTuKANs~6o`6(@j=KCV4ie;>;`Rl*G9v05Nq__~ zUgCepfw29l-DI3N;CnNCniL}M;$S*0LzJ;Tk7`DIl!($$BU45!DkmXjv0^}T&}XVp zBHl&@OM!I*wzIDQ)&b_)(xFL636Kk`{}Uy`!FC(rAEYN;cIkHvcgsLf=#R90Kuqj? z{*D?tJbms9ExSDC+H;{^xs0YR&5;%&yLu^U z3aCJ$Kf$VZ_evTp2pfiu^3}!RH+&WhjDMm5!0?yhZ;34b_>zmhT|2=}L`cc&H>hrT z%|!g4ek{TY8_46cGJEKtf532iTAtJPX39`JHB$46-C~0m4=nw%l2%88^LkR!%OO4k zibUPXX%HcR6~QDv|D>kuw{g;{s;fj*ncrlst5c_jgUD>{AWZ`ZOFi_GWON59$q<41 z6^nmrr?w^Y>q8|3R=7)_yIIm^8C=)HCE!w@xX2LOmh&AH0DQ8~$@4DB_V<-KyER+y)>TD@St(G+*(3jaqs~?AM2-~O zg@KX#FIb;yWRktoZ{Dd;BH~I9pKqfircWvq=2gmN$#KN?Oa_Z367WTpC4jA8_HG${5rHSEJx8TguI@<^dD=ussEOqx5zUE2fmGz6F{H-#L0b94S`5P7OSTP)VI%* zqT?cUJCu<>O>YBZqno%PxuHgrrcop7LADNpPKoYyOZXSoV>>=pl|qtWJnCz8IPs!| z*~nq#(995(cVmtyTDcJlFu%o0%+6D_m7>+jbsAYSN)I0J2M+#d)Yn5}M{>9eh-=(Y z4~tlg1SB>nGR@RF8Onn=&=iHwP2;0=4dHLT`0en1AlFQDCf=gzsGW7C)*#>tTPQ5zr?GK7lGX%LVBVJWpBi$E z*h%6~wayreFF9Gqt>(Z$5?(_USI2>IleZUCLAG5VH6<-*K0U1pB7y_gG8XBP319mt z!X{Ioc150W>H59Nonn~Tr3ZFW$YM|c9`d9MQDIo+Wxd3B;XOXLBy=Nw`nQ&S{fLqb z8nAwwVBs<2spY4)U*s-y1tA}e^V;)hX7zsSLES(I0JVz}OUWf6y4sMCa(j+#zFmGd zA*qC8WXfjUS*(EO5V6nQ6WiJ+)xKT>O#i!0RWJHdkBKaUhMkD>ga zP;l>K)=Qby?1;JO=E28{;*c$q7_fe5D%2<|VO&6&EN9R2c9r*U4`0`W;IN^c&KO?- z_Zu-n4ouj9viULEp%-0Vl%3cq;Lnt#n?A=IG1Jds7p%W}5TJIHT_^PVjA>x``~Cpx zsGDy!%r_mny%g0M{3{eMpADlrD_36sD73jjaBKQUEB z3e-a4D;+NG{QXri@+2t~P6e2FvC4(D?=iww}GDW zETMH1N@_)W_ek8=*Eo^rctO)q^Ovs9_M6!T!u2xP62aNi_w`MExu}JO#7d4eA3e6d zitQ<@Ww%o$$By7pCWk_)-y0c%h*z64uV3=6DaCcaDvVp(wBHJ(OD& zfBg~e4RyR=C$vkcoyBbD`d3>!o-E6Rm1qa2yz3aD8V-RI@9DQ~wK%$qr5ZP0=l+x$ETJRDLLsR*Ametpd!@Yw#y6g8qPNVQ(dg9ux><>;`NA|)P=i`n zz=*%Y>Voq6{~>l7S|3m-J1)c0HIKmVtk{_skz--kWJq)vQd-i+s*erBN&EL4YT|r? znGmn2=g!Y3<18-iT+AxFNK*)Tvvg+b1Y7_pYvTCRD1YwSn0_Ez>rPiW%-c4cG@p_h z`osINWnllltgJ;)u7heDatG!u^Ge1kZ4{NiJNjcoJ0_9?yP~(^kvK+v_M6tVZgilN z+i4GkUNul<=U<#9fVjpP=S5JW7Id2glHwu90`{E?!Ud0q>;3Jz6@5pvmP;z=)Gui3 z%Z`J)c!i~{B5Bs^1Uk5=TS$Lcz}E4oYsCsYDY@cU#1~@~iIE#Ulbr$;&HH7v&B^`Y z%D?VW-|~t3&>6A1Jl)Dw=LNegPH0fipi(OwSuPg?t=vbk+vb_`&8U__f*VcZ4JUp) zHNpC1Qk0$1rpt}~CjkGu4A#XGWOOrLD1%Z(t(3RgBrLfmb-hIKNMVO>21Xks-7B`t z-ph)y?KAUmdD(Lf2;ACiApv;`l~pmVKxSHN@?NG&xAPZK!2Fe)AJ%SjQJE0d@c?<4 z`Q46jdK>Jhb;qvG(_-s8Udgd*9yOjzz{CM%mko@&v2LpXi!Jt--RPK>fK`ha`&-pK zYX@IqCeZEM6a@_n+Nn28p-2*QSP7DGQ~+15B@Q;ahh>I(eb*2|a(?6ggl%BXj z4+CDtGcFRLvxG0XSPG`%~_@_7!pfz7Yq!U z6`l`jCabS&2)a$oD&?26ZAwgBqmZblUHB=hm5z3j^`GSe+0o$ML@jNPJVMe**-U?d zl_(@Tt;I6xxRCN-GjM0&(*MezDT*fUu>laHe@Ql4F8!H7ztsfYt;NP8(5;{C?>)=y zxQu$r_S7D9x+{tKdX`UjxKz0gWh zeJd`uw&8K8?XbzlV(k1*pBSvCNr-3J%6O^rgj<>5=3*=DRvPi$XzzC4R356@OPrzU z5-5gGz6&}LE>w1PjROCe?4=s*^^^bfYsqlS`WMs!KVfgTDIjyWFp>E2_P~8$h#-L; zpqXEfXU!bjcRJP`uGK^fe&CGeQV!hUeY-gDZ*cU-`ekbof;l?ixS z&<-!|rz1$zp2*B%sJ`Fhn4_(+GdbNahD(K*b^q}5;omg}=5%j)2i^Hi?QThAX7mg* zg-+*$;?sMRWg^_Fg!?YSPg~q0K6zoB>)PIe8aY(KLyWkyz00Wa4^Om$1JWw5<;*U3 z;K`+m$<$ZmkOC^X@f6Wwf1SNHR$7}y2toFpz=UWbhkjx-_Q{&Gcx16RR6s@5v(=7w zX&DdqFiOlfp8^m$?YZP#-k4?&s!Ca=nu`AA3(}j6kNN=-j-&kj;uFV zFKfXo==vl&A7* zwaZ!>B`%aHjtICXJ`kjrd`!`4cqF=PS0bNPg@q^zvad&~Ran|sYR`8tf$Hp1QoDdE zBVXvnfxT7Eu0VZSmZaQ8=;MBAG5IWI>f0=S-i|D{ zVz6D?(hroY4=fCokE&oL*B|UOwb0<@KFnqD5~oecUn5SaPDc=hu=Q!=tyvB;2k`6> zEj8*7yvoZHL9VGRK%Sl4u>iMOCb;|3k#2VBFDdT2n5WULWtfHVq<%SHGZL)KP{94$ zGyiqvWNb2@%e3IC-8K=a!}k5P)zt$#a4+GlkRw{%6ND>4sV%gR`GGB-!{K&}?m&5Z zwC#8IibR@t+m57WhL{UXZxdu+n{tIieV6vJ$k!jZhFNI;?4!8V23;tfA@Zu!jgz@} z-`DFJ?~Cykk$>JGBq#fZ=xeCFl&5BH@iwzgZK@OiDL~f0QG~*o%AdW^>i#KeFNpep zJ5m2<4~6QAON64bKdA8Rq0zTT#L-__7;{~(KWR8gOgK8QYG4w+#t^7E|9%Y^hweJEB}3COIo!nx@2!8PP~NlkCEhsfAcc2HP?*4 z_CyzbhWQlT&&V==6`8jR;<0ie8EZv`vB7Cnq?u0))_@aNIu=>3Q9KS4_zY!1xmUL# zh(WMF61Fh;minb7B6rf~`uiyE=cxhmU|3Wxe%@g&&SN1;p|tpaD!*!u8H;bceCIpa z7plYMBqbu&kNy9@>{_4@JLQH`Y+k<7_8%KTnp~Pc{a*Z1uXzWr%4FB^Lm)$|N{Pz` zuPqKiq37VN16+s#n`R|*dWiC|QxyiE4bt6d7ve?CMs{R)k019uBiBgOt|m@{N?X78 z{d}Lz_rTeDU}!3p5n$e1kdkGeNx8%T3mK)=L{_yTojN27mOJ}3h80`Xgw+!1-F4hz zv6~9}r6w({*p#4lx;jnd;uWQzFuzqMNHve8wx{wIwDQdM-~Bb;Yb?lh%p&i`3tL$C z2>2|61F@zMa@vZXJ^~z*-U70p302A=J)42plE$DZ196XJ3ROndj}GKxs;;!lmuQ6} ztFa#(d-zf1WU1bktxRCKsX4%zSuG^|fvcIkbO~SJ$|&h9gw_vFgL8-;qe7qc@dyU- zqN*+gc7v{Y0KEcXFhMw0p>Nw|)n1gNG|qIt>MferA-M^=t|KRmZS&xXTkA|Q*>*R$ z@tU8@N7k$MOd8yZNC@XWYiteBlLw9IygQoIqK_Xw{RPT29`A)-50>dyIk(9bR2xu4 zR*h4qBg-GHzorwzyLI_#r3sGUZ)AAC&a*pw_(q|`cyhWl3`AkKLN-D?$E+98qtnhJ z;DMj#7Av2LIG_v)4qpQ{N1sOu91gXU ziuDZaeIczzeLAl4FbNH)B_de;Y9dJ?t!4+ELL%`>ql;V22>OSQfO=M|wMJlULNtZ) zWuT@todX&ng-_hBOpfD#VQRQcaMst1Jih!{x!g5OLl^jqXWh#H63S(Cu0Ke1zFS%) z+=K+X{wwC}8)?<+k1vt{7`5*D&m*dLPWzE%i_3z2Rb+N2?1?rgR$QuY^xf(DRhX61;eH^A_nw0RQNCsE=t;M3JQL<5-Ut~ZXJ`YuRj+?6+2ZaStwJNR;{ zgy1-g-3d0{iN(XV=Ky)^D714e-n@vz??MYH0tUS$;%#xG<-;kFh<0>3zL8qJi^Xq1 zVt+A*m>RxZsL?Y^=LV59H5F7!4G}$tncSxwukPWBoqkdMeY&s+35gslTXYZge)cfj zhl_XOPi&_%`-Kwiq#XI7#-ERCZy>)ru6_v^d{oY$`MLTE{imP;dw|TxF_OJcQX-z4 z*Wss6LLzHzwEO>6J1Hp*|HW9k>u6^C}O)r>=PxWfVlmw zdT8fw_oZX#YDeL-IT^>II=|OAZFjY2S>o4U?>AHCmcfzKhF?pZQVuepWNtk3)$ie# z731{$VcWnx{xWoe4>lw%1e!=MkCyI0TpBjVPx~5ykU8S71UKixjKW z`r%keHsJHfnT(rb8MBcRmZY!!F0EF}KVlnjReVxJ8(7;KNu(X8kGb{G=n;|9YyI!d0yS$4PzBsNY93~8Wcq6ECQmmt2On92ZZk#yhUcZP}$}PKmx=Ux3sPb8zwl{uR_cJ&0K21S> z_1^esxt;^T32cu_RZBWrgD00mXn7L@8Iea5&DvUf=d?#Br)aQ#PWs(IKbjyq%Bf}e z^BK>dyBMO20P+$XuvTL>^596NAaxXzIL52=q#w8^7Mzpbar*i`);tfSc7bP>~SL%z-n7(n+Auw!Ur+c7ON zgq-h=31GO1ifKLnJHWfHsX>IJI!wlu&tB8o7UYgLu-TR1r7+w9@<-sI($~UK5J|;F zzR(1%;%h|6%(gc%1ci8k!2rR`+1UZdM+ei3ZuW^5^2OALJiE-F%pFB>lI)#}&nGm1!CvA(SW@mKADeD)ZvhJCc~wjrZ-zJn7Gsb+NJ@W_a6sx;^c zn%M9TXt8sLlCjb0la(N)$IjkLerw}}Hn9I-4ak=dn##tSsYeXmQimxX$qSDqfMo|E zUdN=W11Euz+q*ZNZ{Jl8E#p+lO*35deSo-+L|=n*pIP1=Uf^erMOv1JEod>EmVld6LI~Yw5aafkjOsC zsX#}Z)rtDAY9K<835aHSh=a=UP31I)jC^QmwCmFDrJ%VsF6{2jY{j zRquWCWUzPI$;KO%&AY}~LBC28G*fT)PPYZ;L1{sa$?M`7#Z=9f>>iPW&iLsLq1||b z9OFg`AHqC@@v(=gC2)dwKayxb0$XktH#NM@;`WP=uA?5u6q{rqYZtEg)J2#xxX7^y zD8>~hmlX5(GK~n68Z)0fj+NgVs%#+6C9UyXK*U-I19u5B)uV_Hq`ZxZxpLl_rG)4r zmNc;X8_$^eVA+EG?}&=lEXT9CJJ8L=CskI!!SG0_28Sm@G%Jnk8M**x+y6zG-~d81 z9S8rxdnUqFsZuY4X-b1AkltAKnrgMGR)E`Z!(e(UuFA`NR6r06!BHa#M0A^ET+CKe zf7zz1L5%_?S|?$jTVd$EKQ^oBdkLq2OWx_RTTuzChKKs9TK_`j)|MwpH z42PXB$4a4x#Bmd~k`7A--9Oe;(8I>JXj*^Ru=P6O-RAZG%}NmdxWLK1V>*)CTE~G- z<|vqYYtMfH4dA@M6jX2qP@P$Sxl5M^#(Kj0ko07lOM;qR5Hj+=vv_O!n$a8E;q~VK zQ0QTP>VGE=-uj}APx88v{v1)!xw4I)RdEF!E?dlmKlkel4sGDU2pVD*C7VymLQv8S zOmXRVRXZasS^rl!y?Yt77wR-G^R@Xb*o>8^OK$xtD(zE^wE=tVVZimwQruK(lOaA9 zycgs)Ck??7lea$9C``BtaHF9cW}M=TGNOcX;>gZ6u}riUn8=c(eVH3QcBSra=$s@) zAyZNB5ICmSfGg?lv_1I)u(X=Am;-XO|7;L}>#CbLT=SuWAh`z)uIiYjLL)T%b$3vk z9?iY0$ zUr;1&(Q$JMZ*ze(6MQa_0#V^ZGY0{KPmgKv0^D!S;A1TNxZwDc1y;wdxKo;3=$NxQ>{^~rvT}sgo z*^AmqHN?(hma%Y?OTKhYkhspFi)M3JV|Z}6R@d`AnBbZFHv6oV0wF!VkE~rsGAR=c zOul$D&59@v~BSc`KE2Z z_MWhs*j$Fw<8jO;bN(e*$G*tn*0B_}Eg@>Hi825Veqr3lrcVR_;Yig2Yz+0Fbdn(& zd4Ubl2jfLg3pTqLrC*)vnuy7D0?Q!IajQx(8>D7Y4xDa)d##SI_UnRSb>89GLZ;7L zEN#)0yHAGW)1eK@L6mpLA1VDmMA<)-PfEL>VB@|?-pshiN~lA3_MNld9HBXX9jPp@ zBnO!j!xw&B1vA)eof}V&kGSn>Y+ykYas_odi=PGT!Q5_s63Oa{v6XF^tXBS*y4`t7 zeGSLfx6=gHV8qZ)FMkSc?JS?T!!NtJOQLf48Sv+w;X54v`>i4ZsZboEDc+LwE(f6#%I;(&iF+&)n4oyf^1gp8XV~v!L3Va&O*RPML47SUyS!sG6UnmF+RyTV zb=)UU#@7oWpL-UpGPr?le->X@oHHg#%<7r9>@l&+%rcSISOflmZbw4Nc(jS@)Mj6`jio>8@9;N>U27%mZR<038RD!M3l^H!L9SS4-Jop zH5R`FHHacI;+*xau9he*b5f^WEQ?zdq_;|M^${ z&_DQ?|8@V9zi3-W+7P)qOJyND%U^w~<(|BTQ1^F0Y`f*Kn|bVz%i=k?wKdTYUfZ)O zfQV+lTq=lv)cE`%@scQMaD#?QCaC({-iNWA_66V{D8G)PEhEn?tjjHh>aCkUWdWMQI{#lj$N|o)7 z5N!bmKWJCMo4(0u(p7fx*NX|X4?&B2o1rzAm~ZR!P$ z?~W-rB2HD&1dOzV>Gg@n)3EQfgq9ix3&m+XO{tH!%<~DS=qGtOok0Q-0XAl$^`gh_ zPxi3{t6ZORL(Gwdku*eord`5CQz~IX$Ph})#goc))#3Q_Ia_p>^K6{^ ztY+8WTx1=vzP%{EaUt)Z`90vcKVduvI#A2PMib1#B+?hT1fD9wS7YW}%eN?}fPHKb zKLiXEib%@_SiIV#3)n)LTnGfqR7s+Z0|dZQ!W}7cU4f_@)=};OXmcvjW7|e&>6Rf96ykG|-r+ zn>qXBuoq=Ty~SO~*Tndd5B?=%pDRQcizyYCyt*&)5u7+1=X?8AP}vV)+-@GFt0gy5 zdwmCykPq-hY|Hi17qaQX1C0i_wQdREKWK4PvK@S;>%#P@7c#(rizt*t_-xt5Yfr_y zenLGosS5HSSN`$V$wUP7dr??6NB7LS!%iCiXCgbWAs?%>|Ug3b~6GDInD>W+Is*0 z0D?o|wDa2#JSvEuQ9Sr$n<|)3s*Hz>Jh5+ewyqJ$c-6kjQ{TAs^{1^tJeX8u^Wr88myWl$VTdiW?!CB=C+7?xUN?0%}4CPeZ> z#0uhbQrutr?=aAbKokTNm^9&9?4Y&{5xCx1y1%$R0J6xWSf=>wkOVaWhD6x4Oj)HK z&!wx(@8T`%i~R@Pp@sE9OXjt8xPQ`ok-a5w#RJ(ie+&7^uIel2c~{_aZa3Zdoy zBIN#*mz|D6m1%P2#bkoQ;9wN5w3)lvL9AB8!{Uj5E~zrtL)3Ka8Eeb-Vl^j3T~=KT zE8~%tFXzJT1`7sQRf%81N-dU22Opz8qi>k%&OrANfi5wvRKKwoce=k_FZF|xB-m_N zELCO3hHz3)PR2kKjG%GGNc29T(w7S_cihN+8(6OyfFQIfbc?Gjcn7O}`C8tc(?}oQ z_*1Cqpbx42>dFsO;z+5wTDVejw@AZJ7 z@bP^ebtUr#?X`4Buu&2+j{@$1lWB?=nB4gb@i+m1r5e0$x1m~!@UciSRcReId zX4(bp;*d~uAuB?RJr&xYCD!>qFX6Av-vqoE=UBtiSdc{M{i1}`Gpw9O0jz%FroL4Q z?xb@Vd^tq~ymboo-7CKWN2yrVgC(XX=vaPDDYFLIEhc(lXa4y19 zvWRr_?=LxuZWFn*L@+n?eol@zbe%bKB-`M*7#^sI2sAS|4=enfU{7R8;&YXnma^a( za&QKjx2_D*(0Azs{dUN0Am6jXOE>-$AkP}+t`H)Nn(Z429_)5dmfYnDIDA9S;>U)vOAW^h0RqFQgNaNJkDZwDxd zA1>@_DKjUnA^=}f^`ItU=|f)28nF8e8JWf2c*2oroddl!G`Xe7Yu>c`P4U%Bc7`_V zVumZ92i%y#z21qYKFQjsV63z1A9cr$)2^)ne~|(|rQBzW4rXnRBJ!51D|FElHVC67 zY=*fyJRuaT9)Dy@(yuqsv3JY(Y##Vkdg<^{;)iMna=NVfHxhicn4H61pkHsO{m($0ha8?2 zE}q+LxNH~f6L{Y2i%WY~DSl&8hQMET-5ve>7dJ>o!R*5mhL31xx9xce1?{?mv}5xJ zPQTw;jQT^ysn2r9Y&-(xBd|1hP8f-Cvm~m~JblHKlH4`}5GonmK*$hl-K6oUDsaFh z&RhGJ6u8^&1B;lkyCj1L9)q#2L*sd1lV~RONKom0h*-s=P9*$I8xED8v&u4tx@ymT)21^=AV<~ zvV-&l)TmFxHB^C85|-Ob_s${QU|_qq@?VsMRrimYyXE^+F4f~wj=jK3iZX80-CTAc z!>e_Zw&lL~o+WeAqn`TD27b9mIsm-`^1bm#ygXVBv(SMkjNsjj6+CpV?5Et)~qp?}#=Z_7U3tFLp z3}%tdf9tmmyXJtsO%4IxS*~BEi%44x15i(8z-`AVP8w~IiEJWqS{4l}`z`A|BNitA zCWhzW0{DmPvDWCO{iF~dp4FwWHt0T0g(|oEdO{fWAdHKuGW}>sFBDuj01{X=RdEWA zolP2_IlNu^=pXyzS91)P&epFjr%>EhX8>l$kCWAl)+wA}g;oxj`^csgA{z0fkuR0; zKY!B)&s@w_7QI;|ij@vV>}Jv>@HjPvUK=^r}( zqvU;aL)W#yER2l#pqzvB{9@3eZObTO!l_9XRD2TVB|nnDVype^^+c(D@Gg_c4?1Zx zbTBpulK=n(oQwr1*ldK}D+U{*4d@+)oTAy`)j?7vy_#ggtn5u!qtYw~uiF4=8Q}A= zK}EknwSg+2a_!Rz* zOe_i>Bi3}U#FQ2|PA>)j&mjj$S0+^C8D+DbhL3B5;!MpQ6g`D`c08qWiK~b`Onq|% z3%5pJ?_Sq`6xqhjI6v(B0rw5R)Z=620%Oaa{>ki)aZkm4g*^dX1u?(lukI&aO=`nb zx#jT`Y$6cX%rn2rX)Z56{b$vC6~p#Re=bTiLy$Rmyp$Ugvz=lL!O-nz=alhb`y`AFW2>8Jm&+q%XX3%h?QHfAGK{+<1A@Lpe=8kdkn|U z_JHDl%143xY&lQ>lb)opb#gQN>|XF8U?Z#W@hHzQK8YKup`0>Hxm;!>+*B^Rt%-e@ zp#B5PLS1AWLtS2**jMb#1;<^2$mNaZW z13 zp3{R4knjr)M#}`QeuVkD$DAe+@(d@-HCsL8$`%DT z&?%mj=Wm#$j!=}>oBdFE^#}-J$vyDwAiGx{Ygqh(LBnR(iihor1=ZgjgOJ@itVSJX znR&wQrsaU07ZHe`y2^JR^~JrFKE*%lNuUYG>`0ELARZ zsEp%ro~drIK9Vs#W&#imtmuuBo>hMrM4eq1WMRh+%{xZI z@wj@e#g48Bkms*#?s8`7Sr{{h@Cr|BGeupLn!D5KFzy?nioe-%0bSS8ovn)E%iwyWvmf$b1w-9!#&f)xc@XKeF*+;fA7H7^3g?X~99@c!|IeGyeKa@HDHq&a@O$PrK>nkkn_zqBT_`04lD*L{bz>-LjC4wos zGKq4zL|B5Maw>rxTq`ocCJupv$;|iqFdgde&Cc30T+}l1%V(fU|B6L{U=*2kpL`@v?>lVL?Ow2yWx2Og^JAtN zMbvtTiQrf3I6moQAr-5sYKYv#k)=UMAEV`zp%Y-Svlc~rwH|lkF;&>M0l@j9q+<=q zes)F8_I=)J60FGma6EYIMx?*JaQQtBARJN3)|ALqli+P8Hi?H@-tuOq=+Hg8aiD0D zm5}zTWH6zT|0^mv6N{-ZH?{lud3jos?wy}6M2qEk(vLKtL~7ErHQ;ng%80I86b(BQ z{72Qwnv9ML^nKF?^AS(xUrYqC{)&E>?^Kzs5l@SLu9wc4{M5%;Nh%Q6g zokaz9_$e#x0z{_g<;~hnlm3o`9UX7YW?KQiHLh9%9H*5WdxC7H~afhT@qE<6; zC-GQKucV!1?ICEXOu{a`0+w2%Zcy$ev9sDog5zo#a}BehIN z`A$d2e3Ox!A|ZmT9f$V)%xa}4zVjsGu;Ed_s!U@mjy45>Gv)u0rP`F?2ibnem3EZi z_6TM7>gURE@#^Z+nAu%cRpWP48ps%zd1U(})9TlERqLZ_aqBr2`|C0OJ0ELv4hqSX z<3x7uzgE2CP$*Pt1&Ff}*gaHYdgF)p??oS9@NmfYUX=esbxS}(a6)qk*FV&sISkF~ zckPHlMEiuflk)p%&CGZO$seR=&D3O3$fQVqxf0u)iZxD@wFkmUb#^uxDM-Z-W79HR zK>FB*#eM2C@fRfcQMuot{t9D+d5>YJ^pl+QNt7hst_B!wjoFl<`oed7B!vKuN51Dr zxYrGT$Ki*-UdD`AmZUSX)l*S7dy_qP+goJR?>Zl>GI9L%x~0Uv^e~(`2kgq%k)Fza zT#QD(O^mA4gNdAheolj<^Is5%!vF>sFZh~wCFKtdvSX2Lb26M5-)~sg-K*qiXHvs z9!`UWRV^|TPJW5G)Oewj9tCT|#vqw#*H$~S_wd@CP3*hSn@`j@FZAY`D*6@Qn(h2+ zD&Vr_>drR14Gmr|+K38H$mYeA7>tjsJ7)Z3Z0^Nc3OaC`n7W8{NCka=13Kt(A#DuV zZBpxA3uO*pX>aw3mA#%jvZ43mzqIO@<}yG9^d7%xHaXPLeoNC_-0N6Bf+3@0HZH3^ zdgs+LbrfoYdaFz1s@vf@gM#^WRg}>yre}gs~-zC3qlw4#^Bx3-o`F8Ni67+tEFg%xw4Fq50XgiEV6Sbf=__iJ)=Be z(l$lC#8iTzFnk-(^OsDxi+B!dW_#Sha>{B#3rmyW|3fadIr0Rg;*LT8BcO11n z3x%H;JD@^)nzAP8#1#IgP9Wd+SGFkhEkRRJ3# zq(zAt@%iau8YJV1`wN(+X+*^(j65OEF@@tyX7Bi^AMwvDOC2hZW@Dhs10?f(b zJcroA12r>O&>aWs#e0#PSG*dg59l~iAj7EyiNt08dAQr{b&CKPieW*2pPc=|!5$Kv znzX<>7PD1)BZulwg6emho`>Ol@f&LGxh?l-XBjjyc(I~cJS-voK%}QN>}ONV-9yfP z+N-p3-LTiA@1f9l3Yk3lA91bL>E&k+pem3{NRzESsNh|7>fO$Y-m*5F)|D`iTgv|7 z7v_%rv;F%G(^{#~=5O~=X^Y5Hr$_Bc_dfI&f2C9%S$7odRjubhpkl`b$ba;(R&0n~FerRG z<}Gm?f;Fqr$6@?P0%vv8A@PSdD1eMVw_h5$m{YK@crZH~9m&!-H*_%wfYgFa0Z58> zVb^c=Y4QddHvYH?kQtiGu!Y$5DG}?q$~|4bE?!s-mwuD=# zcD;a(}`zT+W!bhzK5E$(2i`0?Y6nb`=wC>?E&)9Y)x|j~E zc`R|)w!7R#kDwEl=P0)~#Avh4<8)5~s2;CO@z+$hA|PUBNrfYKk$5Am0DSflwU3r7`6- z8U?4awR9`4-&_cx1DYw>$d^P`>8m$sKhdy++L-Z9;nR2B_ChY|LU0zc99pwxh(hSD zkV__(KL6HMhKLX`dM}=Fs2||24)X- z?ETt}BIq!VreAAJ^m2RnFi!0PO;(_cI>-v?^HIyYbY)x&ArzS_V__0;y|W{g$7XfO zgYM%9Yu|SrmOh4GCJ60(7uGet}=(;DlXG4RA^Z@t``pvWj#`zEQ;=m0wnF^h21n*+{*nS$b7VYsujnlE& z+}}l)=vpiax0;JzjvcHNe{+IA^qnx}s1JL{LF<8GC?2^+F&_iu>jTHFJ2D|(IH)_6 zAuan)uU@ybRIZQ}0VW!61B43nn8K<}y$&%?I>5Y}2X?Z|PbJ$LkDE#Smy>DhkvhDi zhwpJ4EeJ+1M1%#}D6JP58?uG)F$K~{3}0__yhEg4SzY2PMxiMGr1B)$tn`a>9fEEf zpFEa!yitu2xg$pza0M&%`_+B4Hq70KbVE0cJH>3=6bCb>98kfLw&Miy({}+bR0fmv zJlg~<=~M9gH?B~5v3f*#)WFM_G0PrgIu-izB%43U@kRVvRenJzIh5yDyWneGpIl8+M)~m<)rx^ z$`R76f4VVyDX&;Me2F1wuKUNR7FSxE!i_85X{6m&;z7Rles*`;meH!5#%9y4tGY0m z`!wpb@{?cjgc&jfvK{BA0$WiVp+Am)OeU+vYsR!ybit1F^gqCX7 z9!$b(Z-8S?p2vO~`RB=Zi42C!A|{c`LgqqcXvLAfnS=*MvhnT-LKOTCND9BWA}Xy> z%Hj2YSRXWxwRkS3>+V0+kBIX=&Eo#|$?jnlP>H>d#yJwLEtC69sZKOeFG5UTpcTt79rAhe6C zyYwI>bwwDpC&s6^PCT)M_aKaLB9X#_ooZV`^!%x9bb}D`!7ho*E3c4(s%+?$@oRo! ziWqa)$~z_JUCP#B8*ut!9|`@onjf4gIQ6^y9#pW60A7V9ZXO^lquv~zaV6&kdy9nJ zx;f3-j5hXb1RXw1C~r{c8kGf`^eC4W?h?3@Wo^oO=rzd0xM|H$Xsq5FS86gYzZXzN zzaXoMi8NUnf378@h)>wZUO-mjR~_+@<}qjTpqj>L$(yeflJBkYOUY# zPwEclbnHfc@sQ)hLc$flU$X6oDJg@0I*M+wP>g0~e<`!|qy+rljGZa{Gv^mYp_%!m z!@#j`1EPm|I-x`iBJH%9@F*73=ifWi%gALl-t(w> zES(nWjR=+7WNqhqwV(U^ambX%g8-dSH>BV1I;g)L9pOcY>giK2z_&ph4U2byJ|X1` zzcDpDwy;G}ZIYnE?rv>%^5`M0@GJw8c-_UHS`@(rl7nuE zEUhR$JbNBGK(+1b_d1pLU@7_6vBMWEp+nNEJ|iD>C>(ic{y@ngnKOT;7lur4)KE7tQA$vG&9hZE z4nYF)%I=r$`-GaL29y%~nW^}fZu1;vq2Bn6Bv$7m-JX{1-dilmnSz!l)u zt`P?3B;xP^*d}p4GX!Rwt-&a^+xIV$jg_AeP-Tr%KMU359acH02j$mP{gSacoZs+e|J;6h9DcPXq!zwI zW-?NBfkvT_@(YZL$8n7ufl$5SMU=~R_n}ErL=)=F%&vK(d!yK($5wwLc!>Gm%7M+#RfUS7hhkBwSRECd^m8AYxq$@(ZMw`pgSy1MM||2 ze1=gv!<$obJO(mfC!~g{OS&6h8a6ZjF1pLxio3-$SmEHz=n=fd=!EUJi3>~CYw~Np` zlb|Yb%o@0hwg(~0X`l^2oQ+h&*Yk!b(>LCLhtwU;|J)qrHhJI+yS;zhlaGgD+-Dgp zwNA2Qw@%%ul!RTlc`w)U9oTdM-bzBD`DK88 z5LVJ0y&wim%Q<_%yTXsw3eF+&g|by*+;lpanK(aRb0|_xG^);e8hTj`)Oe-v41ex` z_{XXZfO|d%Ogs+^i#4Z6m;c@%nw&M~_skebL-~Uet=srMPbSL>6@!Fm@&%qdl&-_P zwQUVarx&K=78&F)gOmggb@t>2e>XTn;iUjRUR#<3^+gY`%*gcRhL_Nws8IO$sXA#? z%%KW$4c(Ua$A&RVGr#g{U2iZC65+L;9OQkpsrg`vvcd$8 zN&S_4cL|yDCg;RX5>LbVN6C#3U{>?;U16@bBSrcNz5I zo|Z3F8_Cj582XuY@&;Fw-FEb>^GeW%kR)P)_(vbuo2i1aYDKpVH%dc*5&wOWG7(1% zykFD$-b-Q;uzN2#^tZW?hsU)WXi1#y$3Bsz&+qy`_A3deBrAIAR=!T%8v8N*g-x*C z6%`vQM^AfK*F;KBfO0H<+}Eha5X*s@%l0`SWqOTgep(qAcvkYPfvXRG3OZxVnrZ8~qBTq>Rjke)3InOFPA4f_@%R`l+*qJH@ zn&sEq9VaPOfiD?efCpt7(osiOtI)>Fnw4Xd)25AH$=y2ZzWlsW@jj?tn%r)BK;#}S zj!p`W)nQ(qfUc6O4H5w&(UqIEcYy>!&@6+1+CwjM0TRCG!fT2h%LFH{ zW|=z$1d77Rc`86wY8Yw#3}QP#N&&!VeQPbyJZ=R!8r#tF(^$T|ZahpP z&7EzT4qNK8_0%{nyH#i*KC2G=5_}x}P1~bDCPzwF%|WtP%8ES#1S|IrYEE;l;v}V9 zQt&otepW1}gn$yd6XDsPH*;+Pl^eN84vr-F(N=D~0EUbYWF@7D-r4$VUM>u=dO}^; zes${n*GRAtw75T(toiI;IIfnRha&1xz);Lo`+cYTa#s9z7saOw3{;*kY4+@kS zN&K%ttD;NoPcT|aPhFIK2GF_{+d7b{!q|1n$Eh32($yPD!AiDEp80)}va(_Qi{xJ2 zW*5Xc__T&D#q~sq9J#?857`L@`b&<_t5xEt;B38PkT6WpBsjKh+qP}nwr$(CZQHhO z&pczB_ulRo7jd!st2;U}tABMxbXRs|I93j!0BFuN;&kmRFMHeNz3Q3O0IfiDyS%#eaVZ0PGC+LmaDHkmPZK)`~MJ z(-pE`{wr$Dz(SNQtBrqhDS|-u;F{g+17+z}3T{BqFl9qR`wc>*$thzIh2VS+Xs2N4R$kTEg9`a7h zOdjD`h;5~BImOMHFQyT>9u8LpOYp#W4W(R@a``WoowyBq85qD@lf=6^w>MkNh*0^u zOU2*@V~A{q4S;knR@(W7MDBN*l6*EFHiqxt70%HFaCx(olZs^S+SWw=Huhs(7NT|79kuHp*six!%Ft(bxi_;#4&EV3=Lv8It->^7H7?()@w@O%cHFCpE8oA0f{OtT!Zl{|Iq_OOd-wBGIvX` zfk+mRS}=lt0Z(u2_Y`@HtxS3%sa>$==WQ^eZ%@T;vn2P96iji|G=i>dI<9X&O0+*n*0Sn|5C zg4ygL|GX8mAv+eJ`j?dK{UZQ)5Gm|8z}I3}=6b~gF0p_K$FyQVwX%ThMSQL@x3vPR z=5oJ6{C_K~Wk~Ccg{IK$3ibx!$ zgo9na9fJ-7zze?2iOL=dcpA*9t6$u(le7YN$<3N&ByP z_w?i0`Rc2kHCdQH8Yr-`KWn(YI4^(w{bIy;i?dr|_6N{PTeG=B9%08+OzXB)v{xm5 z;+;-$+4zWw;D z5ED0@z&(%fO4GMyO%fybb!HVm++L`noY+-~tpK$0!L3e)=QSu<_7ZG{P4~?}fJKA< z>^a93ng3TYhtA5t%~l?L_t-wYV+Vg7;4{@5#@>|sL6Pme09(70CvXip-6H3Lw@+LE z9CQmH_d37%?;cjy19vNIjOtg4kvdz8{vXGzFaptzDt!0uILORN3S{D@gUY3Bpn?XY zI<9^J7B>bwIoOHuZu@62a2VhWBuHMLU<66)lzC#mWCMG6oHG)`kN?)qc7t2wLZbir ziBOXgNKW9Tro0PS`DuUL&n&Y3H{IB4Ey1Nm5#u~HaWCi?j&e(Ue;41AgV}Dy2S;g> zQHovLuV*Fo=WqDH<>?UeU3tih+fi)Xj-z!>{A{;0e{W5Yo$W|Ev-fp%8cp<7-oJtQWU z3hSDRMAYNf(tR!JElCf~Ic;&ICM8CMn3)7?TLcP2t@2D-UB^s8d|js< zNyNooo=!ze=2(%7M!?2m@1L;jRuY+zoE=vQ5d~P$D;8uo2JuLCAqnLH(N^&2-deaf zI>7h9!_1X)3xd@@MU>bK;sZxTd>mIupp0sm8$OgvywZwYw2@>S@S4qQkoXqQD z1cs;(M2QW5PrG{++3kt1_zJFZTC*|AWf>?LtQCumEx>0zui z-EVVXEf-i%3exo7FKI*e*ix<)XOds9iJ^6=VHrF@iK{oEwhR2AZP%jJ=>y;6z?>Av zwF$ZCA~b^g;$TqUz&<+f7%fO6yEE$G;1-2x`&x!w76Q(f`ty6K6sKHzNJS-w2z5Ec ztmIm>%wo-njACdb?|}pFvZsKp0u?P9#LV=?7zlddqn`w;J>?n|#+BC>Keop?P%D?t zwPo(BTE^^MD1_?uHGO#{+X1yt`+i2?Rd5B8yw(L2`BqzBh#lwCi)Hx zFqzl+E6*kju?UnwIYDmtt@!;;SRZ6(=f>a=p_n$?$izhj*YzKcCccMi5jPbi&~5ki zFixj<^0Oq-Ot7FDRN)Ih+=AmYcNgwjY09Mk-D#p4REVCFF0;*Egrq-Me}cY-uVR`4 zWJbh)w<_?m7^5N#1^9z9w@xw62t2o&9u?;Z?!0HE0okVk6*78j3#;P$T`MdWnyOdq zzK%n2K+I(Yev)<`jhW<~N-`l}Q3|jNr)qKabdktQ&kkcqvNFh(8aYNFZ10t@xYdir zZ{6v}+f5?F2F1O+MI!B4&k$@XsH>4elD>|y>*^J;khPd>!`A#_ImBJDK)ZS9Ka!(sm1%q}FAmw_Y?(TV?;n+nU&;#?Kvjw&pR z)>bXjI0I^8X_U(z6-8eTEfUgax&v=?u7B_)?sQu(;@AH%0cM-e!(Ff!)4+QGMr8t@ zf=Ve!vERybYT{8*e9QKPQthH{so|wCoq|&1qF25!c@H-XMZDeGzCaxu16nGUN^m{# z09*p>e4CwQheCK1*IX@Rq9`2^0;y56^9bbnz4o)0DbHmp*hV_c;_O9Jwd?<7={gH| z7jDB`j;v(tdDo^NG^g32pV;o20D*y&g7%m?tswxtH+jzj7>x;qi0dj*;Y{Dek#k7E zlW_n017>+`t3%zhb%G)LI>0hA(|IN9RgvnceTOj_bvrdux2fo4PpD9I%VZxb;^M4W zTF@>RlG1yls^`9l_+^N1==roZsZ9TXV?|czZs7xafjX}vJ*z5qUNm9O$AQgQ0Ao{f|zdS?L znuqR+X^Fzuk7ud5x<1rmUhKs01PA50sg<~5+&Xb95^ZyC02@v7`T-H-pin>eQw*Kn zGRmd{;df3J?Tz9X5w>t8m6a;>9a+JwST?t(ac56;N%pMGY>n<9fOiFR6Pb-x)4W^$)_ z9W1xtYoFbQcLr0}shY@Msurv*$upG-ldxyYBmA9qtM0rQgey+w1HK+8MCYm|>VGFuN#P|ZfH0h>x*DHXSUo+Zxi z{@FSNq%XBSa!DztrMvj1WmkwdxWzZNaF5FC2;jkr?hUmXsaW=LC_w-kjlotj8Q)k3 zo_8HZq_#dd7L`cUwNEU;M(pxy&0MOV9LA%7*|*}+3wFMVB{IRg3T6CxQhzbPol=GGaa?&5E9!=9_R7!6vE>nVS06Yj30C5*U8EKeE-9`M zo(#@y0k4jFCRF5{b9V2Dl2I89p=(^sdm!NUW1+iytnyra_;SY1^H!YO^;b4=+ZypHy3Y0XD4ZQDmcFKPJ%VOLgOLsIy zwTTw5?n2bw`V~malHw(&Q`#8QzMG5s5^dW%;LhDy9Qer(tm*R~F-#BF64&6o)#zv5 z@wpcsQ6NncH?HHyWWQ3eNOUsB#4h<~kh>m|_+N74kn%78`u@1mn%)vPg91I zBmLcxmK4_4S*Kq~}grG!5Le?ut(o;13vr=V{WXfM}+)>_>PT4A*t1EfOwLjAqxk z;usIHstkDLq0>r7Per5S*MWtAG0J+s^bogoWl}PUgVt6Y2vn#3eFSzK#ZD6c1=#E_ zy;(qREcu>(k;p>8C{70fPI>0wEMn}I)+3LnefueQ`V*oZ15dtmt9~_|T@(<|m-ZYy zQs@}Z4u7-f{4=wcC%48e1`j53c$qKLDBX6hQ!c(59hEwjwTykGmg4rO15xymHv(A9tb@t`H{_^&z@xF&iVspBk$+voy~GFVgRX8vLM zQ@u?+6F&1Wiq6n^@xm|=!EsTWlUgT#-fG=WvYTGx(FhXim4iSA+dypu$pSgT zj(jx#1VLjwL)K;6USTxAvu@2TGw5}rYIO$s?z3h5+Sz@2$|3smY%BNNXt$2a@^~%0 z+Dwk*-Jt>LWA&ZVQq}Z%ERRIUstL`LioU{QKM@8~w(d4Sjc0GTGsd%>8BT>hcem1z z=+OX`@rQKw=)^Mc2gfx;+ZtSz-3_qQ$2E--`Lc0@t%V7&>~9>)YlGBMNNl{cEr+@g zim_1n8Nzhz-h7Zu7AL%cKTa}-OFIutYF!?Dh6x_jFJ`>BR8D9#(jO7vfPKMqDR~d>~hjJbljZ5IQW<&8Uap67Oq@=|0;3={il& z%x)D;m$oG~!r>`f|4+HFKTMQ6fY#)FlrEzGE)eNNd)0-m zLJM!haveTV;!<_zw=S~dd-j@!At;o~WbRVqFY_D@gpf+X$X;3iK$*}pYm+!=FG=-D z&1PiK_NvM~6K20%wC$E*by(#u9wFo9Ej0cZfX+3;{Y&QDJ>F?(fRRUNpArOE^$M4) zG)fe$Z^aY^V`l;|vT$&UDVb3@<7~<|X3d}3yABCPd}w-NzCE=dXQ(e()xlI-7hGJJ|Ly1DJe^DUTGyd6Fu{ z3@K5b*TL+zp6^o(6!NGyuqn(KQ#q9$=LRg>^1YIEf*pnho+Lo0xkFw$Y6diHfrv&q^{_cI2ef=^zngZvRUD_9>g}7<^5t@!StFYUc+bTCi_qY zy;ud%QC^ezY2uemD^Hn@O*w_aCUG=b9j4_qad13uI*~kE&dd}XPgJDE;15hg{sR{ zkCYLx^4%Rp>DLn}kdkBjt3eub`eRx8R_5`stUkPM0T(p@NGn=t(i`V7!PFvsmj6MR zkI_5+{ojW%D3p2$IsMMaA(p9td@`;X%!#7{pdgkMwFC%<>?Ds0_!o_cfB}V~D13OS z_k2*veM%Zj-8SkXM~^C+QmC1(`2N5iafLphZ;r%Anwry&>GQUS?*k9B0B`*C#$#VB zcO*budkByQnb};hovaP8_tQUj8uZn@(nT{LT>6h?e2M)#Z)Y}c3c4JZsk!ukMYM`6 zooi>b4`UDWv4MR!Dz|97K#`s&qXd-+ItURri*=AB?2#+qq%L{|IyG@RL@0c;_aMD+ z(Q$q_m$Yv0x#&gxrhF>=$)kZl;dkMHI8tDkE<3*62IW{qBlJ7WrmAKLfI2B;SeEI< zL1y|5Q`FptLTX9*lMIrqfyu=pu>`}Yoa#}G`)w!hELmh;mwQQIhxoYE=;EShru~&I zOD_)hHr`$T4MitGpi`*8(5jC=LCp}6s9ms?YJ)O#!sW58u|xIcQ2DbED{D^zheM{L zAf*>EUqab*6Kh&d4IfQ32x;)B{orQ z+eWQvgPo*gq2B_MuHLxU0i#LUyvLt&V9{3!dEz~E(~bfpd%yVfoIf)V`NV+0F7hv} zHzpOF$*AgUd?6HLaYg66s`1ZY4tj85Hp7Ijk0Bp1%oK3=2w+s9JHFOh(x&-GEFOs80|UMjK zWB++eNv|!PGu+pcA02CIiwH@>|KL5S4ry@d$N?Y(%bztYEBph}#SaZ!g-0x$*6Ct~ zrmrCH_r<3y6)6(YO+AET{R=j3?P)N`Vlp4IIR=caa`yh@z_9NI^mHxCa{y$sRG_XE$4K|_7 zno4**dZMDR`1bQE);}=&=Z+nWw(*(2%b$8YRfJv6Itd}Y-WTBF+|5;XYzWGm>|f2} zWVSWgt@$z5gVl(nR=|n`YHL5nCl4z5#>IH;essdC3<;GLe>gi~FiRt4Qy}=Y4y+j^ zH5$rwn)DWapJrQ+6@-Y|6)`B2J+vwus`2H5snb|S|gGMuQF$%ag69|BC2qGcL=z&ka(Jj z5X&ITI`mzA&sB;cQ1YB2X^s1sEgD8UG}>+Q8+2rNqFKd2VU=ryPU|m?!(D2^Dy_*2 zh^{jyYxC=JzXJ2P1>7ZcbLE3|4TYuU-B>XLe#Y0Z;U+3-xq)E}`BQQ7-ILY5J;I$> zMyOnibzQ|eNk+6`ZlBqzGb&ZjS%IUIzJr{0$97qy@h|PV;Uun@r7J`_kI_(b`S+G8 z7(ZI|q5G4 z@f`M@l<^&Wv!V+MM^nfy+vsqF`Lu1&xJ5D53>kkG#??z8bEsh1SHvg#wg+3IN|P_p zY93(ih@-FRnX z8QPv2eCbfn-ptHEuAIaMCV$bWGj_JK#Z$bp0o0868@rRx1B5tWXY&P6nJW)u((QLb?WiyQctk>69l*GeHi870UVPLM&Vb0sE*pLS4`W z5E8F=BDb$Tlt;dU5D_Fvc3It$fO7$c5#%gGyiPcV5BA6JEhk&)u^DQZw^yM+?rQ!o zab&PE3^_We#`D23$Wdv|3`Ar26u3ofCgynY_8b$l`AGbwa8HxV5W}JcViZ;ruAVzIcJUZeND;8IC-icKt4!b|%&7cGelU;DsYY zT;vxhy#dFNchjaJfKV;{mj^FOG39tJGE1lLHe#{hE8S&=}cdk_`^&-83CR1PeO6(VX2Mrz$IvbMd2LjH}FF zURoikgQjcWZqW$bK!m34PaSVXstt$InF#-$N+7at-`b8=cj;Nv9S>hg;oQrvo(1z~ zL9plDKI{LpXgoVLS?QGQeC`1bLso`xYRNE+(xCZS487gH>*JKpM)3EGX2UR8d=s z;)sd|f7BYd5WH}sdG`_|71|4qOayk;qN8)-#=qPWX-^nE)C$SlXJCe8B8MlzBbCk$ zn;_2)t^%jh+ZrM76<>;>1B6VWv>y9-Ga^aJA8uvO7We-4KgT{>|IgD42bHosTdSTU z2=``Yex@?m(i z+ch471v|O}m^_rxH)^c^^KbbNxv!?+%a82XikP9%4+mlTeWMW+=Yp5cUwBdMxcb#s z=me#iH4qwNbT*>Ora<_^iH_g#(b%I_boUNR5p#P4+#Gi6)s}=%ak1Ob87}3g@BEE- zQlDk))z?M{U##UqLu9K24!y8EnJ-rn&sDJ84V}eOItu-oKIV;YE4dWZBa);W##^tI@YyVB7bw`km3pv2J=_4-c_nFOe_=mMv(Gd<7*A4t^vxiGNf&(?i1PckS*?eIQ>=7~V#rJHh1; zo&m43AnpmTCleC?NYKBW3eLm|wv?PdqVB>&>+Q?q#LMd838VXaHTo91fdC-s=4RUE zw~Duw(f1oXb;Q$|DGc4*uiS&LZm42JFeMT`b;W?KLZzDJ`L*pTSG?^H!(;%Yxwx(a zu#fetf7RBQFFuHR!C$W_14W4UyRR_BDLTdR1tK4i_mMW&QfA$(T5- zW9E_VT_ORK3}Fb2267QIe-&p%NX{35A6|>l)BM1bQ#vT zkWFy7Oh;2&Z(0_(u=%_=A+z%hR*`{-#3BGn;<+y@-ezY}uu!AZxFxY4IzgzSAxTL9 z>-*Z-hsLsek`gGD^$n|=1e@J^ePiNdXLsI7h4JH*IGMpfb>S6aaERB@NX{F`v+ex& zzZl`_1a2nClxj8NLdpL`WNPXF0JPuLY{Nov4gDqUF`YpnNu}PKJFs3a^uZ5VZuO~Q z??6em!Ly;DnP_({&avFojc!K0T{hpnZOenb1Psi%2>k(cnHb=*8aTBMuY2A5>lg8@ z3n6vxWstymfrad(i>I;Yop4Rp2Z3E&$8%QJW}&9()@TM0#RroyK(>8sbx68i?8793 z0}z{jw?AjfcYtn{}iI2C;^`6Rti@nlQlIcKdD+sbuS)TyVNV6@!66~Q( zZmTOAwFxg>)QLM4r{cf#=QKmD7}+VMP{!;lMzeBoxStZW81or)n$vM2ESNY4BJu#? zYLyW)LJ%IQT1Kv4-h|fHjF0W&jF`7V4To7$S-PrO07orju8~f17T?0@|?e_I31iGODu-={w|5f`AW!JsT2`cd zaLnwuD1s#kkonw6ik@pTv6)p_RP9>7`TFbDRSX_~BZ=$;{Ok*`dj8AQ&zC`e-5jf2_Hip41)CSvl% z+OYstOL`PozlMS?U1-cF`v)QDO{$HgR1x7%z^wvjw>@{mwV3w!Ds5P!*P5M1%mr@> zQ!lnnAkNPmR95%jXqvl=1CipDP^L(H+IH`m`3llHf&I|CpO1QIR$pc^U* zC**vBPD&CZC}9c(`@5n@#kc>9wRMKst%6+nG?-84eqrVeA%2!H|NHE!s!f$Sz59k2 zP24BkcoL*i`7V}PW*j&nHYTKZ}-Hs1W;(k`&sl>8osvGznbWGV5oQMpzPc!Fkdf{beNN zSk(&(^{Qh%y$ZYE{_NQEjGM>FAe9_3pNxY@1df{0iY&!^JRXQK%#?`E;6jdZB%_^f zyc?ztqjD3)hecpadCBJF!UF$weq-d!My*HOZ?OBbY_&$wvR!2Fe%9P=12S7lkG;&nKiEE3*LUE1<_=BS}x&@ zpwT|(M{v0Or3A4%E3SOxF26@CZJOlRKqME-Bg$VdX&Tf2`F&sLp`pX8fO729n)hcH z3s&HuId)tz&FG@PJ_=LO?IjN{IDA=AuH~%zhX-Rg9{5qeE5=%l!hx7;Hb94tvjcP* zY=*yCW`yu2&u;0OGe#IG|J{j)Sn-_yAn6%{3E>PPB&wQ3&hK6JCY@xSR!e z&8I~#x5J^%7zlw2Jy6C_tr6z$$%d{xvADewZhNAJ!qF^52bdEMwE(#P<9Y6{lK$WM zo%Lzxf-}mn&ngsL?dv~tCgg)c9p&uLp`|r0WE1Y@xD-`;)hfQ8?@Q5|$szG>t7voK zo<`N=Sg$Zn(6Tst-2WKa^FNvh;YY`aB$?fgedJ(vf4RDu2y`o=<4Z}7bX3@Ch^M1^HJdw_6UBc52y-BS;6iq|HAJd#8P`>(9b?$2@8m4gV&PdP zJ}Teig;IaZ=rg0R+Q>j-d}7bGUw+W5nx%@uKRV-@?6HLQRR0?KF`9&@g zg-gOlSq04MzA9fOBmPi;y<-*Akjs0Q`F(*zH4G~VZe&CT=?@T5D^OZ&a0rBg18F>t zomuWbD1xVGyjmg{5n`b{dZg8;3i#BRP)!o9M+-{w*^ni_6SD(mkk1CYQlJ z+AxD1QeUrDB02u!cs|uyA*_`x;S$ux8=3X#;SX=k2qNMVbsSM~YUjqr`DBEr4e9Cx z$j~D4Y5-e24Ofh!KQv|$2=<>6rBbL7xdnYhWM&)8M^w8P z&a{;oG3s9OH7O7_%;ksTM@))Ry6(EM^5UJ2`ymPC{ZmXMTTMi}UESd4C~f9!kB7Ue zx4Qp<4T)F$sOO#&RXH}%(!Vv(&n@*;$7vBgxc7n728oNZN4P&^lzi%p5$1-cG1GK6 z0;nRyoEu#8QV7dZa6Wu^6DlDDh_8Y)u3FC0(j5SCev;v#l_M=Y7@bU+nFTI9&?&S3 zxj-YAo-C8`v3HkD@NxliPI2vRhLce|P1#^1=X0|cOjmFtle7JLRbaB5qH1T3VxxyI z&|vJwkrpYKcLRo(-o`%g?X>OiGxAKNn-lR-hZx_2e2}0L_>=lZO+LAXmVJ~pY>WHD zPg^$RX-nmYsPQAO%%hLN0tT{a*e2?SDf(x03t$^LQ8(}WHf^iU^H1F>ejP>?G=uE| zqErBpR`7^iPi2IsTFFP&pI}BfSoW{LDOwz41QiQM^rx=tVavM9G^?Q38^eJoa*gvy z2NY%?^QgLXtnTQ@pVdd>5O7Vq-x9$>q)k}%z#oRt2Eop#y@Kk4s0e|&%?&ciN{B=0 zDVVy)Js*fLOv3O1v^@U{Pj641m}aKGbf9V(PxfpDx9vg+|~M}w&D zl6DwoOZyq`^+<1SRUU1u9~XQl57sJF@@DRb3DIdTS8MK%46Tm2N?QWh7yzn-YCN3t zJ;7aePI^BkMRqrT^e`;+?1^qZ0JigfUR2jy0Lu3`4V{w?-UMu%ilEJvf76+abUG9+ zq(}Rb#zhV&JMwqXsr`0r^`WbN7AYnDG2pwP@EHSg5CBMc&OI@DQwgih%8lQ`_y_X> z9ydsoF{h!DjnX0p;~(E%Eh>b`8L|nAh_mEnIQFrix@X_@WIv;^wfy(vc>vUq&*|B z!<1xN9nM}YvfDAFLj!P^71Mvhkx#Iq+TA^aQJSwELeii26zla(BVJAz@ab7vUr(@; zD>Q%LNOgLd8A?@_LQw@C75bHc*B;CSaBvkUTiMvKUryR+7=1$vxNI?eE4Ag@I$e}I zJE^LmVYlCW$x_2*^3N6R5s8&Xats=+hp)`D+%KEqR$V;4(?_=lQ%2p?B%>?GUa{d6 zj}`sKBq5jibtr$^_u(em6N??dD#Bvdn%mxkz#CL?Om(6el8&vaTqRI6iv!gk9+M^i!`>ctSK-Zp&QH;Sf0an9 z7*-wBt{rrZHr_9Ou+HlyFpAIiW!LWww1H&>`cDH7J$cm!`mtQ*^}cEc9AL5Kz$ zqb6`osh{ms&;cf*Vo&!E?iE^J^)bI{wpsvgkX^Pl!XDqeR|@budS+b5Q%Okt3?MG0 zffA79p>d=5m-{^IOj_G1cOGZni}_8%hpg%Q_&=#A8%B8gB@DZjk<1@<>=}eQB3Is`ZO2+xWqx>9n>jfyeE0_Fms-VMpNIphWYcj1=$xA~^#j^?*k39-txo zk@igl1XPg_t;marMK;#l-Ov2Oj?d78P%6u^DbZE?eV|tQz4ByM*~Vk*BA9_J zw;u>53>Y{fCTW<~7pSx@j_tTGx_OX|p3j9;;92I9G&P9;kB_fYsq^DcvjQh8 zreiW6+9|2!xM?GDC$>uNRpu^)mlHY21kgxR>Itb~v+adLZ_s+Xbz3!?RP@vyge}GZ zfPZ&3nF5-wS8dy&f=#}(tznFVITfgMc5jLC(N1FFs{#CNy(~-kPC)o-cw2IfP>3>z zD|F;XLEVJUqrUqLz|n)&i~72c<&pP+AuVz8vS3%tio_*2WGIWc5NZ`a&O_=RKY$T- zsUycNX&>XqM3a~iR@}J4jUdO=z73@8Sx5rQUi+GhT#_f8Lc%*5C+WWn#80KNLo_3k z!91Kc2f=m4ubG4OPEz4unRSnsdP;B0ZYkBrFZTACHK%JIftgDp-ZAa8T5Fn`rhj!d$emog`7{7QKF_(M&1@+PtW zXi#=VY@d(NfMwXGgQ!tQBWZh9kXfBs8%KS z09vT%VbYM$f|iGpkaYtQE8(C99R$(Ktjuj3{Bmvx)Vr5J!W%^ryd$GuTYPA>ZNc?y z{Ki!$<+=^bJNumqOE@0RX>aqM`hw6aJz_{q_CVn^(@ zcCc&wbqhbthok6z|6GIj^X;25p@wYNXrUjVUyeYc`0KxMR?UV*igg8;>p%O85~V!6 z;}Y_r-@3l;mCHcWdz9XuFE}Rc0MCmqE?aJjRN1yB$#pDZHGzaDT|(-`TWy!}`heO# zZd>Q_FDjcYfjha;xBF0uygL;T4dalc0A5EYCS=>s$3y5$vu)@gb^cHdG#o&=ApxbG z7gvcdBRMywzjv^3)|B7lZp5~3Bk{-n?`8aaL?Gsud>-)gZ7eoo3Hx}U-wyq}A|Igz zp?yE%5E?*q3k-J9xgMDexl=M4uCS&69;!MHbyfJ1#JY27IoZOWRr|cTQz!`_N=;r> z55fd)rH7NCrfM+NF(8mc-KX?L=8o&|H=C9P62vUvgFGt8Y$#Ru=#E5MkPW4 zTbYNV>#(r~GKM>iYnr!~yFcx$GJR#_>8iZ__H_a32l%6TPu|`S&u?UG>kctod*K0c83>8whd8r$_p5w(ULC3lsz*X zz8vNkY5U8#g=6{DF!nlZ1KI-CN|+-6*QsMMz>Qd)i~U~sN}67hmAM5tk*=9!v|`77 z8ex024ABtaM_iZ(Aj^U(ys|2RR;`7EfRQF89uvbs0nD2Ku+zYQ#Ct$#SfmO`CJo4XY@hv;UAWyRm6C!VDhcO|SqpXJiQHRP{#e@YME-50prAOV? zC$|23|3ysJOLObDky^1-?N@ZV*^uG|phHoIs911(pD?N9AzasC=8Loa+J)Fryr^W}BdgsO%XMi8w84_o$~vVXKB;nli&?YprFs-Bo3ax{oLh2LGfa(+%?9c5!KDp;E>!9~uj9KuleQ-W67G ztfpVEDnhT`1)t$0JuhpKq9-;EYKghwgzT?E;@tBNgUM+t!}2xddwe;I9?;NSE{CbX2LMe`OYY(8L71v5tOxWnR62H#(D@9Kg9?I=aK zr_QnrN4su9lMTL3rwT`~LWzeP?<9UecI%2nMVri@3c>;KX46^9ICFUJ8P3rXAOW(Z z8U$dplNw3>Bv%gzVfaf}WiAW>EHR4imbz`?^wnK}TGr;$@9Sbm2MR5br1}UpA?CTJ zr#2m4iiHNI*xrNZU&Z zd1Fce)tCV!WP3U{MlT|1yuM$6ZzGOECy;oMFzgIKw~v-dsc8tda`ZM1GCKxq3lH2` z_J6XtX{MKz=l?8F5%)`=Tep2hknHXAjv_3cZff?EC7}YXd`^6(u;2#G;uZ zB9Rd#09cYS0{HrRD9Y^Yf4sHqjte~E(IAE`FbSjHbM>7}5*<}9jc^?LFq(dnb9mbX{N0=?fvmH25#d`vH=Nv2H5nCx+r=};NaBq*L!f)YQ$E4{TB2%e zpnOO@FV(IG1mj=Vt_O1@O=FuEmHZio6LqU$Bhx%2nudWkIhkm587L??joo*S4;ohX z42-QQ0nV9Tb(~f|1610bLM1ML?6alEx0(Hb{m_`o;ak2LQDeyfZ*OAg4!L zDvt=MKH(+ZT*<pfD0^kf*;5H zV+P}JMqr)Utu7vO&tjppF>GZ!fEYLm2S5<26W@|+=TA&ZbNzlhD*A_A!CrgG1Uour zuk-`!qD=5bIsGJ6QT@hVSyuUqm>eEOVu3R8-f<&+9-A?gw11Vx;6S{pbxiB^H{!D#nqnWe`X1nNsqx2^&( zT)CCv+(0v|9;f-hrF&Z8zcvvQ4d0=NdsU(M1`=C>%KTGup8l$8doJtLGyU&n|1b_~ ztt;lU9GP>*D{q&M;xOlf10sJAKDk!@{w&9+sxwbR)~Rp-8USqnCg}&J)7{Cm6u;o}Wcp<-1`SbdT?uA~6t$GP5{tDmnB;yNd4(b#9Jujs+RT zdper35qXP&gwgdDgVy|fx0c%WHTvJ+pj#!Di(d%%=jT*3F)$3-b|OHf$AXvH!h^(; zpW6l+r1@|yPP30A=2$~)){3KBzCc0f3O7+Odb{4zrUVFQ6>{(kb0f#f=Aduth+sz( zuVrG?v)t$~bzWZ;Lf1^sxXGUO9S6YOEZ)@A^$$hxZA~>@am2YtdMoQk-t9{^J>)V1 z_mp$`>ckoh?O6zp#zJ7*GxQZ;U1vj%bf1WSokyo*@tOctG0of5H>Ljq@QfnfvX+9p zj!YEe&CC-rG#vH6dG*>RM>+=p2%QMF0Y6qSH-_SGsEZklw$0OV=(0TY zU<$iX*#-%le&lg{xvRpkY7YlKc8nt8!hc`Y$OmtF@+Fe+uAOv0`?j|ADTel5oqwKD zi~=Td|2>XeJ%p%@=Rphz4o7`*$ij`}3}bYOr#^a`w~J`gx+tkLL9E_7M&6N%x^7uXkQa28ZU;XzA#jxTvyO0D5j-5A_D_ zg8`<}lt5}trD>&^XT|mCHg9VM^Wy=bC^w&ge1iL#Jn5Q#m&}oR?>=f0M?3*p**|qv z02kW&C5v_gbYT|k4S=_H{GG1cn+g(wnSJxSniP;fDd_&Om1llK4W?^R(f$yiSblMg zEmsj-90Pe;P@fz!`K5g4XTPpNX24>n6Ak+c;-1YV1Bvr~yXffjCpdFXiFxfX3?&AU zGLJy3PH8y-01#$U5ET6Se;ZkR30k?@8vQrH`)@QcW^ynDKm}=}fVrg&Z{2u{e=YI%f|BGN`@AQ8m82^9h zy8nm0_l}FATh@hpX2==IAUWq5f&>Xe4x;2BDme`~=P)3kAW1<$L>MFshzNp;2qK7p zNDiWaB*}v0%p z#Y!V$>uqoCYj5Y~!_-vqtjfc=4FR+MEP2~8hZG7+u9oidD;i6 zJNf#0%8H8G`ir1EeQiZNyd6c|?E`#lJ?!j#M1RryoYMP(^rF7r)+l#-J0({~4{wyO zlN-wRqP-o;I`0<~?mwCEaQ6qrv$q3fEB_@M-~V1VCu<)k5j$&NYpgCpvC@>v1y35;idBY;Mp4N7n*iL_bATNLM z%5}=Cn62x79S2)iYm^&E4oSlDS>j}8E9;B$b+va!xmi2fiv-x)c%r~_4j$fa*1mSw zLuZsb$iKU-y_RaAP@tQqEDAIwF@%G(or45iSWL`X0yHHFdtqsNI~!qJ2Rpcp1VRcS z<{;&9+Lt9bfcDCz47#57?n+w1N_tvsSUn4S`-s9t#H2+eeE)^i66Njy{sOBH z%F*50*U#HNkio~^)q(R=U-G9z^w%Zlf0$y_Lt8&@*FfHXrTqtm=;^(`Ebo_+_}>u>FPnGOk$qLYKepb!Au5yvAGh}DeUA%);WF;R3} z;3+mJ1co4olj0Ft#cD$AVK`6-E&z{=!Xy4gNk{>~!T8{K!9Ac5$WN+Ru+{~EBmU(k z95zDx)-%wXCxuM&a-)6B{e5_K@_fzPf*fB*ulG_+B~m~s2(_D)Hqy>ax3rT0a-_ts z>B+_5ViIr(xEMlG93dfY4kZNM<+y#9aD3W`iJ~HeN8vTYqi`N!Kmnjo3S8C7jkE^@ zGDVG_6)k72X|WvqViQ6PvTchXh7;n!jB)U&pvHy>IyepXfQX7r6`V9wKz9~m({i^J zL7a!nU@yR^#C~63GxGNH0ll3~LxRn~P)PzVbB@hWQwj7#HY1dqy`itQnd!GVMlL8HJC%{NrL!F)aGO1XkjHRspv+~L{2xodf3gkMB8^D~0a z3uHTfv7s@0Q<_Ry-1X?G^B4txJd2Gjs^2VI(yLK6V<}B9`7GOFTh@8ebcbow9P0SW z+aW==vu`reY6|rt*SkCMi{MTj*Of;PBM7Ww-|-kl9@F(V&%YVmeWo!S$S>pa zHSluAw5p)?;N6d_1aym0b{9`Lr#oW5*A%eZc`gmkVn%JNMHXg>PNAJ+Fg7=KJl^FBH>Y) z9!-07$E)F%^G>Syh3A!ze8Rqu5uF4{P=psgDBy6t+s8jZQPY> ztx-9u1LGy1eJ2&C2Ia|1s$2K$TyMK2L4jxfGSLr85xcLQ9D*G`_^8;m^uzHS`p>`K zU%D+lqL1H^RyU=Ww;|gff4vhK0);^UNPZOL7CZ`a15O576Eiska)N^cgW{v%B-mpr z>@gG$z-h5Z+}I-$I1wI!ARYu47av9dXTzRn!(o8a!3ps293x2}AUW~h{hSp`!HGi; zr$tl0r2XV}F-Fvf-#<&#FTt5DIp@6xoEb|%hC_=(U0AzHHMiQ;W0yB*QfiOLA0M37 zf}3M6v*H-S_2Ighi@8ktx4Lfk1E~ufrqJaIW8H;E-7QUp;x)`gs0RPjIupsGzYrzxlDoGUD@3g#S~P zeE;sS;FJV9ECh&T92&=zKFg$g<(a4(FXxm!!hO;yG}EY3MUq&cOkJ-f470R-mktu@`5cNvXdzIgQp#qhG5cKy1P zg!>aEp0RQB3|;ZWfy96?KefChCJj2Rlj^N}{S|X6famy!%p8U| z*y6x#snv@H8|_x?EhZW(qm&mC#NOWgW;Rv(Sz*ueiSkhLG~MmqM@`1lv5n=tLP|YZ z;@TzW23~llhi3#yYg%?Re~}lP@EbbkXdbt_UEDUSD=7ywyv`PI4T5|bRsAMAE`1)~ zLdI+})CXaVK~r{8lY~EhbzHC%WdF!%h@<2DQdX3tDIaYoYF#YrY2S$K^D6aNmzQ)$ zEdj1Hu8+$qePrjg)awQ#KGaG#jVzzts?B?@A~bPHCyd3(vnhaR0Q&W+RXyK{^sIsT zP&pk3=cUc%e!2ramlON|R<8_IrS|9Q{jOr6W}=Q7_OnbrwfFX1gz(f?l~~r+EWdvK zRFQ&Ktwd8O#e*pJ7(}u3UnquuPO6T}D0D=l{D{v%z~aikm<-(Jp8nI3?Om)So>ui6d2cO!<2G(s%ld7p(hU8)p}yQ-!tE)%u}UN zwk){0;j|yNksU`I@qjglT%1*pikQbI-EG&j1R8dvQWHH&`NOBG`nw=HI-Y}mVrf*q zg)X9uK~O>Yi(}HFzWmyd$-o?+@KS%(Gru`jJp05n{{BzPsEJQ0H`IZU&#FpsUqYQt zgV&^ja<7$l&PUtT7_9qi>{wrC7_+P~B4&4TmtwC+mRmj@*ADx*C3D7cm8{U#b*8A5 zx$7M1)xmE}C2#C}k;P5ktuHUJRy{Mj7<4?G?2}q9Br{d0Ikff!K~-wXpUx|?b)zWx zl0S_xk7p)N1cp(AO=Vie79HZ}&dZ&WDJxA`y}h0D?fjMH$Z-zpPf-GGcN#I{(+UrL z_UBm5UDMVL?otYx`6Btsd{jP8Xy=`Ek#6PR=y;UwqwJJht6u#;Hh&QIwQ=pCT!-=( zdd&!GiS9m~veo%TgcNiLBSDt)A zFG6vVsvB89~Xgm7?wyo*xQ2srTer5-*h(~TDjE{o|>v0SmLeWZKa zAx9|ZYkc|aQNk-bo*S-r8Xko9coK!Kmb~)QeQCZ^O7ZmC!U>;I+}dEgm%sh!hc)kf z&iy9dDAmXJc$vz$Sa{yljSDPo=TrsVi_ABPEhAEEpJ++M%w--N6g}{+Y-xM*#@XxB zJ1R6`OKon~jT>C`y7^i!0vvAt@XlVi05vF<3QsjGKhI2{MV{6r6FhdpZF`SbNM6yU z_=m$=r7qoCkcSBZ) zEX8GRCk*z?{j4`d zfTTD7J7ST5d6)hFU&P{qbNoasroRwN$;SuG`t8`XRM}2J>sRI_2A2ji&%ZJ+1Ofq< z`3+kCFM#vE!>q<{DLzi)^)uJB<=`A}l=yOUF}FxNyZn0m$mQlq{$hEvGXJcu$01D7 zq%CmP4WMpzWeTgO9cNWW6 z7+)>5cXyRbAT6tc9li&=*DP@`HO)0LOCk}h(=CR7GWp&Sa&5YzUDsk(at_fsnriVS zDH%Oldpi@E67)8(t+uM=nKQjKj3RMlK&n6lH|*wClmf+V&objEC9&bpI6eaIw;`eI zIs>mBGr|0>1v-3^MW|+pBO3{Z&9w@ezm;Mf#|n5~<>|^iqco%2;kv4xY`60Ub<;o7 zU;gqnW&ay-8K_{*wXYA)FgaxTc8p(OnIp4({B2nU-c_dp1Cqh zp|^x+?eM1MAe;!*@l&*2X18o%(|7TxDvQ0P+dQOZ`GD;(kEOLK`C(N!5zoD?8I))y zv+&lZ(x=R`OusQp7R0P`aPq$}3l|OpG3#%D^>6X$?|`MY^ssXCPG=NCSpQaWG5doJ zxA)}#1+apCqYQ{mZg7|X5Svtf-vwfm)Nf4r|H^)TIir>;))h~4FJHLYPjpg%gZP92 z@hMi~cT4|Ubo#H&xWXy1&9LDR!9i5V!vS}Jf0zMir5=ItePNUCz0I9+cyQLOrxpXC-_nNUA%djGjEtGf7%57?hu{`f_x3WHZ40s!@W+YM!3_ zp+BKhbgoCoXSPI1tFus8C)<;9GYlEhwl$OE&C|1oJvfCo!@Zn2T{uq8 zJU0^N4Ih#Hv{ri~{pd>X)pGi`7ju2;Af>sck1Y76UZf$SVE*tZm^WC1g9rRSsdN4N zYTMt6gqX-)IOAXSH$oVK^q*>m@U#E8hKnEvi)MeX^T7rGMhqoEoP{&O!3qNowZodA zSaWkbdDOL!kK)_k=`v(@BjKX|XbK0xfy1^V@;!3H#n)W&wJ8@PJHyxO=ia_RTxDy( z_{)T!)sZ*{m->6_q6j`X4;+LT9Japg8MhT*jt{*9NK+@Ja~@IgqsCc}#c3-qGG+~s z1oHje^uTf(P81Xf!j)CvO<&l=7#Mz8)%JNiuT2~;t60~kY*~S~R@zl)f##+?Om(CIhek`L=V^O;@BdKYSslulG@Go=kdG_+`47#Tg*3sB35bK#|NI z>7DQp7stfg(>pdKy?<7F~g_HH>&CFSUdrx&#nFBI2HEp?0!w|Q!ieJxtqB^S;w%Lx4tM+B?+NV_^V<(m^3%@rX@fgZZsNYLai<9ThhmIV7 z6>se0=%1ZFc>B>YP}0^3Tri5d3=;-DkRPnRQvM8!s5w*^toqF@L(>kE+8@OYqY=nJ z|G!%hHZ;;kfQEe<+mKM2+S{mL*Io?4H4U(stfGV<1xsz%B%TCE2dvp6C{E{h93m2Y zFkiR#ME!FXewwsPfR$!ASS**26bCEMVv=x#n9S*+m^s|!pTjV0RUcb8Ai?{&=<>UH zViNpci)o18aTf{GuMXL;e6XqLXtAN(*?v*MFN1jzK3He}C=Z3;5uEP8Aowt40LKtd z*7U`O5nLMYyxJXWgtR{y8N5M7;zi2+O3QD7yPu<9pG1qlEn@P!>=?}FX@jUva^lYF zR?bgo^1d?^A61+m*$R(r{+Cka-$Brv)y1JdZSINE^{{M`kZY|z7cNx8FaCxv5cHJb zig5Yg$6(11@e73ftwnr)>hQF(Xzy%eYc1;OXXA>p1y{60!7972pN}ZEF!=A1KAgV+ zH4bUxj`Ta~;=GpI8_C*ut(Qm4KK(Ne<6{10)K4LcLqOo$qvdlFkuyfl3)7wAX-v~* zhzh3{p&qjX_bxwPl{LBgU7eJtq6kfy$4?_-lluDd-R2m>NNHE4RbXl5hw)$?C1etj zGwIUwB&U|CqwCHA(W)2W2;AG0#$nCDRBdQo@+hL|iIxS2YNFw^zfsQ@732F3BbiNV zvaxW=m%@_gdX8gx&VEc45@=5Kw%Ca)S}FTp-eWBrcZCPx_HJ@)!uY`#6W>Q?pVBRF ziL_AcaiT5m6?`1K?)S>-##T?!^1fK8N$)Ps1s3^Zb&vh1W-2?GLpR*q4%%l6Vzv@C z=4YHLZazCWF*yW^ib0L z|EfbqLH_Fk4FtPD0|6Ikz^LU7?U}d5dT%m6e014OD)`aryziZU6MW<1LHu&mx;=VM zDLboW(u$@HXP(bxt8H|gD4t`#wK#v9i0>HR<~&g+VUT?gnORnvT)L>J%^3I3=6SKkxU$ZT zFt0TT%t$!ge0`7VNm$i{wOiL~_o0o6d2u>JffJZtdVbdDIa-0+%=B#+YGIT{LmT(r zdEH8V?P>7h%n=I9Pm%89bo0=Z$%7n+C42|_({hG(@`p~nTFy$sSg-CpBU4DYMoIs7f)ahj`fOA zTe%f#*z;%(@!Ur-z|b0Fom+G%W^rTfz5M5dxfD~HCzheN&)KGyI+-k}wdtPcrH;?O z;{v%BC5W%l*^6VMST>--BqBk(*k{=Dkd$aPF@sK(jG_MIlXWa!bI8Rj<`HCGmo23S zPy8p7CLZvMBW)JB^GA7TjN4~J_27Am+Ii2%ZUz|8E zEHgAWc6d|LJBxNu;iW1v;4PA+alq5APhEe{>ncFmBb z4gI8vgyH^Bpa+#HR+xrJ&wRr($4z*x9NI9{*$QqK;y^O zaRT)r3%N&nCplMDZEDA&co%xHUyZm-8}jpu5r4LSH1J0Qe>Ct%1AjE|M+1K}@J9oG zH1J0Qe>Ct%1AjE|M+1K}@J9oGH1J0Qe>Ct%1AjE|e@z41W=QS)gfElL0>e{GUKizQ z{4m?M^{G3TuEYoj7&AsOz&V--2P|nhg!MZ@Nk+LYzA(~3qz|t~+HW`Bx;pJ=tgi(C zZ;-zp4Et{$?X;6YNZZ*shzUE0JJ<_L*jkH$k9JB)2#bqL+k=nkIao{COMsHyeEzGs z|Mbz$SgBt(NQ3{|Av;OL>f<#Z6cY;!ZAPe|P9H!O@pS?pV|2Ghxr%`6+TgeLP~a1r zBF>)nj#yPv+c?({L_tJENJvCYMovOOM@>&pM@>u1$jr^k z$i#V;mX=M3jgyC$Ux1&1RTwVJ2j}MF=fgGv!NM-y+fJ2FUh8>}VN2PC#&*4Qa z7I{05fK$2Z4UIwX8ke|@cN8HJEgd}rBR3B(AHRTvL-BO}m?(k$ErcVSYhjQE^G>qo>t1&uZ(Q zzj)dFwx#u5+xzy8zW#y1q2ZBFqmxt9Gqd03<`))!tZ!^?ZSU;v?PKMF0N@wYetmvQ z_AhdQ!vTSU&lcg}W95QC1HgYUN*r8v1l}1XeSB*#Dh{zo0&3;kc~x%+ImHduXl%TD ziD|6+w`1IGDm958bH+G z9QRj`sbLH{ntXg&pI37W*~QumAXz|??Llo3t~L(!yQmbg#iL$L(=fRz-89kCN4aRHS#lGn@#> z8eWy^Lkk%|e2^sB#|x#Amm+Zy%K}G}n#Au?h>?WIgdcq+Ha+Z}ns)hxY}9%qCnL}fOokli}6 z>EW1VBLc*c)Vk(Y)J^;(b#(jB_Vw8J{w53}2Fmm7plcID%)9`k0qu>0l5l|@hz_pB z!<5^Bee}^iP(6;j`btQ$OEq!a7HP4usZ=5qUwlpXTTnOs7=?cw}es>Z7a2JiaUt_i|q*z*aN$LFB9rb%Er4s zeDDwrV~p_CgUlB1r~#&8=Yq4Wcrz!)C4ivBqiIdTe7*O?B&kTU^?s0&4%?!Y8e#-_ zNnDfQu=~EtiF2CAW(E9etPa0H3U{=!hQ+B-~}Zw zqR>IfN7G0uRoG)QyKiV#Y>RB<2%G{tSvA;OTU(z7}Pvff{ zS2;mv*|39M5S(TG9JDC4l8C_yHdfFpOD&MCM6XITFxhR7Gt zgBRhx2MO89Ft`|^Vb;(vJ}9Ft5za*y@V6(BwES56ju^}W9)V^7rzU93!JbKjnCQNq zFt-u|yQ}s%uKa-^L;?3O1n$AY2nw)k+pi~pc@06GCeQ=ZRY6iOTqnZghGLoX1HG0H z+QRDd1EZRT=7S0*zf`D!;DY8ZE4p<{lh~Jl55fn%2kKG}K?=18MTkc#fcHgBmtY7= z6Zjx&5f#(~&p>~se7&%*hbxN*&NsNv8wV>8WChT8pu%UTtq;wCfo7ih95%gKfEy2L z?#>BN<_wf!oj^sT=XAoja9s7e1{k%XCOPH5fI}N(iz(+8l0uJ`2v31^s|Ofxo|WMqco>ja##YH*C{6N(L)?- zhaCH&xfcnVV?|8%W}r;s!Q~=A0AY0iga- z@2*8uCgHcn3V_9BzXvwW;>3Mm00CR;fy@*)&LK&CDId>*1AaJE05(zqh-S4V^x(Yy zdA$K(0e5iRIN1ec$(?PeK1S&8=|N8UqTht-UEbfEN+DY}oY*M(*;wp*xpL}NB+178 z;Z2aUTySf9_tSe5IYy)w$Q7KNTYdou5?s|Gcr~=edY6q{=15}}iJyJkSO{oVm6h0L zX91Sn@+W{Sbn=wD$B2;@|4MBFBUiC`B4cndtso9lU-3W4ArV zh()&8NXo9`@*c4UL<~Ey$RFtsIsi36sp$T@{eDOd0e_^;=kKf)n(g5HduqcehCl)A z;R#^YXb#kYwnilZ(E;aoYb5Oy2pf&s%FM_pw4mtH7Wp{ zpsPtftpIO!7%r4tdY=dns(b?Q(|55k&ya(b5P3AM1AEUpj=|e&@rne;Tp=p*29}nZ zH&cqL9b-L{3{u@*LgIx!#+NC82DSBocFU@y10YgXya12yPX-5%sHBB50LGkG{?gTzxjhzIyFvPxS>~wTG3qp`) z)#UqCn)o0VQ|J!p;TXN626h#P;&IHuh=gFm_lS@3Qf6}|E~M01bjv1%91Mumf{u6h z4WXRK=1j9wUtv!_oyWr`F+>AReDr#_FO_N0XV8LLJ6(uG5J-fsfHUMFiXa_4$^Lwv zKav!nZt_)JqD`S)0AkS;n-UO%5@iEEK8j2U;9({)vN;kL#(VvHxJ2{?O&kdb^$Fk` z<^*K~r&HgECAuXfXmP(JNC44EEfb4G%t&G+#Z^CQ2n`|zP$1uW7)g7P?dJ@u4FV2z z(=)7`DhuFz9+Lc8A+0Gsvj_AN53HA%6+rc1+@S9{L7xHG2y+&S^_BA6&>loh6CV_O zD`?}p$TN(flaRJK1F@O7FlO@oR*c$9Bs&I2o)j>8L=!C$%gx4Y1jpd&XDOfM+yMvu zXda@nXG`B5j3fHsxQmVIqv9CGiagt^|7;I*k98$H4fk#P3E%?G*|W=g)!9Bs{M_Si zaN6ny>0sR_fa4Yh*4};o<$(cx5SAP`-8M<>MTm&U1G?vra);35=Z~_0t3h8jTiM7t zk1G4nKewbgmR;FBkhu`h)uo1Le@^+)P6^q7!Wg!676`g(O1@`!} zvtR#tJlJrgpGv{MeLTFNV?7fA2B?r^-kcW&fFqW!2r_p9RPXmdzIp6e{8|f<;t<^w8YQ8fm03usXa>(@o_Z87oVL7b1RmJ1H}q}VdMEi zJW>?fF%mx&+da%NW5ZGUR2>fJQw`#7RKFVs9StiCFu{8&Gj^LoIY`1sF|(veXj;fd zi)PPQHKcfp#D#I!ff2DLF*vNJLyU?vkMtwLx5C)Bf^ks{2B!-!&N#9zf}s-lA(D+M zNNlPC<2i^$3xdH5R9qmT8j%0UM=>|xMv?uoc%gg!;RjVmlj;*7r}%hJV$Y21qCr;FEvF-QxpI&)krwh&m`YzR#O^N7> zSbUKBA^}nU_D#_19#c+}pF|&wW6t2-I%kW^%1~vR8m+%ihE3Z*mX$@nZ=#`*bic&s z&;8jpAl@9)R5md(^|S@zwHE+2w&(Wx2EyJQ=P?MThHWE``M%l$`*{VFG6l z7$3QP59y9opxWhZeo|&WUt6t{fB$|DZ%XdfI^q+s)KK-n!Z_$W-gSz(*iyP@8yE+f>E#Lx65#qkEk5+wFfoB0knvT5w*@QW{sKD z!FQXivyn(mCScvsj$$|@PQ=!&R3 z_=3B#q=~n8aYYB#;o)pW6hmN}K!nu#R@neRjdw6g*d2|Tx@YV+?i^1%fIkls1&8Ad zF4HA%5GhT^Bk{9dZ<4t1r+l|~AcMhKzdwp5=Wi&1=mlvAPxPUg=R`q__de(WuKqRb zDOcsvw=u9z>u&0%2=H#Su4LFeut7JDX5*zn0^d@Ib*wd&knLX&aucCk*wRRRcvL1u z4_nb`s8@pqvx>+Vz)=1o{0W!@0RMnpENGDeN+F83Veo^tnEigF^&9Hp0R1=a$-*rk zDJj)2k7NV*-WSc1pB>|ea#gR1+^5YeZDnqY=j#X?8WOW6k6y_82Kdv*pBog(DwD(T{ zbkJOD7~SNJc;UyQ6l<;y3ek)v%%#8<5u;PL5VX`$5PY^i$N(A}f)n8x zr>@owWs+h{z|si*mqRD0`6=2f>8MHodbF(M`)`n)64BfM`@9ph0x_b~!^Pu7U!Vu( ze@^s<0ETc99CvndFleIe-cdtPfayU9S@LQ;5*tSmB5BACb!-eMYMOoyJ2+uce8I*l zfZdYYM$2n-R!Jn7cRx*zof-;f?<&2<7FcsDLIwhY%m@FxL%fYGXk0zVLRo$8wZ-9F zhiDGg@kU+iB?}Wps%6_w=1=pJB?lS-Pi6Xohd-VRZa+H_cc>DPKU?8T{CT$toEV8k z6xq{{1hqX4#zuyy2kQK#nJRB(EOBzoS1G^UwZ9w3YJuyv6}WSrGwRmZ-H1sy=b00r zEip+U`B)4TTFaWtH~IvPA6)M@-H1(wxe@cD_TTf^ zqy=4I+8V=7(vNTDC-MZ7-CCoY!YiWrteN!g-289=LGJE6_l+rjnF7md*X7NLPXR4w zN@UX;imtFs5sbTrhd75l6#OLaAo|I2hQ;yL>+l2L?~0plB3=jVJV$pwc7F-110x&{ z-RaFc$xbZqJL-=zBnNnxbJ+VGm|uL}o$;4BWD+}$NTF5v9*>?h zJqRFQ6*a$TM*7+1=40Cls#xYDH8pfr3SkzWaRgWh0l)wj$RU5R+egU_*5Ig*aN+D= z38GEy_=y3fa|(eIgj@w%SQ|xBx5!3Cp~3Rv4OcLca6q$^Q&??bM9zcggu~)|&;v8u z%NAWi63$9J16T}0^x%|t*^`x!jDTZW8(4?I!WaZ3gmak^f!ngvq?4;#x} z6UZe=D7ZL>>bJpJ7%M*A_W?1x6f+V{mgb=E|0MpRecl%V9E zh_yTZ^5kkRzo~r(`A)FnA%5!7Xs_;z?9$J+Et$HG-alTpyMvtVZ0(NHp_d1nBXnE9Rl4dxWMu|^2H8*S_2x6}$2oL+ANU^JzP<1wBf z>S1mrg^k6qu#0QN7r+vQ#pOH<)((;EcQxOU!kIwxWW#PwjTwyK`5^7cI9xVnBt_>= z=}k8TA@a=UBd|^<)(VEuuDPB)xM0=2g9v$*)z^Sa1zV%|84Y*tlVx~SES)pAPqC~S z`|zY_8citOzRm1pU0+o^wMuHStI=W_tnje+)!GV&W}Luc6NNf*>+nrMl=g@B7bm2Gdr3!ed$0P*rWKuP9UIW4-DIXc3y)W=pIz&hX1V_2 zP_WJWg3my)x-s)Z@BPNO_arII*GCQ~a-G}TJ5_^?p6K6bkiR^|qPUwr(eSj_p8TBW zMv}4O*zu2@g{{f}NScfy%F?~{GwXqZU7&s^7!D<7w=A8bv|VY-@Jj9=kX z(_byb56mQfv8TMbO;f;clv8EOV-P=<=vvAaMV?oJYW&iS)v*aU*3;Va2%MdL)Aa-yjb(S}^=Z5z&2 z<}WpiQ_|d>p5jIOO+cI*?S?_0^PbtG^RjD|J^}3Z_piS{EOTm?u$mg0leZ1tUWUlr z%+V-*o>z8r;j7;r8auYqvy^%`V1Wzz>I8^bE5h+5;e%cYFN&n<1Izgrjw?!_&%m-Y zn3U+e&{P2{gKDxww3%euK#G3>Y#z!Gz6B;}Ef`gBAt~^P59*_dxa!H^ZVzQ!ATC7h39%qg6?AEqURNsL2e;}L!Fd(+J@@AUkOx%8*-y&|r2kvS7< z;`(bu&Wu8I=5AAgm0bcEmzI0Q?|9YVHGPfjI1Y2R_n!2)H+1MWBnQJQ3~{SKQCaTB zS?N_0+Kp%*-p_16B{)~mc|ZNb8`lXbb+6AOCbzHYs5Dzp4a-@UFe#EP z^jmy*E@EWOiJ#{$$M>>{e?UOsznVJp`8&3&5_wn1M>cKMlBr%`#B2(f6Q zFlXt9&ax#&342jdE{c+wj?Wpat1Ku1qaWmB=GBAV+mzq#Kb01x+nri9QLnC6P|KTA zzZ#oyh+j8n@sU_ChCDpD@%`S_ZkZg8%~BNW2L;AM+2PQLN5ZdDAxZ5_baZ|E>v_yx zxl^vb`rSP~7WpXmK(C9r4xtje_LHkOhNSzgsGLcjXB~TzR4(H0(2a!4$PJ0*nt0Hg zEk54T>~Xs>=V8(O>Xo`9QTU3yuHBUT&MTa7WRv zm-@-VyTh@sIO&hFW3(o81iUJ~^%8 zt4=Rx%L7cRE4!HXw*`V@nQzXRuwIUK4mr2n;hUY`0SmsXz0Vzer;Q_?qYAE(IXGhOC^y*cYHG0wNnTo1aS9mcm?KSd z!KGygGnk`a@EGXf2u4z47d=l+9SJP*LB~-9V7ZU-Qe-?o8Z(8a^D2O@N;KW3mYsds z2N^dw=!eJ^?qKkqtnZlvx`+l8xbC-vB%-ex)x`ss$-q>OHw_Cc7gmv!8P?-y`L}N@ z2@a(m&u^Qi?smv;6;VO-mY5v-6Dle~R6?<_Y3`!WXKn+^3|Sy+~ZScupr`8K@w*kgH3Oz_A>xKaH6@GD(=r{&}T zYWLuJDc!(Gp04h81=_1<3Q<-9q#)y1NE$D@uv#oO#P{&d!(z~GN2v*!o$FJ7zX z3RFxC)je15-`lKhran=xyLtlDOiYfxZiGZ8F-k>HDey{kaVO*o`9{e$Ml}+89J4J# z7neR%uN{)%44)52=>|?O>z2;T@0+?7+IB`?O|J26P}Es_9p_t4?hk2v<$ zHPGcPeJrqhvo~4p<4fP{2_c=OF6Ao^HO7*kCNEja#I@;CtUQ%BH*@OWu=gB%=Vsm1 zb1|mte9R5Jhf`1LOK7f3G&g@kS9z1Fo2Bp*HTiZ0Q~NNcO?Pa`%*7-;crPMi5irKi z(&S6iZAmG+{wk5b&j@_0qf2(*n=ELv1G=iP$Wq9*BXcq$ra^GH$<~Oj`d<4@%*@_H zS3x`m9Lg1o(K~luO8Z^8`+b$OR_8^hzy83m0w>L-Xb;}fLRo{7O_@(cC_6{n4XUiY zth?8=WEws#HWLZnrTUou^7~!C{3Xh`3im0evs8&4Z*d%}HYJz7A`XWN4Z{;ATPDk2 zTi+`h&L+hW8k7m#&{+^*5VTns_w3WRT9t}@H5A2nv88`_~%i;3BVn;fCk+` z69>V^@GX;MgJ~#*5RB)6@c{@8oHhk0g7&}*aBnKiP3x#;7649A{u|(Oa4Vcd50=j= zjUlE6f4l>a4_f9Y0StZ1Wa<7<_ij`pE|hZe!bPzK#}~#_SKmQC2yqfWYgoUszHe0M zfRec;$fCmfh5AFA9wZ)^eTGUHUiVqg8&xDfZZL-}G=9=}3tz~g9|*M!VBNnsE%~gJ zvp_rCMsYlx{NQfqt;Z#Ax*nK0Un;nx@zAAK-^Hmjyr0JQ4(Gl6?qL+eq098FxxxMW zW4ZcjAzW#?@;~s=zGig3RAXv_VFTmzVL=QPoVT*%iNw=(6vBVh=F@FQ?}z7l&6&4+ zHos~c#F8`d@pV2-=^atQQ01C}qtu57C|QY#mvtLp$-?81de=7K2f2j;Dp2CQI^Opg zGTj2yaqkhn0(z&zL?e#gM|`FJLfHAY!IBMkqY2#{-J_(f60CspL0XwJmMFEh==k!IqnYE4oG#Kc*+R$UNlDZTSV-1Z0MZ|9xwYH6spzR#I)oyktk z%HY}ISAQE|bk~YR>AkeP)1{B|j4!VL@M%UIs;-fCJ>q!a@Sb7$bKVAU@M6=eZ5aPq zn1$u7?Ve%37gIKChsi3Fl{x%DxLhhd2^4C<#W}u1)r4QQ@V(w|N~Uz`g9XtT7%jNi z39d95fopc)H*>%*hk!L&Y)#}bxDo@6r0l1!0Un}>kixLj6(}4nY?)i;B@wu2LWm>> z3nD<3CdrtozKe$0H1ebRa-EV<3PZ8^%WloKL;Mq<(%71WvF6j>9r0a88RePY#l=fp zHQ}$x-GSXgOZT z!jVUk&uBb5m9DJeHuGSXNTmzL_Yo$6JUX#2u~tZAdIonbu-s ze=}F^-fCa-0sVS`diA?YIPtnwG;!{vzC5H#v}YM3L7TA~xi-*h9iT@`I`yErO>!!i zdDo};1C{w8dz7~ro1R_j@t&S0%N+EjleM7fP_{3;%;JGC&&Tk$(;88aztd8cYPp+z zmDv7XwueR@dR-Iis6v?5P1#fpaP7zw4J|U&JAD^+NDAa)x}!NF_GAmkuToZ9-#7v%PGcyBU{7HH}pE%r#xh{bV{*C5|9O)kNOH@>=a_KTzC%$0+wOu@hVUwkJ#JD+o zu```$`QAr~VTrNZ%@NIuYr3PMl`H(Uz8m44JQK6Ief1Gf5hjhIQ%N3`Jq?w+%&%`% zER2rb8C#Hga_w`DRLkU(F!H=@$+rdx3kv4(9~O(H2TZTOs3;!0?@|zYcq4Y-WLNfk zjIl_x4c~#LfvUAk;;uc zaMcq43wo4b6%bz!0fzEmEijEBH4DkBunD35)Kr9H1TIA6D}oazz684M2T25%!Ty=z z!(%^9hLFh{H#R|p51hEzE9p|Y!qyX!Ur+2nC{H;lz>nRC!B&91$;F|#S+Ins6)W>R#I z?7l|EMe5p(SBC08E;5Y1Uo=ijYGH{jO+lgd>sxRF7<`w<+I9yzf-(vVPeD)BA;yu{4U@9XPoWd+H|i=``}k1tw?Ys)^K z>-)NqAYsj~tMR!p{{%SCf?we*zBpRgwe{Hn^`&YP_JpO$%CuiUpAoJX`+hG}4P{!g z*zF&dd>|W05GeSj*l1wdXh>4xa^aWfaFvAe@V4FL7j4eQ4tMH5(WyU}xGxfT-7wXt z5k;t=eW$7tv$a3`cDl-g%JBZfk%I&>T4`th#T{u@s@>+#TK|i!w~UJN3;TZuNfAL% zq#2PEq&o*i7(y8725ISTh7jo(=`QIUx}>{1q@}xi2+#d{o^#GR>#YA9;KjTE*1h+= z_jP@~pUb7TS{3*kq`Xzc9`onJ#qd>CH-8B&M&h4$k@w`YtyB-mIYm+y+y`l0WC!KS zTd_pUm9_`56hasIsC=}_EIf6eJM>LWc-gN#=M7}vNW)fXc=!tm+3?1yio=mJerHe! zb2d`$&?mfyuET;+E*UwA)=nuVTzUcF0&&n~LE1M&DtOfSBD1PGn3R0PBW0DI?qEg{ zxx&yZCvbi1%O!3-!ez2dv($Ub(}f#;@laL~0+7HwSH2RZ33*Ad=g zg)RCnLbP4qx0`Z|AEzMrJnT;wc7;ZRSfjhyOf1b0qe9fIf5%O|>;?Hp3VCj}*VPwE zLXAcriS9o&o!B5>kq|XCz8Vb+e%gnCoQ;d(90?=ZB0qa$2_))zNiRGNbuuxlxZL|( zDOD-e9_4HD)d5HJxtCK+Se00aMOnbgv2-!k9_H62aSh!m%wTq#)vD^`t*sA~FS2E5 z(?c_jGy0UnbvAz08CpvUa&N(j7uNNAgtg_>+^sL{o3s72;{vekgl(+wGERuE5Zc{uhwpgyE685xO47zddoe2&R`)Z;&b1x6bOjb9 z)<-ei^8SH3$nVJmejv&PUUpDC6LH^!t)^1iv~dJ&G@UGbh08!#)|#qXdR9aP`uQYCeJPmya(d%reMZVVsI(+x1ai0J7A z8hAMS`wjywGvV4|j$l}HHgo{>IfXrDyfUwu%*u|63qIdx_S*~Z#;lM^Tk_OoaRxG1 z+^Dgt$=^38h3iI2YKYIBF8CzIv>c)Qa;>#v7}}Ywa*Ebc9s`TsO*6z(`$F~j1&x%> z*bIB-N4J2sazEn^b9f)HEg5Cs0q6wf1Zd0m#Wt2N%T^*#V15N!RDMB@A@o1MYX#8w zFvo$v!5hO+zIfFZ=vxl#TmQ=`Rhpy8sl&Kov99Q@n<{na;LgUdUGm4I!cTTruADmP zN8uDG)eHRm9q$_Z_gs=2eFM3kuE=McrAo2ceFvVTvUbT{efh6Toig105mMk)9gd-5 zsH@{I4Ix`=JTU2vM2ELn9j9B6g7h)pp35P;^nnT_B}rHpLeWk z`TahxTZs3;1h!!VrS89EZ|Yhl|DsqBtF~iT#|S+ld1|Y_Yj*R_`*Q<0Tin<2De824 z25}4_#^IY9#^l3080z0D8G3aJ_r-_g(m1DL&=y;QN>#he`bsI{oICM*irPF72m62h z)(NO3MK`oBO4+T4+YI7dMvulGr2DUwWwqXBQJcaI)=M>hMTlW-2JT8<96(CFMjXQ` zuU_o8-hyErYwFP3BpoM@&=5ARqQ%yY~+wQg3-^^R~D$m_;+>#xD+W$4Vm_KY?yD$XrnAc}=o$ z`HIV*yY+0kpM@lwKdW0k)Z`xjp+X$BxkAA!r~Ujbi$+%P9)Hji`Bp9|q13w*h|skI zrAX1VqYs`BWdB0M>Y98<@#@P>?yd7b5N+W@@&(=GJr!TcZdjVEav3I`W)Yh~%WZfjz-TV$Zb-8r8ws`rTVy9l?*7Yj7A>KAvv1{YjZceHqaxtFn(F_~_ zH9x zvkvWkn@5TpZ_R!-)*oJ|cgzrRmNm{@C?U`93|0T8g6^u46&-b<5{hAxXZR}$Yvln2 z^%|=!d`oiHC#^beGI;%z#z4bu;%&xQll_;xH8 zj~?G@`Vs4+0e#twmIVx_@#Dj|GKRdR*T=Bo0&ez zQc0lm3f{en7tPu}tAeeV9Nl}yK-$6LcRGK6J|)92n+Q}fF)NH%6IIf+)M=Swa3@`a z(G>wkUv47o)#RsE{TZ2g7_YFu@ZbS3mgE!G37`#4v*Qimw*az-3wq}p`-3Ud@K7uk zhp#RdBu9u_Z{#mdz}5ob#LaL?5Em>J)HH_9$Dft=#L8Ae9AA>gj~2lE7iOoFp0MPp z)h0Pk<2<~}6nr^Rjefzo$-U#jv$2^|E5#@{q6)i2rVqD_4qcT~c}wcdhI+hxDZ5TD zla)N9O{IWyba9(t{Bs~{3X!!ZTKpRu5r;jv7}p7Td{omT)OSAr9`$*RzA)&?N?$oO6uG~ zPsO~fw=#{nOaPz-H%8qBpb2*_io}VR!%PCM%kQxNSocp=+1gXiuAW% z4Z*kzqRbLOtgGaoGDr1CmZ+Fl-ezbaX?e|^A+ApPKoimI#VXSn?HGS>H}ABrz)Uzt z4LN0SN$5h7F}~;t&7P!%%rtvpSj(=`&U%6Kd-L3EI+l6S!ex)3t_IPT16}eX*;X4d zzZqvtx}=ltdKphj@WXj*j*Q}e^%|VpM%pr*@*|Gk*3l2@u*TINc3P97YGLd8t_g}7 zI&|*8bsx>P8`8`|yZg(o^rJ49BaHCla^`lg+HkD1G?aI;iBG33gsL3juwVJ|A90^$ zxjKJvdFhO1)C~bZW0=2862W*it%ZSjpCy<6^SK8ShsYw4-;v`4y_ zWsrkxiHD8Xx&CLjx2B0<^Y}5YWfoVBHW_5mTdN&R2cj|;AO~2DiB`$C_7T`8OWD+- z{*R)t8XgK9C+pX}@<26P*%G%SpLAqAJi~FO1-}NWW@B4;c~Qu0_eJ;FU4XIq07YSd zzw?`No6Ps7ZZV&ObjFa?zhi>Svc84%xI_!sw*7r1uB9%{R#ef&DV9|A_uum}K<<)w zyhb|b?Qtd^SuYmj_l_aHNa3Jnm&S|9$CM+7Zcx>^vNl9ZWS50WtN?wIV7H*vGqL!2 zO<>%k>ZLFCy7D_F$pLMe9yWPNo6+)n%uEE{4GcEXkEIdgG$ceudSpAbzJuw-#??B* zB6uM-`c&eN(w9A_1p9~Lb}`l(!LE6oeZON0#J*m-47-P-$o;a|f#yl#C9?2L%xbTC zzrO5EpMd>!>{UrJnWYCR6vU4#eM81Lg0=h&Ernui67**|(DyYj^WP{x@t5vld+$Ig zvr}I{x_0iFI4=Cx@|?knt&Qe5e2}b6j3QDcfN~QjV*TGXR{`38grc&kKGo4>_A2#?0tMe1B$qmS+w z(z;dE&a^d#0??#6;!Bq2kZy0PmXoWzfh+YLMV+sS#(QO=?d|_S49!->WCxoE8yB9G znt_A^B3IL3e77L!-zSgFJ~?~ODvt(C1I2}i2ow)I{C6z()Ots(taiC?ud+s$fzt$@ zvC#daZe}<*Spr3H#uOaE?ym>*H-G$I6N|``PC5M40w2wf&EUk|_ia64E)=He*3E$j ztPk5fwT+CheZ#eY8Sez{tf$I8>%W)u>T%V~CATyyyi8)C@E9HU&S#MKI=z6#c**+x zI;DyAul*M1hw^HjXl`mz&$a2{9#3yyE$(VLdCagUyVb)S6~!T?J$Vy)#?sx9{dvn$ zskZjELGcg!Wyypv$Nmxr@4|Zix4LWJb6fNQu`C(lGU|kyVsiMrq@jf;Id|b4pBt=w zkfy*(Zk*^toQ#$OOyn0g!4&SD)rj}#Ghq)n3Y@-qy4}?c(f_TypEiApJ*&YF+~}vi zchWsk`8Fp}`~)}Zr=*Gs(ur}fO2nu89|)uR?kcTkJ}TqN{XUMPAim&Kj3Iin4(yY=K+y*%{&*;sL(&s&n)S>;i4?WHim?C2@m z{xYzSVp7XVyaZqqvzNtRrXAaAW+v5A;ms=N=+ zJ7xE`uK4QP?`fENOWPEMIPyT+WJjirWk}hNyq*RNYkwXasHAD9f_H0k3TYT?8mdcl z;>{R=#fd&#N4#MK$V^Z_tnb^CW}r;)AE*BgV4R73nWupwKujqO5i3n(CXUJ76sS`i zl!s9c#7Huq{)e0z|A(ATlFpD}xbWa?k;ztI7YG!iA0dNK-vKn}={>DS#Bb|Zmm{AA z$v-Pa_yuAAn?@;sF1$#FB=`Y=&A&KAYzA?(Rg7YFh(0uRP|` za~f=LfZG3{(E} zx6zPcJKLwaz1hKPw;+HI#6*r-l+dP;e9!_8=gJ2(PUX1 zA-jh&UI!(z!IQ$*K)*F2-ub%IXm9gLwaSAkqeG$yYQQ{5axc3S_UYgc&F@31-phN- z7>nL4+2HYI&`p}%*Aup)&eUJ|`o}`R#viXrZKWgT6C-e* zKlr`i0m5VFQ&p{f?|qE8ba8-8#(`&Af`sGBmrKFmSg9Mtr_nqaBtopHa}}Db8cF~D zzz%e*jw2KyC0uDnkJBJ$?2J+mG6+zUTa;thZS8>cw1hp2Q_hPm0-go*jxJN~lp0aO zZ2F@#vooGCC}LH|*!#(E6Yb|vsR=<^*&1CXD+>z`litCrUpz`}ee)Xm~# zHZE#u#{)ipM2NwdE!hhsseYB|2bCZ#J&0ixTJa$dTg1nKY({kRjRP$~o3`g}%dSQWLr#kZ84cz_8LCMk9ffB4-}yW>2s zR%}xIr`J7ivD?vVo%ysDI)(xp4cn>a3UO@~l#J}D(yED!xk3p~J$ozNq&nuQI66?d zgU0Xu?IJm+gGU{GAz;~y%AqISG6O!i0^IK{JGz;?KJPq|Stf{aoeam_);x86XY97t zuTxAImG0jv%7Ul%bh1n6RSi$4;j}DnjXZ(EgcnEAr({1oPpN!F*KB^k0MT`^<%Zpw zBR{)Ke7cz&r8yBs#K(faAP!7V#nA7Yp_L->i)nxQkG|G{Tay8zVEHSvncAyIzMrcK z$~UTgwA1g6tqWbB+RC@7*>@|(RGYS(LxYNmT}iGxMBF%e-&L3WTaewUfADE1$n=K%t0|Pt(A&}(+ z{SQun{EU%_saK8W@bftUjK5Px>&yiSDlnnl1(kxB>=(yq$mCKB`f@m1v{A~Svju>S z1^3C=V1i_}*h`-fa02S$@Vz!)cOKucK_6L=NZv&zzN_+&PPf0|ShqpzYCqsCckgZ@ zoC)wOsfp8i=dHnqwM8C@e|+2E6yWQ#`icv9DMQqPe{nz0=$FUwaNS!v-)3~P)?6>g zgysP_tUQ5HVDyE#3u-ySHD5Qp(=OoYQGOMHot+QvL>g4VLN3ei{Mx@}a0TtAZ2xn! z?P7>mVeG?VWVmQ>uh}&!B6$^(!qi%10WK!1dIeLfAA^3!z@gK+pY4#>Xl@T9UbFTM-+o!xdJ01CEw#`0m zA~CRxg9#Z%_zwc41uC%2%K%TYU!?yP(}Wx?rmA9e*9j=U9IWnkHspr>cgAm(l=N9~ zs_3fnb@1)V$+9^0VCdOtTua9uoLVNZX-U1>htDCM=p?N+H&aIR#3b5fNTFE~N_MZ{ zBYV53z&cr!O%-*CfpYaLwXUJ#pDnb@j`d}m_y^MS@KkfQue7@+ZW@5TTtmxvVS&p5 zs&@wAfzV%IdhqBLGH!gX6FnNhsH*xtPZPW<9(I9Fe12}DWS#UUyA%=sPV}kPTc z7{ex33&cJ%9DA@_HM5B5nC$1mf%^VodNY<|oBJK2QGfDi<)G7flX;}{nT*@8J<zA;k zXAF@r;Fn`U{f9VqRYuI5{)R&N>RhM#=z)#P2Y>$y!|erJiuck}9sO37d1`q=-)+;s z3#zGXxiL^%R~L`pGqSffJ^Fl8y3dDFIhGa@qBFo93vN76PuFCK%1MSsOH8Lm!={qW znRb3GcvM|r|D6r!{qacktUHm`&JpL9gPfXEcZ({;PULdp z5Q1orHGhtP<-w^zRV+QPo*PfObMo5NlPZytzpk*X@9&0dRG9S8h&z3x3^Fz~HEp5c zq9Qc3TJ`5ZbOdk^u&C5tf||3u4wR^I@ZLQ{SX`bBS!MCcYD3!2&hh9>u+>;p9KkgV zKN?#*!Ui*a7tLd!&Sb|C3#4$q2FMAaJ`B6?9Ow_6%BRFOLTv_(kI7Kah(r8bzeN_{-bEeUvg9UdTQQ$VUJ_ zD?KUYpkzV=u)P;b#3BEI^XPOy5(~reVf-@hExEziyC+oO6)h~S92zFVl+p$FnPo#n zx|nx%vx*dZCxB?Wv2@P}Z6@EQOAyBs+0jSTo7^{2ccH6Hk1KkWZO^z~^O0X6utP*d znd&EwdbSs47>`PXDKDv81H97B{hV?SzgC;g8UNXtMpVR1TW@`-Ii6IEG z^%mXlR}z)2XOdqQqINtL>wF}l$S%^m`_$ zF~x@Z$v(*<%e1pNtzE4Q?o@EallX&0<6em7j@8FPDUSGK zHAkV@$oy#Dim}*v&0oRO|3I7BXuZ@KL1LG$9B%SQ)zxn>_Um%w^`G1rX@;pHG^UI= zI*3Eg|J)+tMAnhpp`BF0IlGNtfTp<6)54|H>+n*o*)DZ=Qcdk)bAk?*3_LO=CjJ;T^>WBK!CNd;H2*ESgyW>NM z^paWoW~DVxVM(IS?EiklFDm|?K%8Z)+r+M8b@A9WtKWCXM4u?jlF?Cl?LFk%iCT%j z$R{x3N`wEROr*@Kz8_Ez_t;)`s%U82IJ?NDa|ep zkF<4`a6@?8nnW|KfOl={RVvHC156)HQ6W?=D@8|5Sb_&sRB}N4;e9U%e=F5+Gbo5 zuI%%Mf&8VPk^6|aW)OCsypHbdyA-wPG^AmjzlcoE{=Aj`oGBAEFWMm%@vp1i{Q9*f z*$WHhgl1&YH7TA6-Y1gEi6vnl-I4G*;t>yu)Sxa_?2l8`?nlm!&vPmY=iECgQ|$<@ zTbJ$|%9>cU%Hy(&4&0OCUp`lhNz*0Yf3UIlsjBNt$sl!WTu^GRHOMrt49Sb?9pnjh zs36d@(_Rq!)m$h{yP8GuJHt*5D*govJN$k6RzE|qNoGIoL(J?g?pc+UNYSKnIs0wy9(TIB`^LQkHpfnW; zki>kZ68OJKOx3(6#XWPZM|fX-WAfiEbF$_}f`NkP&uKe7wkm&DM^GrWz>c-G zn*7hdnDa%cSsgUJ1Ab4&)%z-)-FfO7TXT*lYtPbzr0QaQYH`<3NyRRSz9d&M6Q%JF zQ{hK=GwqU$`{d5)?5cMLNj@B4T=#f8qYPSVR@W+39`?ZYm!#A*bq%5VTpQjra`kZs zWd=!}aogt?NHz_b$q9?zaiy-YGNi0bqR@d_0fmyL(u}Hb3gb7U!{ht?eEdDRYk6JL zwQSkYtJ3*isx>6>KaiCMeey>T9@!=%#cAqS7o-_>!h@bow%Nc|Lt~Hf)fX+jYq}ew zzw)r&M_PpZWNfcZqG$2125H($v7B?i#k(iaoQDmtsi;SWcC<-CjYpVdT}IM*LRXr~;F_8r4hx1w#O2+} z9j|5F>Y+r^B`**PR=={Jqb@xeZGW*_%ZExY#EDUgllUdD2J*0fIQCv*>FZsm+}Lg3 zy-jdWSweoP`MHs(R8rA~L z{vCs6uapf4c%z*(z(s_&meRdxsgxQw=g2RY?E#}lQ6=$L+^FwB)P$NB@D$7)cg%M$ z*3Hw^X<^=ReznHm@uz;&+`UlxRh-mJMj7uK8NNyJ*A-E^Fj#fEsPqvZ{c{-w_~!b& zz^S0M(iut?7Ft;_%nH784BgvhYqDR{elVDg!VrwWu3eMq9b;A63~DPeP*P&lbORM=RaQ;RZ z!6bteV`CS}*$k-(FJCMYE_UGo4lB0JP%Kt#7rA7^@wPxGhHV$e3 z_hyu7%=7;sQN|O%s9qoyu9}BukoP8svjfNme#QFs;xK3i@Xv@J~fI>RoJP!@)FWN(r=nYAnYte;qDCEO1QFP?GqOH;HG4?&piP;Y#{`fJ=#$OJz z{6*v(D+j&T(Di6h%f7Cy@}S?(HFw6^1TAT6o2E7*36r9ii7CW&-k^`EN2pV2Cbtn?ac(Dz}PkJ0^0g z*VbR@;fZ*9vbD7yLI=~BEWBd%TVV)MQT!MoDD&rfwcwjK))+LX=^5@@Bx(WKq}lkI z^#yhgk|Yh?R5@c_hS_(;3qz)@5PmV#E;Ju&TY$!VqMH*|PhJ!RYOH|`f2z6F2eTxZ3FPnh24-W1ED>C^+glahgxbeEqL$t?J~vQO@p?%C1B!cZ@8FkXEg?% zqUTOYW-Ro>Kl!*gHzG1z|A8o3G}a2B^XELIS`$|;pD(GNY)HBo8J+cU0+Zw=&j#AH z_|=6h4g@~}UBUk_zyH%Wz&lXr{2~9Irqy4-^Dfw0`4M$auuE1HxaCY8)cv}+WsCmO z;C|n%V#GP!?t(WFXQg@7t+y1NVxz9$ztFX!I4&)dD-nk%)3Zn}goOChE#M1wG6AW` z*b`D%0igF_-D7%@F5waSl|zZN8qdKw^HbQ&PyGL_rOso$Li>L!8)yM#`Zf&nv}cGG zI4oC5+~S`5gt~D3_yt2oUf!S+O<7r@*H6a6OGa$;hO2&HvZ+=ir-KW0zEL$GD9DLL zm*C@%4+d6#0{b*aL!Qy@3@w)6NM|rTf7aouUD2~-?NE7lMtHC>Zd)J-@sV4)#$9;>qB18QnNxE!4{K}rIFios*4#J@Ocgd@8xSJtn;hZWEzNd!DwDBHE6{dh+Jx?-24*Oixa?)*G%a zh)-|sz4m1~2$t?gn+Cb+4gMCXsHfcHOXRwnRh#b3Z>8lDT9_dQl8GUO6cvgZ@*6SSFwl!QfHXLPSTyU{VxE@z{kpVq^?LFd0=ggPx zLZ{#Nu;OR-`b2OGDTS7tg&hAIij1%3+4=Z~ER@~%@7zu7t=Sio`660=7@=ljw-2`R z8mWj2?__PLMhQ;%kc@u!9uWmBbkf7tPM}BhNO&8K_6qTpMxz{6;I+^m!mo4quRUMk zq!j!EW|unO>8R~nIlNFZDtrm_F@OD+0`>f4Hi&Y6B?Q->{@F|}DTWX63OHA}1l(oe zrP(5gwWBnunIPh;4b4M+%2XS*zkYj;{tTkNW^MA-O?4)@O1CpaR>U*E8sqjPTb6!JK}-J`s?w@^XS^>2id*F0vA7~ zbV%l&IT}#f3*^$jH1%ZxfJ6`wGPe2oBh%osq^tz)S5cuc4FCUJDL_6BXdD8Or2lCg zzO?}57wf{~r{W+@wsAf^$>?d52S>aVcb>vb>6XPIubHwHqYrvP1U&_W*Ji#=G?piK z?P`s@Wi!pO?sYMdm3>gg9U-(GQAa&7li&@++okk${7~DZ3m%QxQSLud3RT7Jx$Rr> zR8z|#);4DqK*IM!?|LXL38S$&X{~!kus8F{hX$TQEH^k^vl{qj2S{-r1md!1L<4+TH|cA)7cxI%q%n9yR~xL3&NZdYyODU(?)}cNNT&V=P6GUx+k9i@(!f zR$Zub>>a8C8{8H7kZd@Jy*jBaUVk=6&GkvR74FI>jSZX?Y;8x04-7d~%70ef(za&> z6^6z=UTNNB{Z(8wu4t$<&##X1YRL7nXV+UoqY?|uXB`r&8zw8}y(KkG@|kWhqf%a( zxWL4!cS0G@?gaXfTAyVTN8$NJ4;;`M zPl2Y!NM6TMu#?xwOODd-UeW5hN%Ok*-|8&Y@AzW)=lSk`$zYAa`?kT`q35)n$0^I{ z=|M#|-$hyucrQf~bY^U8e$O;aF|c)|6$pHy4i#1(`_if0*&CfK=0hA-8k!-hsekcq zabeVIua0Bz8CQ_v+c-KGTG3*S0j>q*r&5Y_T#KmRe|;i*!$id1A8%r7mVc?-IOlTG zgk)W#LeKXnH(Yl-UNN8dj5 zb!C_^I4hMPJckV5xD^8f>n&i=XSY)EJI3AjK!k2~R(U4Uzyt>ce z%|B3QI`8Td+j`eB?e}4g+XQ?qO`$`*l9h!0P?XRm?T=rZ<6v4@uI`ySH8?T$oRc<= z(;+i`B$N8Lw%y|+n4>ls_{HmIpSDJPjP^7f#i;<~YvQTHE6lHS? zqY|{``RdYBuS8J_(79em8aZ`{QR+n>XBCD_ue^ zxvy5{>g0qO&^jvDMQ@)}6#AEbKz=LnsJF7lQ+)_W8in43(I=blZ*@{E57<*goikA> z_`rIa!*f*}$L|VG>qEvOSOoIywO=vP3nQ4CTbHnSvQLJisS%U0TQW`u}%4CVOAe5wQ8SNH|$Ow|=4}xTAF@ z%!Czd{Na4|q|AM0_odtTqY)MHb|Uj;j-%g^B}QsmL|OE25udBFQ`;+rFoVCtVv1Y3 ze$HMh=jGri*t8$y1Z`h0g47{<1Sw|f)o+4U-=OkHU3yWf;Ft@-!=HX53`pEOl0nHo zpNc<^IU)y@0dgx}{9nGT##6yu-$4EUsX2co;xeIi0O=ih@DdPQ00Iod|Esoq#dh&$ zi~i@W4P1!a+%L+}lJ&Qt>UtG^V9{S!YP6f0wNZ?s5Bd5J`7phBb>IFM;Da;VhgW`w zGTmIU^M9_W(62(rY8albMc{A4Vo$HaNQknoneCvf^|P2>wQ)A_W+v~Qc6VH7s0B_; zk)+lv-N}0E6TVUvx5h${z?)?0QpIWt-7MwQg@VE^l%T5BQDqroiQ?|4KxJDI5*WBfInXZn^o*-pAhf;t=tSqfbh<(ZMhFsjH%pO#k3~%x!GzooLmPx z9U68as^=79G8qHs9josM+pl?3*w`!R zq?gKipUbbhrSg%>aAG`5H!_12XIrU%pwV*y|(3`Nkia>u@@=i;uq z%+q3)9W^E|o4sN*7Uqh~sJIA_ai(xvG53m^{Wfe)u4F>ZzWR-%3qr^`ygd}7({x1e zk%S$Q4^sbQn0u-7a$_g@KI(Rh2%^)AG@k|-JMKTuNX#1_wWyqi$#ofoCJh4@d_({e zj7-c*GW=F7rLG6m>VgOCYF2o%&6dpnfj}F_E#MtBe(ZPlbZ(32gDCsZL(Lur*@3|g z1AK6Mev$2#1|Z38)u z(xM2ipf>KThZzo7`ro zN_me6*|PU-Hqqqalm;9W-_1e$(+Br&#>0w-*(57=$08EA1#Lsp!QZbHU(RDjUi3U$ z_oF$?@bS3d8nP;cM*9$KxZTz&Q^JnT%^^eUA|z|2%I#urNM^|J#AFUvXiW5v>Mleh z;IFdDE5vvO$I{ZnQL}Agd=pLPxnXI1@(DQD85Y~uKQnw3cRKwK9I(@rQv9n#$(@NM zot%l2vMeT0YqJl^_svsh%7K69F5&yg&hXwP35iCKI#XzR9}Ey= zQ~C&vtAugcMek_gm2l+{9#|ZO`~jR5AaYQsT%sYM@?mD54uEk2WbO+9^!A75MHsUsi~3 zzW1&I5M9~5M6p4h>VmCpDw#3F8N1=g6D03Eo;#iDTy!Bua;nx0U-NmfVkuOTZnC); zutN3930Ks&jk@EvQbot5E9ua7*;pJ?*9G=!2t@xZ3SrC)FEr;!Z$ zJPE>%5+`962kHj@Z92ZMzC0OwvgJ!3d|wSh{g(}_@cW!eSq8Sm75Y{`M}YB9jDAQ3;XQcAZB0fjjaqdMJNa#EVNTq*u3>O3dR0i;^>tm~{4G1qqu{-8UcYRj zP+UTGgVA6Q{+!oW@(-iP#UsxyVgN3-=lk87R&UNS!qrz9$44f*l{$pOeTy9InooC{Z+DNgvS}TAFtd z!>>#3I@K4hIw>t)3&g%HAO)d~srPKf37$T88AH9NbT?;Qyj?w@J00y7zQlM4d>Y!f zo*BtqhrajW{#;jQ@Ohx_%ARYFnycvde;~=K$38cjK!G3TXB>J`EIljA7OGoCjE-&W zXWs{slThPq_x!LP$^~S9aKS`d1AS{ ziAitjS5(qT>Z4M_7pbt(0Sl?eW*jsF(TBf;yT$?XwEvS zFNL2q7N|ysLHV5}!KeVRc(plH=r>BE$k|wk!jgJra=<6Fszcoa{)g(|^JV?JgNZG8 zXPgV^q;%(V+VX22-D`XmuAe;VxO3o-j**A!b%hFwC z>!s973r$Th*}eHql=JD!u0WF&{D^Ow?@LDwmKGlJ+E91|jw{4Qqp@XnL<_^Oz6`!s zh#JcMWvYbkD^2GS{#`6{I(T+0<65cAgU<)@52R}LR{rw@8n<}=8x`Gp>c{6 zrxfO)yRcsaUS(W?U1^ix$G@4l9?kjlr7engQ=9OIqF)DCYym~f-?XOV3-kIn_2veu zK6M#mVT(krS5U{P)yD_Tj7jF*+;yV&cmorAC{6hi8g^<5isJT_5i=HRZk`U&2f5D7}vzYI%oDRl9{oC(|T6 zrjf87t(FY70B7sxi%RkgW5pCUBcv~Z$DVi3lijA2C+`SKbl& z>m-4nlG>8~z&|NK_b}mjS7OXyBC)pF{MQ|ijuUT=Z;fZW4UL9_qmM>&v+e~_^*dGw z{(%hL4BxSlJcwPBkl=Z2oE3TdJ{pfl6dzh>T16bePT94{!9R{R)VjOY4^ATQ62C@W zkU;`Wg7Qas!U9V+yuohFYol^-=obm%gTcf#gY&nZsF&(t8QhzZz0M-CVS=p)^2TrJ zFKfpMgRUZxweAT`Y6ElncZY3|PuECGh7Jelf}D$+;1y(k^iTT^g79P}+BpK+XKEax zQq_2gUbnB8$Nlos!)wWd+C|;ZZSQf^WICBV{|EcwQ%ft|PmqRApB2bzaz~(}!@FkqJzYX);Uu1pes|U$iVc~+pX}s1FF)m~7H#}K zDxFIRVRT>_FVj7j#tEnu*iGXGaNj=xgxDXI77acFYw(J%qJ&FdzwhUqcplUpM|B=c zhVBC7%v&SmHD5&@_ewSDETi{046*JxnZ2WMdSf$pM!;;d=;T5b>w}w7xD9gc5XsLF zbfi@8_y@vVberwEs+FbUxr~R@j6nRJ8KFO9k3htxBfLH_&56$C;_(#gmPYNa)TGCm zW$%j-S51DE^OWXU$5VW>s;ZAbYRwZ!FozCPb7sMJTM72%lai<3yu$4N3Jej5`2t+l z`>&sKyaBwjoS_77eXZ+&L z{|gZlYZn67{EnZm-vTybz|@V`G5g*n#_`49htmg(H5AUmjq>{4KTyyzo!q|lq=wv& zrs}1$p^QF`J%ZJ-WE*}-$@TU5n zyjlHI`BdfXi#7e*oeUPAOW@G4n;l*(vFhO>a<8Wu)V(h-cdZ54pK6b3CyalXK4(Vp zc(xXlU8c0w5cEExtq%s$`ncq;`b@uAx%nup%eUoI-T%I#M_2qyb|idXRx>+Il3JU= zC}edBlhUp#5pN;Ye<5D>cail=C}1PgV^A7 zWaNR{b~!q+tTi-VR9307e3bGgM*f5(XhnV2ZlYFgq>q2pkwM6l>By773w{49SHJxE zjFyYYqMG0bhqjyIuH@ycHMsY&>NFj<-co-7{R+D+rd z6`mTaZ1zB>rwS%x7Yzh=YEc=xs-wJBG?V^2dR5i6m312LOIK_CybtU$CBfnXg|4Ur46TXxB){Y{uAF9ct1h?JXk$N3-jhKFD*PaPPMh#0-@#_%)cTJU}t5aPK{OR zxq893(Dj6#FeJG=17dYMezG$vm6J@psn_KKCV3ANK(FPf=zh2Ow}t9PXuF4e!=<3- z8Lwcv7kqq2RAZKnn+)$g+x1RlDm8B2yCp9c7x>c?XvgvD=&OApQ-TD%t3!&Y#|o|u z{#kIToA=zB<;Tz0+p+>)BH2_W4*In`?M=47K4c{E90CO#4|VVzE1Xpn5ntS}*7)Wh zNXI*4rZ6e_zuekWYZNe~CguxA4!X%*U?TAjVCkfie8WoqkqFSRs$_l)1u6FD0e4jp zA1>(WyEZ^Lod{@sBcw55%ar^dK4afn?)V6aQ!Am!ztTvGYdF6Gjq)}Zyl^i)1Z=;6 zmoD~Gjwvu#gFWkh2Xr<&_UHua*nFxu_67Yj@QLTH?{hVtT3R@LB{c zv8$FyHQL@9a@|Vc?4n70bitDMwRI*dN~q*lxF` z+E+BVcQ|er<|}Wr1E#%1i_Jf!EWC@tzOPnnfE;IaJ1E4iHj0J{H1f7QB@?y4k0O(x zrN#Ts@!|NRSJ{qoXsV9Ba-Xv$!{jB|VFrZOD}UM(JkZifpsJRagBapWbPX(JhGkuu zwG$9CMtGBJJ*8VIHpi{4W64O0#iIrKBeD2!3H6j@gXSE;>_+~!nT@y%<@(ymBQ_2f zE7&nV@!EKsYVpM2(8Zpi0Ri`@H{HGN$+oZ80xQI{YK@rmEUMKR?H?#FTnKz61uNrD zzUD}BV!9huUpzY{?U$3-7$tKnRzD4_VJk%H)^rb^WdHiq97R$NesGK#_6X7bWG5(S zvV{pki8w^M7tHH_VqArDsf>+65^?W!*T|=ZYFBki4Niif!&OD2ZrY* z`h6_7r*hDdV?(@kZwlCGJ#XQb-_yyUnid|UP0Ok;BdAEcTTk$B#etzu=)RaP)C>pC zGyxz$$N3ZU3l^|pqtQ2UDXhNzI0S!JP*UtL#uZRtX>c4P8y=os}Jx+g(<4($oD`1{yxXi6%z z{|mm6?cYXcucTv?2eg1?Gls6??uGQg;Qw!}h|B;EM>V!~?JQuv2_POa_|M9P#f#3< z7CbP8ySi0_W_PaT+d%anwY9k~PVfqt$YGoTjIzKm^#gnwng7i+>i_?QWWE4nrLxAp zya5ix#G7|peo-%bn)!~&ITZ%8Kgrq+|Q%CFZE&e zQO7#YOkzRKLc2%iqc1x)>6J=^$+yf)N8;!%r2sr2s55e#S}e)zfhf3^4J@lulmn}Lz;%4%mENiEXZo`-{Dcz=QJK;aqGJQ3iv6inO1=0R# z&7)?~=E@h2XG_bHea%A!=N`-*=6~$O>wOgQk@h)0^<0wfuGJ;BayQL0>Iv~o0iBOj z^%b621}S~@`*^9vQRV=qy8mc{>(`wJAy-RH?(ze*$Hs>;oKuJQbec78vJZT<3U%&Y z`EtupElbz~F~k z1Ppe-%fz(7C9V)Uy_+6Q8k&~hA@6`q!YJ>`4cd_M>In#uu-;32wuy;8vetv_8*3^`57=4XgIke_xdr0D?SMa`)rL!r~R;7`T4_?^+;?~gn=}l{{#yyYD zb5c;>pj*L*Z(5cm_+4Z>_>}&}-ksw9$NE^N^60gsymP6u>|Tqlo=p~s9Ua`;*=;7n zcXT$QRd+O3Z{NA%n?m+s?ncY{gKGf|Ba(}rr>%*LEv0uHiJKa-No_QDXl_5>OaBqa zt>J!CIpE2s5|6vFO)r+!{LIWN7WotJIfNVtV|i6HCo$2bum9NtWAiec-Y)b@m51GH z%bWfVX^VU}iw}9P-F%-P_3Fc|_lG9}Y(1o7tsFaU=D({7q4c>f`Ht@!zddl*8BQ3@ z($#GRHY$E+>@alC)@3E509BBEKKzmfy)L^s>cUN^^&~-jmcVdn!HR_!VrR%^0#p_V zn9*x1(P`8c-AnhB1We#W-@CC)U;sIT*$#$!Ls=>CF0NZH-cc4d@SeQ zc%>|Bdp^+yRMeE*loRkRD8t!UZ5}b_^dU|=C4m>-H7|cPpUz{!uGY~nwqHT`gP01X zfu0m$bBewbWyiBu{&UkHN0uGM6=dE-l0kGHC?wzU&hRUl0R#n8(N#8*Kgr(fu2E9f z@e6$=H?QhHdgg8|b4ISUj^iu;8`{Do?hDofwi6tgom?f~AipnkE3@+sSfJ(j*+X9v z-fA~5ut!ckYkCmllYUFIcD8~Kv{JH+dE3^n;iPiN7WDR(E4YVyGZZb3jL-+k3KKAz> zsJyn6K*^t7O$8+eSSe?+24qaHIvBK5rN)-Wwv>h1D_Xm@TfXYzUwh)_bUpiwO_hw1 z=5a5sE2+%@-yw7kB7I+@w7zGM-0Q^60%t4p^r^i$7Qwt6V|4@an6-BUCr`PlmH6^p zSd~riS-lxySy@4j<$d;)HLu7_+qf6ca;daS@?*d}|Crwnx2nbFl(k3oPngaMGOT?N z3Icl~4u86Jytk}NvPy%k)rmWrIF1ljwoe`m{X9OGsd|ETg?PDRMU3zHmH0jWez`~3 z&7=}f>;)8uw{&iMUdiQ|F57Gey8 z63^yRfsp2(rGo5KgwSs0)M1@zei9;x(`P?N9ksUQJ|9$gsQDblu=d7_rEAZq3`MK& z-al}&FmvRs!uiO-s}ie1X?wEMg-c2d2kP8CN_y z-)?<6GS+JWVcag-tC&?DXgAbI`25zSf1Ta75~K-!tn*b3gyaqS%{K1e2C2Oa%5+yJ zjI>Go$R>sDX{9xu_e#MK+1p}He?H|#*U+iGr-V!wAHBZus`I{K-MM?V^Zo~(V%EaM-$ds;wfs$Kc$J!3lN z8Kd0Tn8OjpukST~diL3taloiRw)LY%pDQn8%F_6|LCu3FZSU|XJup#E&S~zdLY}XG z5zqC;p-hmnxD2hR zlnWaNDD*20R47Ehx!`jQ;8$WOG@)vSX_FBBt@rWT5g!Xs(_nuQNd4!mPl%5@15*E? z?Eth9;7) zacVC=*>pXX*v4jB?1pX^0L$3Fp(CZIEy2n#RdT;r7)0;AN@VM zvjcFndIK9%+*|lt2NI0~{3XB~XZyGCcYl2#g$jj7@m824=RQ*)rG}Fb>*W+=Mc$gim7to@WP|zb*6R1Kg z8}PSrhn#@JMZS%DzZBVw;%wt9A_EJ|CJ5;8KT{PX!$kn^U!D$Os~lunyK;<+uY$qY zl~0gCA-zN3)H}dVp#$HTQLJ5M*JSpVXz)!7a0UyJ8pK{QTxnLqR?X64&zJ<`PQxPU zY*h+N$h9C2)|)lbW2dpGa&aRCCm7Sn+4UYOJaYO5Wi=zBYh zV0jJQDgcp~A7lnHlY+%4T|j{b_#Ly3Pw~dboznrSh`mAams(>K`cHZ%2+ajb@YoCx zUZyW(J1b>TK`>DWi8gfwytF2-x<>CRP=uir0D`CZRKRR$j#SnKtPCekfGgOcD{+8H zR|Bklp@U;)T)7EU0_Wh&^c1=d2*e7(8a>*!2pLf%;3Z!Ehzi32R?xoRg-lNrO~?lX zlCa=#Qsi5t6UV{2ecUl8mJT+kw&+Uodp15A>YoJn;Y%V*S}}u7MhHVH_7-s! z3XMNtzKOjDiJOkAHe)#3VA3+cno|cDzYv6_`?I-lPZ#2nFU=FEH%4V~*}IvfMpueB z;GYy5Cb5yYb6AZxMU}&;qr&COzWlwt4W!oMK#Q>X<%`8A)rLUzbqfpVSdrok>@zb`>K=7`DIy963QvW8_i zT&HXjWQf|55m?hVXp6l}D)&B6Bk&aP_p{NZac&_0Bk+bQq>%^c(2xz^3nIVN_5(!g zO})hz0rQdZIWAmM=|C~T{9;*j6Gt{P7|chUo({xemt#OE2o#RJIbH;qqu{Ej`D}rh zD8@@#zLR|YwBRw|M}ah6e>_PLgUQUkQ=0ww$=rVez&Q(#LEqDKqZqzhL%6-N$o-72GqNvPj z0ZZPNij@Hu0EXFOr#=8WR+z11SRXPl(IK?zgJ**2D8WPqHX?R}qgn0IiY5^hJ(S7+ z;AjOx1`t9&c@O9T;g~o`R`)iJLt^XB{Y|NW=yDs&MuVa5T@b2#;=aDpBoFM*2n;*v zNDSYT-Y{Dsswui)UUZ-UOF_Sl1B56Q5XBrhPoWy}LbSi4rtJU>6PjQ+Czf-&TTkK)l~0zV*ztGtXz_%CWcuN8a~`~$kQ z?dz}tfhGea&;oa-P|-YnvpkYY0|X-u2?~uRf<$gz z?YNMxyRkz=!|0`kdj$7U~Ghm z7Xc|BaL8M|M+JI@)?z(azyi3#X+h>yOYvN=rx_+*)Y;FVOUSxNK~soRTsI7LOQ4E+;->-> z={Q(M602&g5Nw)y(TbcW~;!_igz>G>j0SLZh6rh3#oW!1U z`1|{Y5;azc48ZXX+a6tq!1p}K^h6#re3J;U*fm`QA=!h>DM)56A*KOR9zbJq5X|h~ zsd^LCpV_;D>Gm;B{n04C84N6ww@=r2n}98Nd#K|HFm% zd8ZH>m8(UFvSLJgI0Ih=RO`A9>IC6E#oE}KAu=1$96o1loN5LL%jM|_KyV6F-3%F2 z^daa05vDJ`-VehbMA(*%9Lt96srPakqt(FLH&T^}y-7X}kf)kG6h{Ka7d+%a#sF`4 zkpid_bG54_7`EKYBanzLtEoWX=>U0`DI^M<4_z_rfH1KSNo3#*(P=S#pD1(ykI}(k z8gvFs|0QES5@2#b5Imd$BN76e*f2XZLtsZR)J0__^&u1t-O|GF2$>(D6g0j?L;wtl zklqA=B7_O81XKY?s;`himdqahOmJ5WD^Oq^6KX3iON7+|J=)k5!wh^J3y*UP_;n)v z1HCS9He}ID7P2+*yoz$^XqjF8!uvH|-6i8x$L=v>#Y&2F)jewP+FImwtY zL%M0ee+{1L`>Ma$0}0wN5Obz2*wRdLSOMOM(~8hW`jJHlBgS5D3}QnjAg>VMD#c>J z>~$LpaMS?fb)Hb zEUgS$a6T@nkHBP!e3MIpYLaha*;NWqyFO@`qm1*6A*E~x!gM3E0RXboUJCp~L2s{~ zHK79O0LZ7~gi}?DkbYVj5d6KOZUC;S0;$g!XJ-kFA=Qiz`w*87g1g_GCeTxo&?ljz zpTPC6HNkCwh9pcAsQUl~CUTmkk3su#Roh|_IPfJ){WQ#lXCh;yxcF#?YS z=dTw>aK~|hiHhcrM`A3>V&!0mE+s-c6R`pXs4{|pJ|qL!L3u!){31a5+E+rM@ql+) z?92xgEf5OWahn&jCDefw@-ND2c~7psNTCzb^a3<-#t?A$z|o-YVOis_6lQaIz4dr9 zJW|5}Hf@-Ds0X}~biV+}Mqu>MK=5K;13yLw`UL4g76OxE5Cdh13Z>{4gMMc`+7Gom za~B|QkFX=a;sF_^Np7O-_Q)dBqk{U`k*SFVNYFbsAtk^AN+a;D8@F^h=K-Uau)&d*v-)uu-B!11uPx5Ahr+PaCUVRe<7C36p0`-n>`}1 z!dGaDBhKqGr*sPxkwNALFEo36LmJqVf?+ue%ovh;griT+*5$7@M^u{&a3|4Hh~mty zS#*YOHE<6g85_x5t)f}5RU`}4Jh z?6vLm0-*^HeF8dHMGq;{L%ScdHz^c?PB@jlTkldLiY<~t^;(>{MHP%?pm@M}1~o&n zV+86k0&PbcfdN<*NN{sZJCFilDbDs}c=?aLUWbrc!9bc37Z!)u$-0E*d6V7rAYefN z;Ro1zfY~QVOu-;=TpYqPFapj{_HGOXOj0BmbWNa85VQcO;8T|E+H8%>u=503urLI>8~8YbfeMmA((7`hwmb*30y;w1x0euvxZ)k= z=L!~;B*1SsqH91f!~!vsA?P}!aw!N!ln-=~CHZ>>yStIx{X;=HL=ar4$jgnW7D@{B zb@wLuxp=zEM!35MlE7yk0l|JQp>FV@H_1OF)Wx6ZZlo6}9qAXSMk2YXDd1dO@K{B8 z83h*)7a6>QyN8Ucl9G~)D$zyR!`(w(QPoA!55B9DpNl`q!#yPQDlshBH&QFa-Pc11 zmeoU34n8jz7VNJU76z(xmv>Y0a8q)XQBokP%HWkeTxC>L6cuEYRXvnd+!W=N@d^q= z7hg}05HA;bMI|>cmk=*I48v{Rsw2iGR@OU~%2{J1>AllPkG6{>Tx521*c)e4(B~WM z?&}gt3h)o{A_aN{x&(vAH}fEcdI1sqT}ZxHw!~8XMXas1atR4>58k?LOG?>4%m31f zvfhF2o?w)0phNJW^@S-<*xhS;p^`28S2HoZsg|g;^*$a)u5Q4 zP5sZUWMYSVL|qk8pmRTkvvbOF?t#<2FwRaxn{Bl>6jmNAI}rn2+>GIy{`^8>en>04 zC9OQs_n-BN=<7oA0~a7xU`dPrr>aE6Dk{0VtIEsZi1I2jconR>jEaX6R)*-Rq^j(q z;^BdHQwZ3)my@Tvzk9GtXh3kdu9r)wf%$$6+*vZgA#zw*c@e z=hy8_jj8ocTE~iPj1IOP+*5Xo;d{Lj|E}IYmF-8h)S=!1x7WK?%Zl<{?bvtA8x zo_Qo`chYt6WYCMn|Dsh8q{RJ0KfY_TJTc^-_2bXB1v;WQ4eLnnG2MKG=v5DJW`9U% zJ}ERLbbo-4J5cR>Vz`U%0Zsxoo>K#hLLwmWhXOU7WRhXhXGR1Kk`m7;3_ijj5hxrJ zmXVsyImr;=jzS|5R1h{Uo_gDll61@nG$jNbgbhF<5Z_BBZTQk4u(-cngvMANOik!T z>2%e$C4Ro_h}fXG804`tl~~+$8gkg#+v0^}fnI$~SJIZ~xJ|P{@5+uuH*hh@W99K! zJXRj3sDQ&O*duB6@Aj@fphd?};@Rl1@zjmjc=UA&cmO1lnM&{Wa>iv^)uOsr+D;QL z9IymG#6)ZZViR%OuyoWYYcw?*(%K5giQNGo(6epVBYBc^f%}oh82J-raq3uA_ymeg z{^tqI{@}2XP?irTTZOv#1p>9f=;~nkI2q*?u*x_* zcI(TYlTiVW!{QX=6%*e0V%n~R0T#2MUyBx)!I<*V48RlnqVP;yh)#Wlh#z~W;&4Z5zq%gZ0E@V^` zn#V15J*6qadbKC)9{L(fC!A3b&okuxU{Jl?VT7A2ab16g(Z%=jW{_hOb+*Q0v+QA} zogS9sPX@G{hIIRmed=yqHI#AG56cYO9A?hnnb1)E-tzoCgBOt!sy=Tb4_p}6lQMpO zzH@<=b0*%+^qbIld(wxB0s*(c+2<3KA>v)xX{ry`SA{?EKD@N6yvk{G@k4kF?xMSa z^<`sWxl*YMwR!J0j)Z8*f3U=__t(t!Q>5{i#z*|!xM`FTX-vEBS#(@C@kluCP}t#n}XmERIrp^r_db&8DdgTF|s- zRJ}FNUsmfonedcw1c^dGh^z64Q`mS!GIl%ACSE24;u{)`Leh}24Dc}3mx5V`Oj@i+;LY&o{t-0?cvk>Xe+D* z){J6G*_&kK6&f0-CMQP>_EnH|1C~hymMKdN@RR##2tSO`0RO`jzgyz3hN!C}3oggT zrT%;r1OgqGfQ=(#g@1m6MI>?kxKjWzB=9eH!rJ{=3Ylc`Qyv#skdVI={O^hs`m4bL zmjnzJ0mbnQj8IDMWpO?XJZ*MT!z*V{baQN-2R)a$G-#1fa!@SOvTTq=1EPbjh? zks_BRsiKZaWL4T8KKn}4M(WP;wMWVfgIVEbHuo(XD=({*#7+9?97-Ye+?Q%+<(|W;(pM@v6P^U_rIef zIy_>3!A#+F|LKUBFhCt_C+dyTA9-nh&phR}%_EcMu|3V=eK#j{p}>)6S-IRNP&55$ z$_u8J%WcjAO*RJeLo9n!c1bHdGx|z6+@@?#@CwiqhSL|p7tj|){E8&Ger&PQEiT-?_tF2A-(r%BP!}Nj;eMm z(IGf%3Yq08JHydi4>t>D54&IY8W3z(pUsX}v=!%gN?MZ7F7F*wt1jD<r-WZwXXE&K9d+eufX~U`hMh_L(Vng-&7_n?FULZ z1%>vl%=K}uoBMpDiQo^qpr_MTy{FGtKH5&s)4+XVXGrD6FFw-Ldlq!~78jk~yn1;v zm8^H0%&c<~px7;dVwpcsj7CYhN_co zK@0~h7XEk}8*@ZN#9wq4CxC@*7Qh?VpI7{ZH_L#4P=Ik;ASRCmnDq}3QwE3fKSAt& z1xf!MzO^JNQXAcE&&bCc7B-8H?+hSzQhHk~NA(oFJWp_VFk&m4eP|wfnW_nHdYs#Q~fCNpYFkzOs8^ll;`~r!yq_Ue1w5U#2GSfsVY=(>d`v+S@j2 zQTcG5L+R70V{R3eOW_8eT@tv5ohtTk6Y%m^7N{YVI+c$Y$8>&DW%XRxUP$zPSJceg zp~QIT`TL#44Q`=?YxTj+5BBkw-Lo@2y!qm6NP4NX>f1uYfyFyGwh~*3OflI{$wg=P zh3~Ky4a^darSKSFbjNjxxP2J)ZjrQHI zxeR03@m;+pHx@2wZf>u3lUxfE7uK2IT}PGUVPt8(VzI1bWO@qID{ZTISgLqg-}#}? zX}iy_T}IM3RqMZ$V+&1QOlKL}Y4xFwZ{9uI=eReV)grwug+cw`Nx|Xoo6NdEG3{ zBUd{2&B@YD1I1b_Q3vg33Iu_^f&SSCl;Td3<`H2dbSvR zRcNhVEMD){MX{YXg!x1pszxMdS98k_UyQqIlXQb#ziqVXG-WbteZA;%@a?A7h6eAT zmo02$x~9s!j^t$F8ndfL_ai*gJ_hGZ??qZ(Q$Ct*RjSTQYs8e%p&B*(O@w$+Oj=Xh z=h{b)$2uKmm4r(I0)*}=HsOxfypd|}a&J!HgU-DW^?9cfa-#@g_DEYj@}|kn^``Sj z=INajRFicgqg1AI#)gG9c*Xl#zf671a$1)fJi4^!a+oxqn6&7tfE`EpxKAlnr}w{K z;=FjEJ#bOEE(;pPaF~g$J9~2EdpsDnu2+*tx|2nbnm?~orS^PB7OujTj*0$J+)K92 zx`Li%+m{c~Yw;uUqv#WhP=`a~mu{h0XxqDRr0B~<_we0C63KK1QtxAV3KE&VW@WBg z@0a2yuhlPYmzo$@FOk#RVLZvUo%fZp3QxY&>ij_TS8P1hX@FQ^KM-sCC9X4Hx@9I8 zUYWn8C2-mQidZ0chIRjcMJ!>g;CIB@`6puOgoJ?jf*Zz253>bYKW1L?SQRky{B!1o z!{M;1KSAq%133R3X4Sn<4e=VOdFNoPffdA(6y_SQiO9AIXfB-`JkU5MaZS_iMtF9| zts^^+F*afOmvJ2)pPVBA?O2tj8=n8ox|)?0u-ZU(j0_hMgZU&)YD(L-r46%_O7!G7feS*n=hpW?Nc(*kc;$Lq+yc!ds; z^iM-X3z+mjytNY*<`C)eQVpk&Obi;S)ja}rK%=&>3K?^w2t%jG9s7Wd7g0BqpRdQ z>r-w;3Oy%i#vWC@*Dc_xE{Z^mF=a3a0JbFwkrTcXAj_CRXsu{zrB2vLRH@Tx?Y4(~ zIxMUQCz#D=an0?)9D;PC(I#Qq#5n<{CX9toK-rC?Q)Z0=`c9WIU-S8z>(5>(J4!El z@zXn!To$j)rGoO#cK}hkv3Bz$QPe&wq$bx<9W1*rfauQ~qzWpC86(qz9Yg*4!%;tN$IH zw6Fl5C;*?5@IPz%FVX3rtMSFMz|~;T^jLuE)M)T0^f&KoE+pzH=1!>{Wjle`oF&*$e&Ca}PnXyY-|)@=A(@q< zLEb_>g5OxH_sfVK9aMX{Secx;aj@r5Dc57uypSqHNuKR>NAb7!GjQ>!aBMs(7{uVP z5&tW3u74eE`z1(7iR;1g{270vL*W?z5;Mf^`o}pc91{qd{Tk-OO8rt8$$;C1<-vjo z1Df4qQA)nCv5hI-q4WC5wiYw)oGt=Z?jKd5ae`>f(KXMr(%XGT-HTSZuf2;^Rjp&- zig~>6IQmYFOCB-Z9IO0m?Q%GAtSA;h3>wqB`p$1YRPb3(Kf%^ZM=2ow&r{lVs!HNCw!{Ow2l5>xdhb1Qy>2G>X(VsG8~ zY@Sabk%k+G%FqN{ zy!*JDIwC4vtS-_Ge^pCNC@n_85Q^p%|#a@xM_ zPD_Qt+rFp5wIzmEl%*r=&%e>uB8dT>rf>J@j&OdIM>G%WQDwQ3#CRQfEXJ;(66|XZ zA)oo^BH2&JtXf~f-Yu8*^0`=ajpk9u;@RhILgz(mtSt3tr;;)T>u0Z&^o{xqMO8)j z?7DBe6l)8SO&4o#?rc);Zj@6|jlYi;lSiNR<=fK}CRGt3D*WoMbLB>d8u7}9{1^i6 zII`vPy<1IELYzl=-#xr@Li;`IsWM?|Nsa3}`Mf2n=42~bU)&Q~@4)vR+->(>&Lhdo zbJlsuaEkrZ&Bu*eU(VOF?J`j1zn2wx!N!u0y|PKofQ|35<;eDXi?kB*Qlxlk$8?A0 zTs}|LMMu=0<vco1pEf>^ntf)a>4%PV4W@~T^hiuPEWzYfFTs6HGxV4yY& zbobXW`dR%p2AUs>J-DCaE{2^yZis>9!04J7VMzX%AEmGdz`TeC#MwJFkqBzqtv^r* z8q{tG?LQH0HP&N!%-jdPIHMomI`S3w@S~ECSBv9|sx+_ z6cDf3ocpBlVS3oL%-iB)x=)T+U8B%|u-+_x=RO7HWowqobGk-<+$^{(ZE>h$?Avle z-ye&kwz;1cd(OVq{QADEX2<#JzTn(sxGWUc#2LTJm#y<^m_hwuRE2MF)RVn?`!7>u71>>2A$G z*A-4-^Y!0Ve^KU-qkitD{?|EDsozai*$Z7O-qs_j^JPYs?Z~IN9lYxtwVLC-{$)F} zxY$D~E~VW))n!<~wm>I*hXWHyn_OJoSylRgyEV`tYHwt*@HpE6^ieQ{hywQF`omsG zUsIc&oiLAA<12RRjsGV8d?P*eZ!L$_-dc=;qgM>n-v=B210%uVMFhXCXK5){ZqQb?uWPAWoKw)%E`Gt z=dgQrviL%~VJh;#EUnVyZMj0t_1N@zu>|V5uroK}XF|2+%v7OZXPRCv$ zMIb6EC{};|RJ2w1^+{ZHh<1dP3)t^mv@daHdGU$ntCY!9+Z}hDqSKU!=_Ot^)B3Gu z>SF9CbI$o79O9*D44(F&ZM1Ln>+Y1rbIkNwbzfnmpE!MiQ*S$W&9|2>Nz{!;Ob^<} zZVx)(r1Jb*_}H1z%MuC%*BOzkL!vvZ+a{vTvH9A@`PIW|QG27e6$?MP~*XVNR2OrY3$qJwRv1w>T$-X4eXT zW|PR6!^2j_!cye?{q&n8$v@_#lvI4Q8;>48;kS#~JU8O0Xud(kyPYppjBEEMRB8&A z52Lj$6R!kRFrT=s?pQdb8v2!5HbAIZWc{4N4bHno&de+!qmQ&s-NVeQ$`(hU_w8qa(OKCzsEp{!lh+to87*D>;NLuags`Z|}-$E~Vf9X1q7dAw>FvUb{zwi&)T{ zd5KV;fQ3@r=^Hj@iz4ZE4qGpUS}ANGh>tP(iFFE>8_0=x4k@TaHD?Y`v-3woWrho7*6*$@i@dSBrW!>Me*litxY& z2}yE!5682s{!a2_<;}MC>;&41kf{r~^}-`p?yU-N&`e&c@s|Ns1f{R8~3{6F+Rxc|TZ z|NlV$i+?r$0sXi9r~Pm5-~a#qeoFt1|7ZNqy^r0$`#e`o*M?EjljOaBf2 zU;PL7fBt{({`dcB|D(;{yZ>+hv;BAa&tpH8{lENo_Yd=5?LWeP=Y9nK$Nr!B&&q#F zep!E^{%idw{crQ1Ait1*F#iYryY{#H@Be@Ge`g=5`)S^1w|~0-&;H-o7u)}_f3N=w z{&)UQ_^*p^z5loV&(#0kf7gG^{O12D_5=MV`#1W}@c-ri>VKF2|Np=5pZfo{9#UV2 z|D*eD@CW?+`^Wrm@c-yPW|NrnK`LFgr_kZAj z&wuCtKmY&#SKinE&-Y&ie{#S3|F`&A{h9ye{*V2)|Ns2OXO(<+?uv7e&+)-?ZzJ=~ zY=8&+tmK|L+Rn&YM6kQT8kX4k8JZDdf5J*Ef_;8pt@>;z+`+t;DF$xy?#mpn#1+sV z4Yc}OIkhc3mSerD;I6uutP{`kT(fV+{-~;GLxL7w&&e?{U@+(zI%@`nQHYcVR)>-( zOu(z{iWyu351BycZ1l57HzT3zYZfC8aj~a@UNmZMkV(tbGByE$QaDjh=76$_CQ%mbWW{9gbRYF*M-n>JYyr^)`ha~{Lc>Y?K z4SBMHl+LVwh}4{c?N4OMoKjG(h$2%SvDhN(H3akXk3QCY-#qP2 z=lF>KI%HQ;dzMRSI-aJ^W5HV51UIqaUGalv(w#WX^7$UQ)&ll^(Cy8$&vg05!xR75 zsOfd-RSwt~L2b67EV=)a`5EzLsUqHf@1@U-u+oFMdlrqPX^xkK#3+RZ<C50r;T7@;?8>uI`&x|M7X%`nyYF}i==AqXs zxl|1Lup4jXI5^Vd|2DCN9>e__(H<1)TzRE*`@<`X!lgoslYXfSVQ zc7$7H4qe&EKmU!BO^U1A}y2?P+<0(v2g+^RlU zFG19e!9KHLi2?R)C|f(<_p$Tg<(kZkqG0MCT^k#6L=-%s5pR79Eg=sY?7a z_b7Z8vd0Pof|Xg!H2tq;Ht5sInQC?kccl;0k&Mic>?*G^^GbfHYs(TsBgq9$LdFV9 zqqZ<4aThTPET9f*@hekwi0pQ+WbK1Z@?4eHG5A>Vh4z~^jn}!sp?@RYC-UlgvX$Uf z)xBz>hF;DWqH!5eux?}_0|?q~I_x@Krk-zY4cKhOEDLx1;{2sP&V)id3YS}C#1I&# z@hC_+vK9zZUS&Ymd%0svy{ACBGw;nRp^Orv{Oor#pqID%8;zNaDDMG;xO&Rku-(}& zkYvDb2Bhy#M z4jLyFr-nu)la3LXQ?&4ORuHSplVCyH42o>25!hY%*e>9w*fcUw>!3>l98;c$P5pa2 zEHs!y+{u!b@|bgAgr&E~(7%DlQdZP3!U>S%Jwtx|hfT!XA#smZEu$actSneNOueaE zJj-oKdPf;ta+~Gc9*j$30fG|kpQAz*gD!Q+B8B#z;t)(-QSm8D(NQ$MrCON!4vR}B zwL3E3Vj|0-Q{j#DrIoIy_MFiRdMK1Ggs2F7usHw0*5}bV$d^E!4thxsze?@FT-EuHzpQGvdh(1_{j%P;Q&LZ>+>JvIQ`*AZdxY^^~c1A;Sp&8+=?_eaotU zb^luyFd-QC?5r3^Qbovc>IQPnQC@MnVBFL)z&nC~z2LJ(_w}N(274(D_}U|IwQ6O< zoiuO@mszcFYd=27Mv}6F(l;=?fWJ4GXIiU9+SYJj-Y0PHEq(gG+F2hxh*P)!XTQ1T z#cN77bOCn^ux}FmNG_NxwsHuey3Z+a@CKt6c4HbAmyzEh*$Y3wN%ckwk}|H$O2 z`!AQ0)=hJ)ToGWgK>>^y>;Im(qAIi^FNG#)({$j&5cXot6^mo7bW(`Lv|e1~H6HVx z-1>Tu;FZ~mMw)IM?8ij4$?eJpM{HY@X1ok+S;{KM1B?0Ey{fH62jf&Cdo74=m_Do8 z6w#K^2xij(X9ch2L#aOa+SLO`QDiMM8SnIE+m)jut1wC2UaS}t!Q`KoNJ~lb@)VUR z5zEAZN!5c69*y*WpBL&VNf#LQj;a@x6?_0tiOdwdwzwbS7u8{5lm^Fd_$&*kO zhr!a7*=l8eY_<(r+$U_+<&h4jC?&0=r7}jJjf>lL_2y^A0?d=zziTJStS>B)ssHNZ zT23!I)F89rrW2#U%fA%*^d_E39wE=tw?qngZZl{gjreRFTE)mKkbnm;);Z%Q0G>|+ zJoF<ryR~e4} zU?}3BcwVeFZ$!8CJ2<4R^P?%)u*n^ z>0^Dta%`jib=;WP65G}F`Llw(7@@9Fk>UaQ2&;p}JpOd8>JH4m|E{hCew|BuaQS-J zx@IppuP|U9yjdu)CM4JzJ}Xuaw_{8jW0)NM)^wWgL&_hDE@3Dl_;~p316ey%T zan-+d#Wk|}^5tkva%BCD?j7YT+})|%s4xJKKG2rDLj4XQr3mE4I(Gp=UE)+Q5)A~B z4*{1(WuX7I=nTwx@PFG;zl5v+L2NAQjkBP&1ioqb@@W76Dq*tJ6C2tKvg^E8N&Y98 zWS{R)we?!upSNW&kLkL^dsB5aDGip=S~)A2xBuG`%<2zCd6Ocg&P18D?(-}&$!H6x z$|A^{B~^35>ijL);B!UB#9S#WECmET(h;{hg!B0bNf{+lTJ9B~?7C@v%DEg()c-wv z%&JZMnYA*ZE9B%it$E>5CV|JjG^kxcnS-@GqDBxyXDN+!Md#f#UB&6BCIQ|2FF-74 zRY^_LVge5WyJ&|5TCigTYm4!_J=w-2TB`^{9XM6btn zDTdjS1%mQ!p;$-2cEpuWcYF8NJF^ptwH2HqrY?vzG18ZXO_tNn^YKAZ?(MVN%(Quf z>I#QnW8@fT`;H>lPVv_1qWD)dp}FQ${Z#dC%i2cxXR&pavhyyfFNk{Yv|VSJuVL=P z!cDPl04tQ*p(Z8yTXkA2Pk8^)-D8sPd9b<{lhke*tCo?_6odD>y0U_8Z7RpAHHEWc zu~3bdE9FVN+B&GbGqVg;VpDq%50;C7B_w3TjIKnDmo6sm4(AGwnLHvkP7S*c=r!xK z=Oq{K|L)>>B|!0?5>YWuR&0OS4gKGnm?z)ali1V;r;ce-McjrN#;kayjGcDx-~OVF zio+6FFr0|+|1u9jj=!=D5iZEf=8R%_4{3MUr_OaNP?33c#@?2A(njh);jb`xt_eW4 zsU%4zm%x(GTR!QaX4-1Sp8%z=JxZq^`E2*+EYJmdpCU!zgwyV^sBG^qA5!!lWs2Gr z?$Z}vluST54W~cO*1bc_i-XLixX^b5n62WxXp@nsaJ0}*Fa}2CaJXNyP76x}c5g@@ z5CP$bUd$}zX8A9Ey_BayJ!d(03<-@^GH)u39FlV+)9EG z+`*zg>g(49Hn5M@RWES-!Ec}aDjM&b0+{dtiS=f7Fle%Y^absR0OABp2$o%-CEJZv zkadwTVCe()3t$%L+e{FcgmVV4c8}Ej%cYL1I+2=Rlf`|yS{_FH4I zc42q*>KfOJfBZaaD-dPx31D3e^T=~c-QYcz3yU6 zFnprM>qicr=SpG(q8X=ew7gH>=K?-;{}sWjZgBi$trB>r-dl>d!Dxl3k_%_}X&R6y(j_8pVXFW| zvK)86&454NT7PT!%uGAvct`mx7&vheqM-2>cmx_$e@D2hsS%0!guSv5neGGd2WH#M zd3c83z`VCpMYkTnrNU^RJ#uYY6GV8ZOUl4E?gJ54HL(1SpcpoqB|=2N0cVLN%8}V* z&z7?I=U-T`ce;If*op{sGG3j%K0y75i^&%$hL<-!0|6LfneXBh1wn=stx;8CKwJpg zH#0)Jpj)-1D}wfZ|8KvR5#DTv;|~9$9&1v(01}XTx+mLCzm6n04HGntxV&Y6&=q>ug+(GM$5=4;fl| zQAB<|@nBa~1s8Y^Sv%h12 zEZ*e^eP@5lre*F;KeZ=DoHhps>8X5jMGl6+Q9pgnJg36u4!1e^)d_<7)T=~z?&dFMfcXe(#0RwM%?Ng zueammkBGu_<#<#14UZ1Lxxg78_}9Bo<|@h`SPBBvq} zb5Xz<4SErHB0?S_2#0X0ja18O>H=TTq@p`;B?2_xpVOlz-pZfIVN?LYzSZ=m+0xudlIS#3mznDgAFBjO#pNB!id?488?&q1)t8Q zM8?Rt6Gb7i*pd?@2*${}Pac+_xZnm0!z_W|q40lfhtYN5k(a3ul`Hg0cCobwlq~xt zMplFPmb_hh0hjeP)cmpPTw@R~`hYAJkln5#rL|>xIIHy~8OjRq6|Xu>t5xTu#1q=8 zx}&-){d>prf6al({t)~hEOlzX3R1#$7Uw6Du`jv%Y3kxfT}^9a&a8qaTX`Wh(mjrM zcxX)%c;`ANRYaCH z-Qm{~3$c8aVFBnc-_F+8HD9OHkY?T9Y24k>i6qzOMo-07)%+%=0MwUww9D*p9RkOo zjvSoUt~uoz=qG*2`N~QW(lhNv zpj1=k_E8b&xzIv!p1?0T8IkX(j3u=}Zy7z%eS}2HN*oDWEXN6aZ>>bP$CC{B!0~eIK;FQ0jF;Q&{zH4H`Wm-2HHr zd@^>zaUwx7u?Si<+yCWki#Fk+sH|=H9bE~hk82c49oB-d1V9@|-ZqX_!x` z<-AyV;BzA;lY^4%buv;!N5mt~{8rSmsKau1%~_Vlt7h=X`|xd$ zRbFJh7cmDTBs;#5ndl6P?=p4=)Y1FHSZu}Gw3Aj+{f%65!Ec~TXVetXyuza=!K$&4 z)x^F=%hjJ`Q5XInX)QC+J!o2XUX%RRmd&<>d=pA z+9JDFUdX2XQj)#83X%alvCB9XSu04fDH%=Rv~1l@waa)9)Qfh7Z{0K6)w1#gYl%=k zE59rVCxMZ+svQy@`BX&$%yB4%pxi2g(GW>y>$r0oxTO_pKr=n<;7efFZh5sN7qAx3 zymN6VrJyuXOq7C}5NhY_Jd|4;a)qrf(idN4ioOHhi@qtWK2A*n0dx6pSB(i`rW%se z?h`{FCuD1NDk(M=pTg$*bfFx-8BHd0F6)@HE{y(Vp=3-!f!G|(AMjoj7B`odeHt1H z8QNH^Lesq(kSy}VNF0^xDU`8kUYj-~qJZI@bwxD;d-Qh0&hv^_IlvfZVBg_kqFs!~ z;uTAmybT9ylEE@o8Sk)d(eRuF3fPxBAA2p^8O`JW1&>RY2lR$i#FO`HDgEBO4xAw#=A~eFhRV?iO)lTchbdiKN2ZXkkjN`8~r}1P=$8hD)?ZN zdi2gFikahgrHcHBv{a5qr^fj)dBlgMFF6f)t+1Ph2eaMhQ&5GzWjrXkoSs4XkkU?0 z$-eL0RE%Inf%UiqfiyQ7l8#+_A1w`giS=-;)5Di`;QIz1HEQ4lTp(u?F!K6O-GGN$ zzXGplZepf8i<3C(pb>_osnFVI0>%<6Z>sANE`K%I&qwh!^*JyuWef&?Q2!elv~Dc` zYb-05{~jb9jyr(fWT>t0X4%_ts=Acmr*G!6xQq$g!i0tG<_5d~P%3E_9l^5YOn6Q- z?VsnJZPL}!3p1YmVkV0nVf7p~d>iFBvdnD6C9&svlj+mB=mb|8JJ8>YVE*^XQmZ^+ zp9}RWk%wLss$BaSWj%ZjTwwKcy0GY5tnv$~;O0lXdg11HPhy!UGPvoum43}2KAc%j z(?2wM3>-YFIC!`=TK3x~A(;caL>~beR-QnkMNoK9)*6z4mox(|}sWBDD01Y(k_zak0@9&yj zbQ9+z=A*}?JCRq2)**UUn3wR^Xqv_0gKevf{wWF>v{ONt3hf4QK=S;>Nq$AO)OR&d zC`Rw}C=HF24p&)bmGs)FXof@OFDm)2m4i~;gUTenVD7jlpxLN|aY-Z;z5(_5XBI>U zHyDCVFSy9k0|CER_9qfE`|?CMC`50fo13Qae?n&~vI@iO%Xi7WBO zww;(=1qi@gC(_Irlu-a;UQBoIOixK!7W9KI#E{e5vDj(W6gGu5ctd*qI3IF6;L{`W zG*f<>Voma%mEXpra8-j0Fi#Bh)KtXL;S(9{+)rz=A|sim(AG$Oy~&h-x<7HrE*Twz z!j0m^N4dA8sucUl*$n^l90~7w)eTQdgjz@?m!df+PS3*|OB9)vaS+6Ej-1}S2}`JU z$W33bx!`N9$+W2|9tT4-RN)c#YwMozcju^+yY70GMoq-b7~Sm|gGW!unsr7;_{tj? zbyB(3XJ|o;6<5>)1vw0qqXF{Vkqz6Hh%AO}FL8%2T-%M%ZrH~8zTnVETi&#>qV6{E z;scz__qs;rZolR_>M{;&OqW|KF_ZtJUtzgtJi_U<$3)NZ<1d84BLtYz+_V=Q-Ufq9<=T|im=9E17Z{msho}+CG-J7 z)8P!_K|4LPqeJ@-?S9Z-mtjo@9`4!v;mN~d^64aHW_tuXg~GQK6T5=?>!4&pqY$)v zc}g!&a1C^r8~~P(PC|dJKnEEsZP|ekAds1#!6Sq#T=Xj(wfed`JyLLz@QZYK%3$Z- zgYfo^Q|yR_6RwX?pnK<;nJ*0>@SF8z{yrqYqT!Gudw!8nAYP>(;QuMq#Us|zp4{Vs z7egOGpbPR^LqZD!m(tV4m8ucni9oun0*^4+;-I&t*dN8kEq%Te0Zq)J0#iI4$)%EtO^D z`~ddIhv9iN-NM0-O$oD6CT)h6K{rq!%eK%=Iy!k}+7`D{+4}mQM<}(mTH6~DPytYC z>S-4+Gyhi*SIRngbcwY0Y2lKiJoQA$^j61s9E_r@k0sVZctBWjEh954bM{GJz<+-7 zUQX0fz$R&)-T<6lRLUcluz$rjAjjdDsmlb}Ezv-Qkr@-Ll zCu~;6w}gja2@|^UaeSbYO4l4SxcR>H*Y^El8Iy*dtq+jv3EzB0-pe1M!pjUh^F<(q zh6A1TkIU!lSDLP{psKwuf)9)@4ktJhZ2xjorta;AuOhLDtJ`;rf7AAaux33-`lLcHbHcek|+J{ zb;(OEgMWz+gdJ_*1`to3YKVo$WL{zHKnk$N6jRlHhWO}v#$qlQn~1mjbqHCZH^Sno zuZpL`<+Y4q7YUUQwL=#r%zNBKHmyuRQ~12jEsudbNfK9OUDL#2IG^#3kL4gXX5XyW zQp0h}yRn0V-|(L$&fQ{B4XM&}Agxy+_1nwlfh54D=|ZKWTF=nv`Kp7`-q)P+T+ZVTI6_Wq z620G1SA2#=5t5a_%d~HEFO$CiE7`FNmc-xSRwG(d^?f$i$ zfUyvUU|bn3A_R$K=f+asIVhZ`(M6s^8kN(6II~6SMuvVk^9cU5S%5SxCm3I$vL6ct z9o|7$pS+lLqy~TnV;_)!vS)C{Lr0t!=)YAmKN*<0s!a$RoGV|tI9bJh^wG+TtK*R5 z4X8r3rTC587*}PoA)&@5ER4xH}PEJu}Y6aKQHUf=5JW?c# z8aJmDS0D#-49J&SnU`R$56s*Wg`QNFg%1=P8Yf|Q%01cXi?_PwH730&@MJa`@WRUYtwNt zWl}k&+ww`=>RYatzot?pKaZBlO(5fx`2eGqusR-XIfKTq>(^7(!&KFjU$7_Tv zUEc>W;cW#^A$iX523>Fth%?{+rPFw) z*T%MAyxG_bv!Pa^SEm;W#flXjQfZW8lnH@$Zvp}4bHHTQ6~9&WE9)5!58c5vdnBi} z-0|MV>R`xJf7Rtffck-HChhepPWQ3Owj7MSBIk`+4Q+K312KHPODEZ0!E!0|A_d3YW-?s z33|91W`9efIwFy~l;l*VmzSHz8Y0VoFkQKE_r`r3dN&YZSf~dN zaJU?Xx}0$07c!%cgL%f*^Jc7C-i;GD65Q&i$%bvfFt!h3HYN^%o)Z07(nzS_M{YD#cj|Cbn69R+Zv=iQW;L`?nceE0N5x2 zUbbo!`rS0OC7s6FBZe90mTy6;{F=rdJnR4xGT)|#?a*>C()w!S6sDBvtRqN(l>aQF z&7N%@mjQR6FcIhS_{vglgE{tRud)O%bBSUp_4!9ndLuMK^<8(dIU&lw2*PfAcTjS^ zJU{&xg*@##;}~5skgM}3umea&w8-SFe-c?P4l!Aw3%dX(g$K*# z%RsP8eo5+O_bY%Yxef<7`K*!0;)Pv@s);6axyo~i%q_&)k>o8=sk;rovRyJ|H~K!N zk^?&#bZ(Oj7`-6lt2M15c3ix6ffIfOYMxU^|rkIGj?=FyxpB*R+hZskMSdnhgTg!4AW8l{AejBq`S2Uilzs3u=Z!6a08 z`YaV`rZg2xQZ3uVq!INH6DN;;m`g3iDwjqZ1cD+dVz`?y9&kzsK>gaJlKx)Ei(zy& zsi^N!*#M#SA2>e_sLO~kBM zM^QDK>h!Yxa&ZhGr`W#{fPwoiXD&_}rSM5%umS!^Hf<^Eq>ee)xoWzIC4>o2{aJ;! zFW=U{#T(su84TfQspS^_6iPTElbbEHhdXbOWS4QG6_+s^L#vqfND4jFYhN62tT~yWP z0B;naE*a^p!qqZQD(Sb52E?}^<+tb8&;(6EsXkGn(wjxdjKxFNmp(C91-N}Nq>qF) zEwJ877O81o;hrIdBgpE^=t_k~&L9AG(nJ>$7e+@4QrU%(mc8X?GH#=jX89JsfMD|1 zVuW(6;Ye3+j;MB8TMcs0gf0;WaPxG%_VJ=jU0)Y!=lHuoy$yVMqBF)%XfcQN;UTKQ*!JJrkq1N2;{%n^bFqNaG=|FHCnlpunjp>)95vLQgmo=%xc^E1zgg5ap8{L=$^5m}7T-&PoW6NBCBoxY~x@ zwWQBaWPj9d4j94 zvMMEcllZ+&S+M{kk8czFt(*|2L-w_6aKte;n$%Filbc=~;EI?Ym%Sg&V{m1##a|}r zvX=Q(bX-fyba~IKo9?~FH6m#H(zdj!@A3K}qvS%vfkO6!T;R+4UvlBt&R;7&ZYw{- zG03tD1$v`r8;DY8DK68Ta3B4(b>X>a$~t7-M%yLu-~V@Nc4VGU)NV+~k zrt=hrdw?l@fBiPlN58f9bJ;%BjUmjd?LHrMsWxy_0bX?eAnoL-GxIO!vFO+jl?>S0 zI+ZTb*?G3aQ5;m~nVS26IOHiqnhsz%NbL2(I7rq|vR5q7 zn-!UoF4b#hht{sdzZOzJt_81DGnXwfdvFtXCSq_|ZT?ubzcJ)d!t1aZRXStcEFS6s zpY9Ce;f~Hhi`{YEC7+lD{FDZ^>EgVdHf8YZO1HlkA+6h}L~i0W#sv9=dsn< zw*t6JAHJq0mHmGn>-LD=S*ry#8vA&}*qb3&^t)6d3i5>Q8w+=j-f#*1{5ABRB28YC zuNh}JQP2XwF>sRt;N;lntq>1VPGIr=K`kmQJRQ-R6}96>s`gV~%WDUv|@s@FCK=q=~buBb5?=pK)^2dn2} zfU3CuJ!21;myu^=XH|<>Q4L9J4Tif4TYGujS-aM&84vUQ`b;mUZzfRxoIu#nV2DE8 z8zhH-v$wkixF&>td90NCrcKmsvP&9#wZ#uU@b!9y?R%3{$&lM?n3Fh6y5)ufQo+eB z2lwt)m(c69s~H^?-|}@8eCElx&j`>_`Pev0<_(J`0v$K0S2KY zKd%~$4G$&6k{W+`JC@qwz_>I^hb(!SuR=LQy14`7|M9zJ0_&xrTaQ+iq2;pNpvm!< zp7CE$bsKD##4{i~LN3sPT;r9>F4X#{46@wT*p~QDU5+-y+qq{3PyGC1Sz!iE;0#*Y z6f7MiP_;Z}J3YSron_XU|MfvHq_M1AB*1`jOrLqDCHTPB3|s+=gqRl%G+Swgjp86K z*MWp{)lHH^H&DL7Uc}Z~i%XI+UK`&Mg5cFWxP~o?ObdZw0OJD4TpMhc#4`c=RwzXd zoVyLDI+%%N^!grD67eMNaYGx`Y*e?|hA80}Vdor4V-L%Db(8LyH&M1Zkr^dJCGb@Q z441)aw#h74>fiBLyYHBJOnT|jUi(#mIXPx}CTRBS%)cbVV!2I(1C6`3$$UdFE)BLz z;u(Q(EG`YUOW?HCYZkwEl;LtM#6l_?R!?G~qOf}+iCK%Q2ksZuled$Ymkf4saFKWd z&pC;3lLFQXSh(A(2nbpcjP;U{UsK?FnDpbq_zNJ-r^ZuZr9&)?FA{KsOjs~eo?1gN zEnufS6zVlkvNq}EHj-cAyUguOSs5lo8Y+6b8fUHoyY8KMt{ZHZh{6~aTqMA?#W3og zF7k^nKg0u#y0}I9R)#q?IBkth!0SHvzMprty9Y;7ex*1EE!5LRyk#zh9-Px>MlPA$}mE^uE5^kU>Q(0DDmr1r#C=-n!80NSzD#YVR25>4PG(U8&$tDVX zsxdTrZeo?i)xeVjSyDg%{`e5Mc?L*X(`PF*F9ZMe_&a50_rBT99{^W3(NG6W z5sM?l8oPcK;4FYjJuaxkyD$$a&N_UC|3{6^pO6F2$LPY`=lNA*y?{_E!cV7?PI&e| zrLrfXerM%6taoZxTY;h2Z$l6%s+_hombmq4glMtWH?I_!wveoXoHX~T_M>wWr9%t4 ziTce2A(@?{$gzo);F^$Y>h=ZDB_<759?|4CM#au}|3pRxfUR}KYpsFTVH<){n)Zb9 zK=elYHb}=RjnF=-p-`qqZN_=#<+d*!zjp4=agvoD$sV8+Aus=_2nYzo3yleBksL6z zEUMWsNFc^{;hFH3+^KRLND=yWf&-}w>}$^s#@lK8zyy#RL=VwZ$qZ|nQV+U2vlPsJ zvCtG-s^smt3X%aRX?v!q;f*YPJzwm_D95PW`5#DaG|ZedQ>K~YdWaw*k3^xxV9C=O zC}koB|J*+COk*9X$?SmjWT|zufF&I^2FnP8T(01>;tZpK1}BHfA0MD|U&h5HAP4zU z3e#sW!^pr9@WIAS5aPKMbR^umu^2EP)r^%1k<>8A#D8n#oyEWqLc}LBYg_;O`$6x1 zw5t5*%FpG1Dap$ zM8=%Sd)K~BAqkr!dh*60aXV_W;^g&qvU+x0Rm4u$>+4zbj%wZ???peGu8-rS-qLAm zXk^q8lpSqMY0l~Y3cB9`zMe~!$&|m-AD*V(#rlLqTGfBpybw&Dkda1G9-+x1Q+iln zU)2it>6wp9OYERSYvA0awI2&Db_g2bleA!8wu@8LYOJV!|Mmh(W~ifFTgkJ^r?lQD zOiGn;bannV<1m|k=Rls~leqTDl@Qu=-J47NfX2tX0x2Un4OC;C9|-$dtZrV2A7{M( zHNg|r{o|NC>pI^(yVAo>2X1OBv%n}IPO@hO`Tf6E+@y4L>t7Cap>jdd^N)s$Ay z-8H)&SSym8-j2CO!TVpxKsNvL$NZs@PljCpgdaMGD?Z%PIjmkPpT>tgT zcK@B4^w%?^*qog95Ur8a#KxROk00Fr4|)2wFcC(-?XWYpbdwEjGi$Q?N8Bl zEr;2k^8^L3N&A@vyNKWZpRV`7xw^RzNXUgd5^gE0T&Ha2lRo~<-U6-r;}G*kzh&Ij zStO5Vxiaxo>o)Pc1* zy!QP#0L5!#Ac9ie34CCxOZ=^_{QXmZTJpN3<1g%717IH|am?N+?ecf&IlFt{S_RgW zejnru&;s^qA2vV@k>;g=m6%%kF$}Tb>Gl%?Axi@O%I!-tU`&4RY)mUfxH89@u5Puq zK`E!KJ#cBTlW6F~5OmAWYv$H{F1@_L1PuuC9&XUApA`9@gO3L&Kmu4d`2slA^c?U% zt4e%M8Lp6}a{tM8z2pCf0EJDat}H`W0iXOQrF_FPRWQE*2!JB&SOwQVkG!T;BHfz= zNmd+{7)zj0oEtGgORo`f2NHNz=dDGPqz@l3-FOheZVwgIhq+irI9Tx-tv2akCQw;G zvcXqgDTgkf5{)F^q|-#8_)GyAU~M`%Eqj|bI8>Y<%SJnohUdNR1WGSuKJf!<{-b8{ zuN4NNUAD+k4RzvxFz78+p`47iXd;|e+Ac;=d?hG&M<6d5U6bUEfBMS;fl8wSsncyi zki>m~vWH~pK3h-0Ib0^k^4oQJg3)A|C}JGPE+jnm=SWc%tAH3AH_4F+9TBi&>d98m z>i}7%1zEoBj<~vX^J%^l0SWy* z1Z_KPd+v-)hZ_^eyUAM0?3pZO6{{_8hF+7WG+sW}=+-HC5dFqDtFlL?QY-l_i8^zO zAcWg6BCph6+X2d*qicg{In#6;<*a)9)$xf?DQx#fM^`T%;>0lyvxL1iJeJx+r`E}p z4rdLs%3ApAIXH)o@66^L@B<;QQ`58GNe>{ax&q_?vkUCjJIE9-?rm2g`Q{~Z3 zO`^Otq7Xl4?ql+!H@U8;^mlr|Of038b_#bYn5MZES-O4!P-u%Ak-~uCeQ&TTMTfpj z`>jeA1|3L)&b)Hi?>v!YU28@Qxg;4J|1vo8!{9U;SD9#_>ZhXK4lu5J+f%EjeAd4l80CX1ORtwtA=}b{s3z>8% zy!RBrkxr3>Bk{AVdb25Gi;;WFqeNYiD)C2!}R#$Mu}Hx-E_8d2sCp16p*IU%*9YY zdm0qio*6bc7MKIgeWB=xi0<;G2%9Z3eZ-emlSOzK<@@dv0B0Hbw}h-<(h8kc+v8x{Y{*fsH8)DK%X zo22Zj0n2-nJKBs!Ar!MzrZ8p&aE-c-#O_u@h!|M#)J9Rp+s)H+RGMA(J*_ql0-j-pLs zbCSD=itKN!4CtMLC@!<@h*+=%wG{BZtxjZ>L~!*2Sq<{Tivt<$Vdk(3NixbuAk*(b z)q#GVllDy2?fGs(`JHP zW~^t#8`(YJ+}!L@!deY=!wUPsE`7zJz*ouPSJ)jb5#?q_Rw5sW0x{$ zg>%7ze41-@jT;ikcnAJc=q%P_mglm&e4yWIi_|)RH`Py&t2v-0MHQecd6uK5j>&=# zq~s>l>~XXE|MPPaXR1#A^kuO97k_MVuefYqOioiqk*uM~AMZ|HN(=Td09&ZZ0BiX* zCzrJWtUc=T-qbKO-QT5XNHE1h?$L3UxtQ=&UgeETai_6sZShUTX7r}DDcY(rN)`b* zBYS7s!&nik%3MJ1{zq{MQ44jN8J246p-MWiMKM>6;3cm0;_HYxB-&7rR;Hc9)`_P% zSAb)3r=Q(EqWTwq^5}r2vpZIA@JU@+!5`AZX!ty!qY{EObDP&t8bH~dX4sCUB4g*^ z4kXZ@{T#s@1vg3dqzd&E+%p*RbB;jSyUj2@DY?bI zg&WtokY)A(OYGWQ;XjRVc=s0--W%h2r0r-WpB<(7!^eaQc4Es4Q1^E;>XD^K= z4q8TE+=nQBb8jdE?M$K4ylPg>58n08rtNNYhr``89ui0zNCL2%b=0nkT~BPbCQpK4 zVdY!gpo{t$c(tLUc2qJc0n){4S!_UeU!r*kQ%kAkpQ>u-G5LC{w@N;^HVwXvpSNff z^`^~$gf;3~$p=K7XG~LU0hXa+db+#e1dJUk>mWXJ zg2ych4k5DvbR&kB_v)7|rO?caF_;_p>js~5qJu_2!T-r?H`C_L1l@kqeDu-J>~gGm z>%-RX+U&7!of~y5efLf{XVL`DvSC2*py{#{KQx_g_nLJ5)uL3Obf=vq%`Bu#{5MoOzb z>U5|`A4X@f{e(cvXIZWl(N>ue-DUxpb3g}XaxOZ0v?W+8BFrs(o8jzedW4yu5(-6M zp!QA?OFvjIRAi|uKbjnSqrBxU?YKX(>YFm?+`oR7Xla@*vjR=XTyFg@N+qq%|ERT& zWn6DebSx#$k=v4ocv{9uxskBze3P;5bGG zoy8a@fS{qM!PVaUCLPl1?zZ&&>?nc$k0Uq2bFvQbq4Y7JieeWaQGzh7fb_ohX$LWX zv9|npZ#LgrULO>@5beEqR4du zrk?v%)0oRkcDz!8wbj;1hnKy+wg5Fi%D=F04+BD)X>!!L7wv&KST{1fKG)N-N8VRkxlCi}w9naP3Z>UF|Dx6`KANplbI@JXVGTnx>7lx@s zHz}vg6#y%pwyR&LG-o&kmh9SyBaqrSOCU53h`Y>)8t-!AyfwLJUMk%s`T9t-i!kSp zpf$~96SHjA)C0ATBR;$6s{$0oU?Z=E9@~LM3iPFvhW_AgHoB;>WePCM^Kh(5iT|-B z*nntXySGH6xvSzjSq@YE+|gpi)8o+nWdArRU^7%TsnYrbu&hv6HWDriKxl`DmP$!< zbRZ9Fn@d>CqvbfS>AY#%4{k%O_a-KzODvE1z#(VDpUc_sbDB0*jcdZ3 zd^5+!WF<7?-^f9<7Al%-yjgl-{pSyd1*w} zECDNqAEa+z5rEchUKi*@|yzTt*ai{Pavq4G;9z~ZFngL~$9~@6< zQ@p!WyE3)dM?tyh1-1(Ft2Lc(j1`2Vp#T)#nx|od^x8}+SOMI}2e2=ct5Od?QUR)t zCP0e3MfuLPHoMmDU?e2*!E+W&hq+$)jypSj=5vRt4LvXieNd1|?D_?4aT#wCpFXG2 zt?rA40(3^RBHs^F%QnDn?8slpC|1dBZdEFSGG2s&Et>3f)<*b(|0xh*FWo*UAKE~0 zKsM-nDkIG-9+D)RPp<(V*=-*V?wwlITu5ISeTdLOObwDiHRrz8AAuA9QY42S7Dfry_pFmJDh zcP6q|xIziTE`Bu&!LxQj0F8u*OQwv0;9}eWso8@RIO?S)k*M)7!~eV@DD1XXOFrtra5vk(&ZZx3``Qq zwIyIC@MNrj>oi0|v4e6`n$1PF64?S>vsI+1|3M-WsnadVT!*5NgA|%)L*6_jXn0{v zFIVQZ&@`nqMMC92&z=01G#Sw0gV<6bhBo`w*ByREpqR{HcZDcNBFGvJuJmMp@US8d zp0`Ot!9&5iS~uFumOmONjbJDakuYSU&6-I)9I|KQY$_Y0fL?xQ?LL^ zo>WcP2nO4t<({CCppLL;#Lnq63V#!f&aflLen;zY`R^Q-PN(8#*gFA?K zw&stI2=>0$^GI$W1iN~-WKoxDogjjp-pt;NRH#n{>jK zLYwtb*ad!4>|nI0I3LH|xV>SKYVMMx_P5){a0-KNjZD7P4Iia{& zya8Fp+&HPFtPy0tv4lf6Ktq;A$*do{9(Hn~{r>Cj%$SEB#}zHV8bn^*Zoy_lqdUMJ_i$)e6@x0_Z&F zs|@6%oe^3z;cp^d3`84%$C8AGXCemZwREBYj05gj>?T9)Dal>*i=uit#_N@#0OfkU zMqXY5)M_yABp)#0sY051e|hPP;cm1S81d{48d9V0Mrt@mp4t(ME^7r9>g7siz8Tjg zACcj*!$Hb5{)1LWQ4lR?!P<=R$=M7O z`pBb-=t+@TjVvLo+O*7&>L5Ot{xcl>4qI0~4A+g1$$-#_oW57c9bbtK_@Ro7tc`Z66pyC>gWl4 z+y>gzj6F({RdJkz=<*UgDa!BQy%itpu1L`m1u8F$oX)-GBG$HLdk2@IqAk}k^VYiy z_z~rOGQx-ehj5@|KsZz!+G&g+UCRs93-yJI3W(tP{kAJd$ zZ`4`27A^Ljz$B!Z3*q2(xPe`8a}E5yH9UO3TDBt$!rm80Cef+-Ys_mVNQ$@*q4)?# z^}C_ms61CyPYTq%{*OUv?N3k|-t3OPm{mWqgl!w%keXSn#;(;~@PZB_@!(kOT=;7z zmP@_zKjwsU(vG=@O=@g3inKbR25qw4$=GtvqN+vQytP{eZEEy_0F!JXf%}17d)C;>m&rTbo_QLmK8AOI; zDe)ij+o8=LbLdm=*H7Nh=NefM0n`(T;`^p)iNgD!n{%K10GuT6E}_{y$``Bc5Ky*JE>(y=}?Z)ugu z%$JDviq>cwmHkRTvrzKFWJQzH$#Eg~{mVi0%VM^!4M%b&oIOlaCzMs(A}jX_B3vxC z#-rQb8o+U74Ux^10m1H?O!6Ja$1J*OmU^8=XMR$wQCfnYQiDbAb3$AEg1*$Q`cQQznuqP17N>W*KxEydNCy$KC67hI$OV0qmOirCF=YWzh1wrq7lfU^K zU4%=xgJq3qu3`JL*#+;JD58Aijr6}{5_~>VcA0<~-F^6Jyb5bN|B2}fM@r?t+GT6j z9e(dAccVkjv}cF?uR8ptiF$SH|H;71El)9X*?+@r8E}IWrTUOp2YkR%hWe!1+T~!a z-nAmDAy&5k8#E$0Tt@gsHKUV+UdSgivAK+*GEe}_ZyQXEM3Dc0Me!1LurU4#71krm zN6YR#2X@ylNFDyx+G4E&l`V$s+JiP;QHF40@x}VA`w1DLpT%po$9p86%bd7J>b;pP zI+U@2NGB84!sLzSPc7-yK&@@rn?~Y8r@fivI;UoKW5T z;F?5%uS!|M&;9Uv@+BYEI0g1)NLdgHK1J7;+PkX+$AQR+KW~ghE8!wQfB6`S-S5xH z7*z5U4;FV?*P)GbxzLv`(yWY|P3gZ5NE0&gU4lV{R1&mAs#)>Z?(QYPkmIxQecBxB z?TkLL1i@?y+;SmhM8&TQ2m*$8!<|6BDHF{yDW<7(=VuiV z{Vqe)Vg}i3+CTbk@s36w$jVlv`$u0#F!}yv0O&8*N^b&t814odkNu2onI<7!?4oWQ zc%|RT%%x0zYyexVyQ6&za#DuZTn;!!0y;Ut9h_O`K&;ypK4bTKx#*_ zLSWf=iKOt-_Z7o>e6@n7_5GLu=cM?-eeJ*wgpNQ!2b|SNJB~{%{jIRZ!+K%@$J^PP zHL9dUtMY|=%S~>)3qalbtTZgUqbKZHr5VoLCXYT6!%y0N4QoDT#9~+U3k#cqU1>_@ z0i-P*7l@jngj%cc#(Nz9vDvkH!If>b;7rnJ4gqcg0kEZ5HoNbdgYAoh+Y@@A{;$OEh7 zlL?X!XhB1MG_N2F#mX*_hjUz4pm{)~M!?;&o@hVUe4a#VhV`+OWdy2&u`K=8WyV^3 zGMQN7Jx>tJP5NXoDA<|@CCF)CXXPDs4b#_)8|J;Ti=gK^2=v2NPd)OD3$Qh>7_-fr zGW5oga5)keXK5(m(z9)d&{uViXu!I{`}%b6&v>=GiCAlFfz**G(@qWD_#Wx6whcOe zT0}WY{sM|1FiUNue2C|0J$(EJgHnlx80-@ofKY^4b|_Ao3&g?PF5ZX3=U;XYtLtcyCPr`sPQuSpwFAC=0kL2V1C-I^`68&A~n+X!5w-f0I#t#x@ z4f8QBQ|O6SF98FppkKMym=g@k`kB!AyM;sf;v4Q({|IRF&e@=*o932uJfWv$;*FR8 z#|V4cGN|4>-ZivED^qE9+QM)zt-~0fOqUlpERW`3l%U=9)nM$3 ztK)W;5Ki}ymprNT<&H%%2YzM5r}5534bXmrx~d_hst7$VQ66pfI$9fUxV*%>UUQ~0KH08?icH_&F zjCPjtd*u1+5d~^2Nf!O*S?uG`3d;$5SC1i&ki#R7hlu(vLhWV_WBW;dQ8^LoiPhE- zNKIF@0{26R-)spZ9d3ddIGT?(qD}r;NbNT)-R+m`DZ&u`=@8>9Wb@!XymXRG%*dMPA}E9E+FaB<`J1w?snM8tSp;9eV0ke^g3 z>Fxu%T*0UWYr`!&nN!)BPwZCX$k{{qDwm+Jvp=x0;%MS2j89)JaUIZ0IlsfW$Q)0u zX-O7z{Phj{n4sbh@Hk3dlvO8(V$@3EC=U3T7dT!pbD+#a%t?Z^nvb<1jl*N>zp`#t z(uP_--O};=W8xvMxYna19o#O5NU=bt>fbqPXL@?|4r)eKTv1R&)s)^jkH6uq2YtR( zPO!@U-}|~JDUB0=^C=L9K#i?!N=Km5M=T3irA@{ex`R zXdPEQ{=JWOzA!PVN}$5w}Vo7tqK=&_) z5+d`3_SiR@J8a?YEtnr*yV+ea^M%?zvS`p&tnVs};#sW|6x?XbEK7-q}Cb1~s9 z?peZ#^Y(pP5)@AZQ_t21is@Z0g7Mj*ISi*j zbdEVw)>I8|Oa|8etAZcCw`;c=RuXeQ$fzX1Yj#+xqGtY)BsxymeDvrw4lB|{!F`9z z1nrt10(V1z%hFh|HpOcQ6+LY;b|NOqd=RbgqH+^5EL#?wR)EOgU>CjsRP6k9H|?a^ zOfLb$rf4`1je#BY&2@A7n~#)0kPuQd@MU@SyJkB&b7sgOL z3)hvo*5~xz0K&41+Wgu6H)6UZv`3DA#>02=3YzOl?e!pBPI#spOOi^PK*ObLkcEjh zs;FxykjLJ2U}x5#G@0$m*W@}W&KtsgF`bTny25f&M9=n_LYyyDgQ$n5)(?Bm4zD)h z|NE|CjD>q6N@BffUA`u*_H;}EB_@|aLdN|H$G17A_$1x?P>8S8aE$S)yMm>=nYAad zcl8}%rzgjk?~Nq`%lx{%{oBZJ`W?zqjqAn4NS6u#&u|8&QIgMi!8x!S2@>xCIv(h$ zc+WqyIMGpfvSYF1YR}?eVF^8L79NbwJywZ3r4s((Ncp)R$%K=a+ z2$7!Y09BRoIL1@83z;k)iX&cOU`o+a7WzD7w%3dTrJN2vuP#J#4~cBp2sgbL+h`PK z>i&2GsUclzozu@`e>i7SBH5Y>*#U!{q6H$kF-FUkV+$BHCFo(L%_;=NG1$)-JI0eC zQ1lCiDG5)XVQe(bDq)t#CG?p$aDh5HI1x+3uC= z9}U?zLLx3tTI7tgfE(U`ilDk#8p>-Wp=a8^HjwYq)(dJC%OFYN6e?)Nf`0mvL7W3I zploF6MDxq0#@Y;PHpfyb%DDXbtt9}KY(Q(4d}|{T8qT$^y6^XcvTWHjO=Nk|8zTlK zQNgpWJkGsjwB+If{@F5;-!TK~oAx-{px8<4ex-l!qtt?PYCOaQy18GhVQL)4N1P56 z>yUCxi(PJRe9;SdvSk@qbdBtZD(!)!GuyNHtQ454$dX}+cEAI0Gy0=rml+NoXhI7C z?S*Mh*qA9EOGHjFpVEGOX8`W0e844DipS{zGSaf&Qoine(1&-xB64uRE#fqT37aYt zQ^+>2snB9=DF@G{y_CSB=aRyaud%7j7;(PKORdFVYLD4=M>>ipt_mgT?ai(1IMKGT z0sm8?=+ytQSl`wFYaUY&e6oo!a(yOFvoXX9`)(WRSig}z#=-DLCYeXaU@=ho$5 zBPqUcuTQkoK+5b*%Kn}r8;c{RaixrhUPq8)qvKl9;}`yRjo?C87x36%nSY@$ei&Y+ zcuKZXYSqYGMH$}C5pewq*0?WlHucD65bSC4&c}=+Kx{N`6A5EfBX;t3Nkxt zQ|GiFaD05o7~F|4~Shv~^X0sCD2R zr;rNjYtfQ^wcRbR!tZO|_%vp@7K!afwYH!)<0`R3 zyH7Ph6T9jTlmP!7Ts`E;<1;2O{XHR}L@-0qjK{S2s$wl2sy!ExM)7{^m!pi1JT?ph zJ8RGsS7*fTM++x&-ZC$qQVGeOR`XuF~1N#Ic@<#C8=LAuN z_-6KU?{i$D{XPey)S9|!Qz+ngllqD3T||(mJq=HIO`mY8%*>?drk4*a%e=}g9?dy8ZDvT%hmKuBzXcdqS5;(l#O1a<@WC_sFIdMGkkn`8%`?eQCKrEb? znH&X8|Ip!j5^~Pq)f>z`KLv~;+_0Kh7^v(!w;PgFh~?i2=%x88l5_)3mEAw%JrO5) z+%@QBd_OsNp({BGSqWtxrZZ;}7p8PW9dz~CR@C(+tPn1|I`Y?up@uK$M6HHdAz*Dj zmEYXI9rJ$Ex{4x)EB1T?uI|bdDXDX*I6McLG!-TkNu z+W@J`VnlnJh-sr9c)AH3zfe@p8BkF#@037=SR>Z|Owv@F#DNo0Z{$F@hjm_3QD4wq zoZR6E%L;0pO2G5lO9DazM&A_2-3g@ms+vo{%Lp}J(fLTN9)>MF1z2ny2D7dYqqb#A z0%mSf31rKd27|fHM{j&*Z9bYhKnK1Wvi-_Tk1fn~Ov0emj) zV)2{cqZ3EcTL;hSiKI9Cfrch(r(erP6_$3WY6%aiW}Xb9}y zXoT}}V*Jvaz=3nN+=4mc0T_+3%e(S_x;!Ujw9<)B$?T^VF|Qi@N}UQ7z7ezqal=gj zXYSvaWwFxAY+tW1JAs7$-~6y7D|S`mFi85>J-@~aH9VcwpDwuvF8Xu^S#|C0_?dd` zs_jm}XLOzb04862_htFF zlo7N?oQxS2Cr5P>)xz5kqkfZNgM^V)$k3TuiPHi{Qo8 zWp`!}H}HaRpqZ&*yW!SFQqJQ`O$$Y{>#6%n~!Op0D~k3C9P zk#if{;_bV_HtFrUwH$z2-+SQA6FWCx5jP2zuKo6$Nf1`*m`#Jq^Fs%GjNWzc=sWB> zv*N&qehpx@#BiCxUv-N>75cg>zn;L&7^iBpmWP-FXCEnLTPlFYStN-$<|$=PWyusP zbc6VzSc%7R0u(H@M^>J@A5ILTupezp$Mz6}_8d0TsudHRuy@-r`~AW58t&C~0XoB* zK#`=QL-Gy|ZfhRv+souXOgL{dz0_fc)^cts#}c*0a2zxZL>CdSU-&!>OlL?-=TF&x zOo(n;_1R6yT)5!lqLm?BNf9`^U14K9MCT#~<1GVinlU$jw>9s=1@K6ud$#6Ie5 zD-?$6V~VVprPU->;u`Ielkr}DM_1C{lJr6#8_YuM*fEuoaRHnx{6z3Cy^Yau5Cm4A z?VSUSQ0ov(KgQe#G2)7+Kj05XHT%}Ks(CK3X?j+<2!!jdDYj5qJ>!V2LmE+ucW{SP z2U@LjYNo4S_X_u%X!UaxmH&F5zO`$E#9QU-D&qjF?YjdA#4RPfYJOrptVmv6_ennD zNcyOaY&|;RMv_VmpG~i^1!Lwb>-4`l0CgW|WVm<2HG}n6pQZ@{`L#l9(nmITXdjR%VH8+UQB5Nm;di~`lLugGK4cQ#`y_;fZf5m$@G)Qhjp zEXj#U1&EE9X*^jAH8lK24W;j|1uC)2<~?I$^uMrXXS(NsSRX3N*;b*byo@cLiTM0iBbPP!NXp`-x-1g+>VBPAoGwyuVmwE~J)pDBi;qd!QtxxyVCIhH*WYgnA# zO@dCVxpq6q+}7>K65645%2Eggl7CQ1;DE`PAlovrP}c|IKYoDWmHdCWq6AGCw8xeY zq8<-N-+~(Vwl~Z(6JU}wSFv$hrrX8F#S_%fewpo3x?JPrrwth~nf>>xe$Bb3Eg;t# zX@lMAl60+Mg6C8KwY%mLti7|A(cn0^V(~KVOzQ>V3Gl3z>DlVRRfTJuPzE|F9fLbB zuYjgxu=30xBgibr`lhq0V#ocIWj}tMA1z8>Uz+6MNsDNj{l5NJz%7OAVC{YCU%uwX zmxlTV;Y&|)yECoRyr;;cN~W7RrG}P}K9eyGXrC%#;v%>}sAglYg^5`pVo9_+Wf9aA z3>hVrgArf8q&wJkD>!S|oS)fh5n4{#I?8r-Fv&sJUc=CN*dY3?ImDs9HOoRVa~Q8_ zOK1EuX3$QJ6PYTJT$6{ivVs_DL8Y5(u%&)33ZFgssRTBd_GS7xNggS#3oH&*Oi9#) zX#01ZajsDZSf&7>;ZlY>R}}GKa4|@L^sGYoi`d4WP-aexNv(`=ZEs$6GE+57!ncI- zE~IOEvbsy6A0LZY{;7dQiAY0Xur0M;%MZ8H|4fINvmZ%4*L4_CGnrP&vhnVuL;;kr ztrQFMr73GfVOi-$cmGh|8Y7RDhM9+{h`doEW{t9!ih6#3z>SHzr|EogckkEx+xiYZ z;O7z|qz|m?_(OD~7M)4I_ z6+FT{Qs72cD)Arq_rThyk0tHsDL-ynWrXc@W+-J{t83s?{*((h9J%EZx#zD@+!<=|FVZT#6#G5k5 z^6ETzi_c2^-^{D-U6Hgm<{->L7erPx$O6I2pI!o?!wO#oq!$#I5LDBRhSwg_Jr?VL zOJ&G?HU&VOW7G^1)j_<-uhN;aFBdz7^~2pf%&A=QrE~bI@DN8A#9z7I{rlqX;8;X` zNNPiRE=SYW1@obh!1M>)E4W(~N)YPK?2k*A@E98Tj%kj%ZT$&KNpsT(C<<$qi}N6+ zshFObl6HTAJ0+b3uDpICR-iT}^Kl<0&Xo;xj@QW?zcX$KLk@vE2t1F>#o(z5^NLO&`f*l zD9w-XGi+B_&}!kN8g5#~c>H4(Mv4h)+b?@xC(EN#M&%#zEG%WywU6e2rg1s%@9uP1 z+@iM;rK~El)`mHDPvG9wu$fPRBJ7(LE9{~aE9Gz7$lXqwsXIdsK&1OH=2MYj>d=9_ z7?nVI6skl=LONlhxBT;u(`xBrjUiD42ywJ@`{6AoJM1A1Zvc_NU+SNPq@_#)RyaEyEUGVam z0Li}wkr1Yra@C{s<4o26i+;rY^|-LLej|%?A=b-&8&P_kDg!RjAxE1@KVQLc-3pFj zL>-U%wJ{73Nt%CXScWtIQCeFXEHtw;kIi%OwRE_VMeWwl*b2eRr5>y|<2TaH-JS?| zvnt-@{dS_w_5W2apY#6(A|{)rD;4-!aeYZUnESem<_SDAI6V(hkXsZq%-w7isZ2JH zzyCrzBo%Ei2wU@~{&3!eWE_?H3RVKSV)Hco9m*XKw;W|<)x`p%?ffn_DD_uT3!Aik z$e3B$;#%1Wrcm`0L=+Sp;xO+Od7`@TS>LFMzIlcf;Kno!VU!9N%IP$%@A1%an*7p)}gm(9!rBVaIcl8slwSqgAOLp4t=zf^Yb$xv0gqHbv7QcDBBz4R{c)D?uxy12bHN{`pg9w7dr_0k5Li_n{!xs7d}cLl z$Rk>edptwaX%o)X9TbqiTr;BGLNy}->PkrS+^K-%l8PTsjU-TX!84PEu@j^$oGUpU_!w0`I%nHB7;hCSdt z56N_gg&gpV_ZYniH4>S(c9XOA?4{f9*#RI@UA&C9w%D%Jqf~8sP3(O6a-XUIMW~jI z7hKfwSyiS8g=XI}Et(wd&Vl=63Jgv}A6Fr>-0yQJrLmt1h-q5hNkR$D#6nt^3`=Ff zw9)PC2i;zij>iUlJr%hA60TXG@^{)_8^`>_WWy6WG3vC^JZ;cVQ9~0%tc83#azwkI zhJDo3Il^jVx{b^K-lrkUOK}SnPp!-?6>EC1GcUS#FEmPuD-Y_&#yE^HB6EhQ@+5_H zMV2<=XptH*6&%8hMB{r!|H-X30DPA$wZ}PA-*IGUi!kq$}{*S7*A(0-kF~M z2cIYAXsZ?aF;)Y7<=lVS@r2HQ&qtgk8f3w8J5)Sl$~D2^ z?}2GH5=6ztQDWNoHTd8_ke}*v8Z1p~)S8c`;cDm7iKFKYI~bP_QZ{gTBIZ6|1PoDX zn+1~@Qu~2^Ataa2{S%y#88o}~Am@j=l6YIw7eN$!01|g?8eLq+>Ukhoe3|+HWoKZs zFcOXLrCjZILO$xG3S7bI*3-)JcSE=F`bA@+p1QVqxrU^F7kao^bZN)Nl{y|!F?dL; z3is!HodRD-Zb75m!~-8$yu#FUuZ@Oarx_ty5$Fj~y6epYjkD-tz_H@~Q&@Tc@y-tr zG@Nn2#wLwQl>Es6>Ud33@Fh5Lf|=ejD!X+Po$W=Z1Q_!fIR;Wrs`#9E;WZDLEo$(F z&k^!-IH=TR^Dtfg`P~6^4;s=50bPg9T2etNVEm>9 zvOT2->Bt+#LxKlgq^$~6kh|A zfC)e%6fov^kG!7|COYjtSRE5JQi% z3o9R$j2oRpIi(Oaq22UiB^Qg{x?q(nKrUqDL=sAB6qy! z$9%(D&&~2SWtBVGiF!kay>(p8qY*lS^_#zz0B@@GsnF?c(*H&cl-6NKqDDj#{`z#2 zeRmma-b&!@1fOOM-1FN=e}qV>#xNd}o+OJ7R}MjU&Q?W!08uNt^ecFZe8`TjZRf_l zYbO;`q@AYJ*;kwt-S6Yl`PXwGSl_)0j-^8e;%;|fYJ&uSRc;Y9^gP)4Eb;&dA0z3B zR(smt`L_+q!<7?heb#t5n@1nl#fasVs${E}*Qj=!JlR9UuwU5nH%p$0L{anJmW6-A zmT^!oXg;8mMO`jH?ZcVEc^5Dx<0CZ!1C;?5ksnLbB3z{v^pT-9mgLSw^M7Cyu|0`` zA-BfrhQ)M~Ep+-Q@Pl?NjBCZh=lX9ApltsDf*U`nmd6U8M1Wbrvl+FO?y*f}8^rN& za?2l|^|76D|Ie9PkP%@o!=CFWUGWV1-JuU|@^;KA1Jq?wv5A0nM*v|JagOj5Ma6E| zo<&3rHXBDs8hgkP&pjQ4Zqd(TEK6@L@In4D z8LRG?nm}R8@+?5JVz+9{aBMm6F41zZH)62?l1Gs<8;gYdje0FEN(*w{=DCYnpPj~N z4aaje10Y*tDvC?T9e-n5tSR{Ej*-$-h62W$3HH?NV&vG$N%A2Kiv=!w;u~U|#*TAi- z+yYR^!^D=RW|OAS2|=ZsMF=9s`E}IZ6#d1EGvVfi$|?da9~a$rEGTLm~bwSC*i-lRz}}zdru2 z2Z11mv9MzOabr^hv1ebpLKbfhM%ZwR?9d>PRLJ#9B^uHm@KBK&@EfiMG1kX`rRXms zoOuoHi1gEbu|s^?M*D4S9x!AzDEAna(mAH{M*XZ4&^HJ!CP%59d1WovKZ(SM>XXXt z+zPI~(`ysn^Nn&tYVK`T+wbCP&Outub0=uFL-p$r<9(NbZt%e2Scwnj!e>`~s_*6e zd#)MsFAur@idB3dVLt%{WcMe`dNo4|d}~Nicoj*(_vd~~rkP3ckk;261l*bcx_zR* ztdSH$dWv>jcLJY~nY~qD3RX|J&CE7v2^ObF&%iNg5F`RUR8QSUcDf)c82hb(LD%~7 z86er^&Eq+!N^4+&+xZL6C!4nTK=yzyw>xU?E;i9JHuzg2UL9unc^ zaaR7SmcOaVN$CBWOupz2-c%9H~Y^jatxkw z-r&h91_i~IS|uqS_+Im-VVckLm(Qw96p%bK2XBmurMTNl=W#&I)Rn7lWjs3b=>Jx) z9q=-dVWJ+t}a9;(zr^v?HlVs#$Zfb4@cEX zOW66yTNR@LVcO2>2z?#*2PK@=dn#m z;Mbuy1#);BZC@_8vdvasY`B9Uh2Qd~2yp^cK~Km7r>U8+R@u;1-}=Njs43iqe@OUjmP>BPW$8dL7)O+N?lA3=%v9eP?dph5JWqQ>pAAx7 z0AkOYUn9k3W@=o_b*K51$Yiojz(+xqQym2Qapqw#7 zslv@fd@r6g%BiMf7kD)z7pDD}aQM{tc(FCwpRy&L#@(Tb*&fp^$*yL$DrBAT={47RkP59Ca;Ge zwnF?OClGz7VYIU~m#YHo#0)l+_N&5|1ujtWlz-62*Aw_$Ylk=uUh~0mlR(z?!iZpQ zdces4P%LARP?o<-Q%Q2AN70s&MgjzJ|A>fHdUwY1%l8;Yyf6W073%?%F%y)E?fR!UYwlXi-*R(mK=lv>io@)#n!2_C&SK zkR=!R&w&(UzAo>ZGuyRmR@ZL>>NW@ajajm{B?Ej7hA1-Jnl2o=E4ZkKAwL2XWo4H)A_OoxpgHG!`l&jilA{Qs+>|$b z#i!Uss3EVsG9GhWvfj>nZH3GA7_i2B=rgZlThG$?+?3~4X7lqWi>`Wdae#er#zGp!=fq zVxQ*>ojBiGKUK3qccIHl>Xv=1fv&MiM*PpK=pi>#S&04kEVV};2xZmGff7J4fxR8U z%r6K;L_Rc+!KD5@?}&6|1@$Qk*RNp^;qOFf6rq(@3?FV}dPW?y)%df{1~x&{t0A)6 z5d^q;7#w!BA2ApdoN!{CesA|V_l;lggd!sfqkZ*z#>IzsTvBXvRwsS z;UX{apH9t-{hPA|AFkA{OSujhgL8DumByCztiVE1PfI#AF~ny^@YO zA9GB%jq7$E%$}yJBwjU#UYhVHwY^sAq&ZaX)}78!8PthG@(p5jO4oq0>dm=%<~H^9uLqGtr_?q>k~E`PJseyyg0H2uLj&@P_k?X+z}oL8 zT2<2pM%g3YtaFONZN&FykGo z^^MDPIjEV54*wQlC=R$@Em;7$n~+qSlz)FQ(+U6Z4Bt&1EU~bRww@^3Z%QH;*NrMj zug^y!e8t?r=tZ4YncuJ$^MwY=+x<$Y%hZTb&OIn}%oBbJFgTW$CgOmJB+UY*e z7|f7YTZZv9LK}^X|M^R;i+Puhq~`bsHLO9LszH|%rUgzz(-BNc;5+F_->(RU z8bPsQ%MnW(KP*w)t+RMKWnjymX}jT?nu{tlT51xMRFYS=vsM^5iC*&P-IW6Fmc3QV zzT&6myDcyIi>!xBy$kOtl|SyD=3}5lrp}mg2CR}FojS29S9jW&5v!elDm?UF0tm1r z_29Opky7bjEjDSIl zv!&ey&6|ef57D&I^Z4PZ2s;!11ZdI{o%GZHay_F8sqbXD$;%|FP#wyO^cf-M_L(*Z zcEr^waBL2NY(ZgZ3wf6icVa_H>EsM!#dv~Wi9|EY?}Gs8DHONuV(1r=Ej81jzMrOx z0}9&w=hHQur{_IVzV+K0ay>}lU!FzaTla`GfGJcH^>gLaU}oVh2g#* zW;G}tUSWpG$P5BQ?dz2hHXVWiMigQFtwPyJY+JztwmbiS6g`|zOO2;$Ml`wUCrY*| z)%XNOb*-YDndQ=-a2gfjToeTs&sLkD=y&X2h$$>7xA-V#(eQ9SiidNVI5DWX%s^3* z?bFwOwGjm=qxv}CdX**aK7`22GVdYTi4R#vlkwv>#^@u2J&0b2FC7v6IDWpGe+Sb}R}|m`91*rfKv5_TvJl;2 zm;))3d2(`|^oU+4d)uV%Dn5Qr=j^g9iK0^ifL8GU=oC$Yw97`hlvt;u?Y_kUB9MDQ zMGslZBGiq5Q(NN&yy#Ndeir4c_vEeRs}pe3yqVIq!+zrSOqy-hqE??g`Ip>{C-q*+ zW$sZ?tinEV!W8RwcQVEKUeN$Zd_3Cr5~OWx6r3^HIblLq($FA|VdcW8HYl}2RMpIB zo`9m@@R=EWQuH^1wSb}LGq_1i(1a$QHT5sX$W|P`haBHWCQlV1KkYFg*oLbRdt;vJl(!SYy zJZj+GJPmE4GmP(p7Ml4;2|xCU=CGQK!OO%7Vw%jCu5DS6WD zERBUaGZjMmr7$`STJ4drZr7s>t6=y&+?8J!2{f&v;`?)U=1v|oxDGtM)0W?$*f_J? zaiDe0GvZgKP+L5yeUs%PrO#)e;~M__p8@RK*vDxCjZG|u=_hh-hqRI)0VA<{NfRqj z&3s!9npnVALD5rEhuJLgxV72-ySdcayZN2`>x0e*hf!k+z38yp$zC0|83VwPmHK9} zz;a^R2!w65{^!5jS(d?iB5n}l{b^j`2avb#Is9Ma>!>dLw#5X}K_UTkzn2r%Ix*4W zpJsgpghWw%!r0+}I~lQJI|Ozyvtn3cB2?5(8>aK5khJFD`@X2mlzQbqB$KRkUNetK zqeB4Y_ROWO%MxiU%vx3cjp`1IEA^=CkKK2Xy#5C~CF>S?d(HRXGuc3(SYQ3!iY%Lc zRDRT&Nl^bW_j*cu25>$oXV%3Uq{cq&$b_ zf-DPJV4h?XO?6BTLdQ?&n|i;wgc?SiBvxwlH~WRvtp@r1k{~|3rFV?UZhRSGMY<*9 z`d;$V+O^z4O776qKIFdlO0EDN!rAlSTlr5|MAOZIsOQi}@(^mE^V zm8>f8(zq?J9$|23WB8+!J05L)cS)4N>hC&-?JVPb>cJDkJITblb*7{17L%+4#NpB| z`xSuR3WG0?c=*4qwjHT|y6OT_DfU0ijzwk$kVY4n79^j!kpNLfUO0IZ&I%Ic%h5|d zAhz53x^CY~6TKSk7&2l1E^P8Vgx92%e~A%U@g783Jfa$(+fadH>IbAr@|5YE%YcP4 zA=uw6kcLbgA6m{3g2~=N-x59r$M!BX(cKi_rob#Qn0gX)!c65iwH~dz%Y%CB0%pW` zV0_7KP$D)A(wdwF2QL@q2n-uGpAUr#?d!GX?EpQf0sE*p+A7K-ar56B*0;{U!HGr5 z!Ko)#yUXy`y8s_jC>TMmw5tMV3B~F-(lbhN->dL!528$Cmi0jgB`&p%-F}n_UP(v`l$uPe z#6HuW=d_Wfj5j5OYrPkjZoUpKBem7+zYlZv!RQZLN%$+yw)mCh2wd%a(w-jRL_Az6 zw(!VmIext_6qmg0&795G#r;G_QQoumcXrlqq9inW(PegiGGC>7Vj;(VuIm=majFx3 z+zw$(%kJ6C5u;UQ(@C25p_y@GrbUz?$D&5TlbAdK8lboNW*rTOFVQv5eqI&4X58TW zR8EPhOR zn`C_7*->0%^;ziVpcD4u*hy`P@mVEd`mekpLp&{GshR+0+@UQqeVOK6(jp4@w-b>S z4VMa2QD11dyP)no{ix0KA3>c4%Wr+B-aR?W+ZuZrj~)xU$%Lf3+~f?~92*FsI)l@V zDC_5xCXk=3TD~NJ99+bEGSFG|69kly^q`Qntv8O8JKN_-*?cY>GjP-T*;|H(DzLE_ zQ}N;lrSy?=F8SP=1}M}P?$~|yS9BZoOi%6>b8^$~A!n19Fyk{(5}L<$x{@XHc@=t_ z02gAa#13yS!G$3o{i`#!VbTk2K5(1sZV6`cT{$|}J?vpQb~^iJQ7>mNH2Q%REj-g> zI81-uvZfzb;7_xs?5)N_cJq+7Q;GMo$Czi$1h>@NK<>3<$zOssVU1`;(5EDYp=@ZT~ zjVJ+yC&JT?d3Y5I$)T39e4zlGh`Oyz@`KNfBsgtC9j!Na%Y^r>&;-fouhUyoiE~@% zQ3&@=bAJ3gs=)H~UjOXfnZbgmfUTvJJ)x*~ryTK3V=19lR#x!stNj}0UXdT^(V^QE zeJvT|j|69AW4v8&NZtNz69GNqa6_BcK-e)yp->-Q ztAir(@-9EyHDY{aD4P|^<8yq z-ge)bnGKOpen1I##%al$8IHt}W#N}pAkyV!C zKr?2IG;$pjz|T$Q@%7+aen>MO@aolA3pv#hfFi@?=Sls;ljkfmyv&qOCjU^dx%b>9 zUgY2GQPI5jG?6K_(!)>@mRsnQPoZ(Bja_iNKWHo--1diEM=Mv;A1<|VK%OZDCFPD8 zzkZAx>|;W`Kzen5Z~n4r1(ucV=`p}9;N$~fJ3RBybLy7)~bYJHOl zA)vR$;gAYQ)&F_ocI2w_Z?G=e(*4hJnnJ8P1QQ1u3d^v2^d|dF>cl)2R6^<)i z;rq!Nwu<#pUL5=(j8r@yI?DAVH>=4sr{*3iy~+sj@+bGXXj^BM=8k67N#Rc_0U!&W zwY=7?qNmA{Ycyb0-;$tky zjoC+-MBKel`jotlZRzRrWe`Gu)b~gVQfe9(AJLWR1I=(DbH$j=HI@bYwh)P`R){a>&DGXR1K+g&Y3XR~MuIF7$C?qC@X5-c8OJO{ z862#DW!^wTabslsoJI|g9ehnAF@ub|?WOjH#-_M)@OMr>&To$ZfOVSAQG4^cuFzFP zf@q{crpkkB91H+d#HKJ0USS%OxYqr=o`9L}IHmBpl&2q3!V5?(JY-ySm_F(of<`sG z*jU|iOE&MbgMb2dy^99EMbC7~xoO#F_CIb5GY80po!5+QArSw}klodFYZ?{ujL5*| ztDL12eksOGugG;DsL$W&<|uNBYws#Cb`1bgGmxU+y$k??&nDM_o|mM7kdV1cf2Jpz z)_@2F_nhCptleYd#*)gsY>QPu{Y+VJqPZ1Aijhmqq!7;q;xp_<->_NAVi1}+K?*&M z5de2H4Ua3=!@a41>6)RE&*(Ivd?ozKPy!^X^gy_HS=gn_HMa#2L*oS=xNqbst`ZcZ zk|jPJ&o~pA2yXkF%ba-N@UwYD6PSjieSBxh5fcKB{+KEug8rKi=ugr{=_T*(9k0yY ze-GhHlG7Bqs_w7V%M$Zhtc9|BnuPosv4B9`jO~po{%f-3_n$suD1w!0h20|~ne~G6 z7OH_;f%;R^d9&vMDIP-Gv?%vaqL{=j8BtMobbm{e2{{S7)T7?P#||`Ie{cqrWx(;; zx#T~NGhjgdbEke#;o=Kq40vLLm2-cthM0mzlLtCQhFP2Thag_%D(!%l6OTxl&EhzM z^e$=czND0rp+90gs2rj%w_5L<|AffotxXOi6XM!;t17ckn--lQM4k+UFtE8R0=y4- zo>FQ1%bUJxO(+#8ztCCc=O%5gLvy7PH4fPy%UPP-F!v|Gj7aATaV30{e#katl@V`& zGgvy3qW?lF^36dW^Q@=_T>%jHVMnWurV}qx{GaTipp7uUtOps=Xf1xts5u7H92$=1 z@AZqUcQ6R1bV7FRXb^lw7hHJ5$ITa1=RmX<>h2+38*sTLi*}-(=hs`x3$bOwbl|ZD zf27({9=pxXLgRY(0q#LTKE<%ar2X=VKZ1Hig<_k5x~|M zwm--$xjOEJVm(pson5^tRCLKG_e*_!=xrB7{IkD!+OY~#1y*pYosIc>q|WI>5i!Ka zf418ezZ2#raZkKAftG)ukkh(i@o6wxs{Hn1;|u4FI8=QCB#1pagLXi;@nQf*!h|x+=0E5vuoBWrUha5Z@eqOdFoDTK zfvPe^*(iKb2}AZ1YeJiIo8f3AeR~fV5EZAee`q+l+C9@0$u&_*Zz81_bmG6#b?xa4 z@j(MU;KrHLC9n=I@9~uqGPlf*fJkAFqP{Jt-~#= z#fkiiDoGGy_xnPZ_YY1yM2lB4^mwvLP z8Qg9I&7#?V;^qlLz%tEG;*@9W+_)}_0*vPyV+&|?Gsc2aIcW!^ph6a=$;&yVpu@qFwCm|CEHhp#HM6 z)Ier{`5&BU9FvKu>xC#PkOadjfcoW_>Zvh4*^%fn7znu27Lbvj8h{|~3f7)2DdncX z$T5J%fdEbzKm(N786^7gtN3QsoVNf|4H25*dgc-nLAueA4d`Tbf-+jVe+H|R8`DF5 zP|jO3(JHv8SCR2hpic!LoB&8p420fvs@hjTs1N+~rkmnbkDsHWK|4LEoDoQntl>5lh=VR3SbkAj1 z&l$ezrM1AIic&3zfBTU=)~BE+fl5fMQXB_9h9l>uQy|n{a+@~V=OYWQ6uwjtYaBnc z3xl3Id#=v!o8jCz{~eQuLgmddEBZ5%PB!Sd8!`fG>>d-?j?J>A+!b~PJuqyC9&52r zZJ=+_0J`TWsNTArMt)%+@sWH?_I zdiC3$n`SinDv8kjVed%DJ@+*TC6aGbZnkVz=|kjYb{96fh@H_xwDD(Rvg z91!-Vu>V?vlHt5vEz+b&A>s7qQf+JU*Z*3dQIqY{y@W{Pwl#xGB>KV~f56q?HPlK6 zZ$7@K(a{$Mo!G`qi1nRJSuQ*V1KN=mVJ9K_dH+i!G-Q9b9~FF6re;$)Y6}{)V^FLV z-CNH0Sj`W>OPfY4sP6Fi?UaHA1u~bX@QZE2)bNO^X#VcJ+j0E9XP?`L2 zgm6IuEJBb@$cVc9xQhyd3L!rP@RNU63f4V@t6^O_?hhSRe|iqGKB2MmKi#aRa)bhL zacCIeGs!g5YfV#~YO3VkTad6_1(YFD76UL5Dmc9{g=jgUw62Z{7x+QPMeHa>N9zzI zMqXDw3;w~<-TnCr2r&J~??++S`Yf^eoRS$n4yDXdlp*kN+;Kq4(j2J6E^HYK`sd|1 zuyN4lJ$3jiZ0Nh(>+hmmKG+bg4Zo~t0eIddXkHYR#W*>EjRGuC6?ONK-xU3bPbwq6^ zX+w)xd$h7vZ}S7W&V#GZ7(Vrv1sR}BGhCBeA00@r(ZwzyCE>hLLfZ|~#x;wwGTeL# zqs$$pevT%V)y#+0Z8$xS^&ECjZ|P?n$AyW_cq5}yfQpxK0ALqsY?}7L%_1L34BV2^ zCETBh9tD_6yJTEqkj2sPYSzIp|A_~QSt`G@JxQl`M9GclqS%ULQf$KDD$K0}+B3nl zuT#1!n?>9Ki#X`Vgk6qWI7Co&;UmO;Sgw7nK_6cEAB8uCk^i?Dw{;Y)DuXeAEi9@N z7r4`WdqQgyC7wGe#G-_Bv?Pkf+N)FhcNr16=%i53k)|6u(JekjOYx1w<4|iVBK?#S za@*pp1ja@H!IS8_EcuTd%~2rkgK`|Lb{Cah17V0=C#$O#(fKljcxgcZ)8T;F@5YS~ zj>3Nzd^oNw@e1){S88lG)u7ybqb#bBpe!RxO3T%qlg?-wK`3XodLOlcGK7V4X1@6h z-%VaZF5>?H3N&6Ce#f6h4kJT-?I`AqFOZu1GIrb&JWH=VJWaE66~aC$T)`Gwb&2@X zWEHo^2^PykoZx~mWRd1mqI{yIvZwB|Px_dMz9@lt2auQ6mQQpD1a9r^{sRG*d*<$o z^~D8wSril~)i0={>B0;z!0-a&d;;KaJ2O8i0nwFJJ5=~{JF|KJfL!6wfo&ZRejI&2 z8cpUqh-gJkZ(a&yJKmT`{9aBgeHY8z8=Tj*tNJ@C;c=IMzz2AwyzW zYbLda>PQh!NwlXp28L$vCW;+t)zIC&Zqv`cg6N;S5cg?&h<^H`l>Ks{j(t0nRt*oM zEvKW5+~*JH<_rTBeN*-Uo!Z!@`5_=Z)OXc9>pqX-A@=J}kQr~U+&)!oV?K)B^QLoE zO>7)?*6>q4mMwKlNypf+o5AvCnXgQZlDL`pvFp$!%9*Np9DO*V((-s*wElrA^CZoj zxK*o4Yi!;(?%WA7;+3JVW&nC`#Rz;Wrhk-gX@$7i$-{?6{D4QO80^MJFOkP-B_*J8 z`V4_x(Fx@0Id~7ns%nAbWzr51o@^K^kb=v?HVI#l(3!FlH)rygEy9O9S~t5BIWnGe zpz9QFBo_|})e1L)MOc2_O@z9uzf1YTBt)`gdOYdiCF#1jo^mqxJkYHIi;OP^LEM^M zFD+E=4b93br!^1fp_7gJDUY6TA2J-NhO;gTYqTFd^LCQ&rGbd1J3gb@3RoD_AC{=e zKRAauOYL(ZXFpO-J`t@c?gx79Fi^NXOMKnV@Py&hr(rOqf@E67%YQ zC%tN;-pPPrYu?G zn_62EJzj1_i(okb6f#d!rm`d7mve|D;-`HEM)6fUV_ku4rkOa5sE{!dOhzI;x~eWz z4t@@%tM=dj7~ty$xn>g)Qh~ZOPnMRDAYM-+#v#LS;(Y@g+^+~tSAw9oa!xl5&OqL* z0z!>qzyBBueN%~F7fwBBJPDidk19VM_xx1hPOeE%hIJwk!Inriq+HTFLkjcSBD$@g zCSlci4^DSa)d5DPXGb{Md>prRgIjM~C<=&nYC5)VV|RydXG~>GWi`hkI4GWLlSgak zVkCXqO+ReW|9nm79vYHBeE@fwEH7>sum+mv@8?a0fQWu9m^Vfjey<X(^0CIMbM*Fr>6LDl?;G#LQKjlOXJ_<2jHo&t>UChn%PmU%SWcI$i15nWZEB2LM zm}#RZY2T}{dpnNz{b4^j_#$N|E?5|~L_;qpA|SSE(WFf1EzPV3KedL>9$CN#^=(A| zI@~LL|KYa~Qtt}mK1I!ECY)Vf{>{vZsG#sGoARLJaGC0R2jp&xxgKf6>c+vF_*9}@ zyw}TSo<|3I$w&FWQHc`+L{c*7uM3A@_1-^xGNb`GYquqw^lO zu$PMV)^aHjc2Rf%mr68O3Y?t@YvwGclkL+22J&0 z=mnxT+5k=C-{HEy&goYi?DgQ!;nCA9?6${s+i5eUK7sPm((k!mF;+_maW>PA7xnn_g4I-3ExB|Au!4VQJq43e7OA9*Zst#;mgaq#ZWYoRr3A30Y;zsICQ_ z`cl^=PC&-9Mv0qK;(L1P+epQjNUYv)(6Ll*71~Oe`-Wo~n?EV>@Mh)Ypb-!0Vpc=Z z@SZ8?@;UkZy5-~nX#B~fdyC;2R#`5XELDH-FP4?$z8I*h{jJ~6Sv%ncSHBRm%@WLn z8Amkp0dF2tbSOmKQyg@~C3;K`o##=ga&94;ezF%otj6!u@Za8wgK!dV2l0N24J1|d zc@u{OLgR;2`qwg8yoQ*4(*1Dqk`AS`;;_wF8MpzRjMCz3SXLT9-jt?jx`vD}Pz%N? zLmy^xxm1Mm5?15UklzNGY3KHPLU7j12wH+qtfn@?A505}tTlDT58m}=G% zHD}$z86q~{VdSQwYoiqL)sBy$2HKNP9%J9GOylDpAy;V}=ovV1v(X~2 z@`_r|j#=c7-+G9b;T)itX-DmN>M;{zLgVTxK;bxJ-YSirfa|I?6s3t>nqYHX4cgky zTW0Ww@s9Us5>X|T=(ux^JhT5&0U)Zp@q;O=X#(py;t{ifUB>gF9ennGtMExVLh0@4 zHlZws2!)5bHt#r$&yFz`x_U^KK{6rPJ*qI*BQY+=EF3JPSbl_eP(p&g`Z@0C(?i5> zwV6|U$5q9onSDXA*Ng4XU2Gz`+(<_byb&WfsHG4j;PN~#0C*l#k$_OT)0*^XptyII zaLq2X@{E% zgc+AXMB`E1@3N937~w}Ua!IXQ^L>Ra*}r25S{o%w(-0CGT9El%xiEv{hL$ui;42<{ zB8zP7sN;2@A3%)~_}6}a?AKbtbm&(TvnQvJ-_3G!1-#zgE7|r>(PV|>FgaU-WRC@P zWFL*zPf&r#M1kn$(Y=W5`O)2v>a5=$B-={C0o-wcnaoi;?#&-zc$TZ6r=O?`mp+UXdVTszam$*(>`pY*=%awA9}B{dMYW8( z8I#+)csHU7EM(RYTXI7(=|_32_iC8aK4Jo5F@D*%mgHCClS+!{DdiC<*XtsclYQNa znILSfpyO@K^yoGxCvmBh>cv%{`U{Gqta$&-fJcjC$kEe5BLH% zm{67T8+)sfR3PxJwng>SoLpyk{t2h_O!Jl`&Al6kjN`T0Zf5g4@W|Mxy_UM+{Y1qc z4oDg4dmx7Sj1BcT+YdH^RUWuyngsuKIitYed0{QSWoU`{n;M3v<--NTCeONiI!t!! zIp28fYXBi22Q3~2O?Yn2VxewgsMa@9J@Kce^O6!WL@H@W4jRfKJ-9-+tK6`1H&hVdI$hB&JUhG|(e8g6HMg0S} z7{pv;*)F#efR)KL#7D*MkjlVCI4htV+ivWQ0t_YsAgu<4FkIpG&A5QF7y%@JItX*9 zMvi@eGlm+X+}&JipdOSnad?%j%U%KSyaE0g8~&CKinD06(gJ=bzpz-;u$-mK?Mc`^ z^Sv=X_LZbA1+7U?|6_hiD<3kM@k#KfM+#hEdvmTxKe2NopFK{i+#A>a9C=YFxQb{_ ziteWQ>yBjIPj7os5`zx~L?XOWTo!}xV^#@C9V#f$N6YE&lQhRR2BwOA*w3~OKwqG5 zpySRjFif{fHV*Ls8w~agqs?A9l*wbd;UmxrSylS3Z`i_L<&@m#HL=IE7=L~nA8_lg zUeqTSI?+}%qaIdAX&vY)khVxcSUy3mFjbVozO{fyebZCY=TpAiOxb=Lpq^r#cqJ3l zS>^nl0cwR#1KUB479)^>DDFtIg#5KFZxdq4k*FSQxvNjz>rSpt9|E`>unE4FY2}vR zPC^id8+KdkdOG>foh_Nx;5hRm?GPEs7rMY&dJhu>bt`bjitW2+Gzb?z9t&kIGM^{K zX{pKoAWErAV9oN|mlG^|(h-z(m|KVhfNR=9^i0_QObX9u1N_kfT5>5rx61s8Gtbrf zb|#WsJrN;zM)T%;7!{oZwFW$M_&ehmmo>BF2B{A1P6hXctQ{n33Coq1OdI{WrhL19 zWRG!6@@{ZC7)${Z-2j+rD-|&S)zhNNunHCX47^5#lcinZ%y%0LEakNSok^w&*XmvQl-|Uwxvgx$j>0=D}F^z z>jK#SRWikV+u=5o=BV*&+%nUXFW?TIVfSKQ%Dda_OtuLN6LYRN&chs#? zD+thuC@R!mLv#-AswOO|!nak+vd}TnvvpWS3txDzYoTVODM`SU>B#(DR6I4UjI=vh zQX0c58u)_xRLL`=*6IC2u~-e$9M+Sd2dn`3HE0j|rg-X1RA?`*ECv;zgPc&G|3~93 zn%u?BBxHoW+$fhk0KFTvRb5Z?)Gb|&cC#wF6TL12Iv5Z*n!VmqWY0XRqNlb2i_ho{ zgl4LNKRKjCKw+M=9I32`@s#ZvE=^x0#8W3=CyWu-JcW@CR|*hv?;Oo|IP9qo?u2j) zOeGlX_iNo2E7v-0P}V$NFyHWErZ59HhAwFdG+vSedY9!eFiUSZ+s=uDp;&F2cV&Rh z1nD{+WbC2eWn&9ELw~z3hTySO-~U{+w#M7q^*&(zoEC!bhzo9S#Dx0`P-5}O>MT$! z1oig^GR^cR(VVuD(r`0-s!Evz3kT`?HM#4vRb773d6ld~pA+Axt`ktN%6^>$&O9U- z_awuhzUeb}gBg#3QTw?i5b5pp%&f@DJAAgUKG8g#S#!t{!2G-t*a8tde&4N5Dgi=D7RpM{hjvKp3eV#R5 zar=gpII)P9-0uI5CWwnp2O3ir++RQ}t9Pg7t>~tjTgvhQis@SGUX4-Q$6T2_h^KI- z3{~Ok6dY>sxnn|cUN?+MVcGQcBwJz`h5uRp2(AckaWdXTyeE8CjDLk7w<|r}9E3IJ zJ~l>Asg5kc!h>Pi0ghFNfQ8FZ&8e`FjFO%VnPpD5a6}GKHi*A$w#oh(Dq@1q&~&VBuZyncu*R+e=(kJO zHPuZe;_l(~&>`*$p}@meJ(6J=gx*gj(uFfUMuG88xOq@ddpA2ptL{NGxq7R6suLNLo?|!m$@yjnyw@8m2hT9N- zY#LN3N~E_DN2YuDt+Zc?ee_oI9I6^Ccb5S#F`DcZ4?&x;(*(%fpVoHs>a{BytH%*c2D;pyFxfq{$_3!Ibv&98H+ctJOsDB_xz_%w_?P z@ODkt>RP+KvbyulCJr8i|#=L#WCiXIYK_mXw84^=~w!RC!`4jJ8RD8ax(tVF_YYEunI& zEDKQ3+aF}KNsMx6OtFy8c!#v;>v8Lup-F@8qjdrKRevZN%B9XC?+iWB!H#+d`$EO% zkkm+ztXE2#+f0J0n2xaIpSP@KUjpsGWtp7>fzbTV9Bq~uReiw_>{0E5H~MoN0##OS zW&;o9=S)PFLN#EQwg>7Z2@L;Q0^i4dv(foA?0r>e{m=L(CYFmRT!u%e^f0P`6GLMv za%rIE>9{0X8Pk^i&aZ@4z!ll0qV?%XgI))v8<>NdD^)AViPUkF%5>c8GHxF#`8yC-5zT-)A8CN`j)6Pv@l;@Y>}a--An#8S2QMFt05%KrRXwjjbISx+5GP2j5)Xq6}E%+ zwPl)}*KhL>CpIRo-t^!wm-3f!@iehqiD)Rh7A^V8ZJmo*O}mNPyS4%szpx;MtH#ep zy8c}S+?geh>I2w=y(oN3$F_8x!NX27X(rLCoHFhGx%i??0(Ceb)Og!Eo(Wv`dj*!k zFb|n?DnB+m(Rkq!F4Xm~Nz>q=$39J>_p!X|V~G_f=!bJj<%)6CvH4VXWWBk*Mxzh@ z_eBvYrZVEP?;ln@vo7S9SCQ6uWPe}liicvi%wdkvukdI+>|)xqby}oacqyHA(R0EP zJk4ZuZiKbXfiq4TGl%}=9NCH(44%vG6V#}ym4#;J_;wYFytwe}0y%7$N>(dfOvPLK zN_ggZTl-4MEC``4KuJL*66#TacoAZ+9$il6Dm^w4DkE4en$!Nm{#QRiKxG6_wV)zP zM4`0Lq^A3_|Hb(@zicx5aiA%ebBIC*-&W*d@Zpq!OJ z3mT+JD40hP5ys&1IV#*Vx>^|gN(FeYeb9I`Iq`;hkrZ2O3SX zxKrt@&gjS*e&IMM3>F(wq(henL2}VGt1opngSBN$xn)P&=vNiF2u85QzAm9a2(z zGH(-*c0(fyw)j(to@B#oiv5zQ64RxT*e|6MfZ%OEG>FIUZ87w%>PG_Fx^8>TJsFpa zc+=Vgo2$9y`|4%FNW4HbeEdTn9CstBN_>5kg1Rrf6bMXvA*a%%mL@vHRW9G%#jbLBub*0xiC{yC z+w2ens*Ev?9b0a+=w0pLLAg~JM_N-|*`nZJ6F33k2Grj6Gg1t{1EHAdEDqvZ^4ghk82#$87kS)m*6EM&|@C znk^DG19O>a%Kio5XbMHKFtg)4bupLQ)srS>VpNH@#Req*0#w5X5Qhg`NRH?~iO40% z%PzSe;xYNrL}>emc2Y|oc7ifm2sX4U)^P9_v?+G!sZ35M0!0OCim!WxHStg7Nrxdt zv9s7+2vzt@hvPEtxRoTr-%b7Hn+du?o8P9>o4{ftIJXmNh?u(}Kv8 zRTLe$hhAX6yJ9UgJKIm#rInakqFo*hHFur3a)Ed^HkoWoi&ldfSk48QBL7ti)J>cd z9sUJIh~r>Vo9~zT8aMwXSEeeZVEVahWOd#+ld(iqYa>pYSUHU2kqG;wOBjl#r~g|S zg+R;uea~uX=$$ChhOFc;0V7SWReZ})P?I*`>fxXmZzzQyXw|GY3 zmm8o-&=q^lc`e1A(cfrWC72v)WTU+TGVG$B%iIF^KUAz|e$e~QXA5DP%q~X2^`tu{ ziZGk>#1(m_V_~&Wyb9+Lh#ywoCY9sqxRjg@6B8AmK3k!^Vb>ebMZje(zz=T`#1b*rMEGL$k9of&c}S=Z_qV559Re! zL?r7>Jj2ur*_2i3Ybpp%0#QdaMy)HFB8evR3tg!0ZdQADYIeIGoRiHO8mz#lVUmp9 zV~{C5zA;rvJKO^_v%OU9csv-F2XonXRSf`6))bhVwT<|u0(piuDOd!W)?g}%f7B|x>*ia6K_ z^-+cqIL}+kFZzmYp_<_3*46*?em{5+a?uX(!+OyPb*{d8-mywhnh>nVs}1kK4U<*x_u(8JHvywugWLP7-!~{M=Z7R*IIbpsCqZ-Y z;ol8!r8R%2#-ILg1I^Ut^(B?bpE71k>ZxTq7hTw#f{q<5PM5MC&ll9ykM<2|zIa7mXZc zlMz};n8LLvMC=6|UEhH0sg?)mTn`-lcSa>hPuwJMeI5x#%pi$Tlx)A-6qCawA52A$(7rz}6RDkD2t!=9*Jw$d$*cp1V`nfT8q3XE3SBIyiKd6Y?v)%tLk|`aIzg zNTkSt?k;i^q(!6YQr8{==ouV1L<_CJ8JH+B1*~#alcLM2v)R}4$AtXV^sorQGogC~ zqCj(Wx(bH$Y~(ItvAO7F(K!(+{?xVi36M%2x6u>n0qQ#=s@S#mP$ig)5O=TFMKN+b z*qU08?h*Cm^brRGW<1w=*&)gFrh^G`UFCF)ZVuW+Bv2nxfHhkdmyMwPQhn=8yRzr& z`E*50n=Pk_NfyJtyy!Z5Qt4QAQ^tdlNP9y_V;F>nr5Zfl||RjJbDmVwlw#@pnV%E&3jAGa!NE z`=iF5MLtK5Rm~I-)aL~jv<&Qd5nKS)M^9PWT!cGtj|I0rYWsUt`|x^HFyEnJsHWWF zLeHnj48KNlhZYr7@TAqY8o!C+Z5(?%czS%UbAZKequ2KlGhdd*0bCHWp#iGco5pAY$H6 z1*t`5+R*+w1?_2pk<_hbH(*To^L`5x=1On(rUMIA_ChUE( zscN_B5BBTO^eM0?;*760wFk)o1C@ANDx`Gp_FxMLb+77R`{Gkwd_ZvRXC-NV%^s>9 zp~F_LGRw7|x=v#=Sln#^VV~IqcQ3G-9$}Dv#f)cu+_nDX!-xi)QlO62U5QgM6Zc{* z{!e)t%+>qxoYxw)U5C$p?Llp4V$q>sM7rkNS9Gm<<7Ydkt5wjEES+E)KYw{rfmbbw z_NHkCz{U&_K(6h)21US8&nX}|xN+wm+t>f*9eVVa&R;prt8qS_P%0WN+!5)U z|8>}S&c-W=?!r#uYrKP&za7EqFUy<)5zJNcPZYwuxUImpuGZVa_D#Tt((-7rLS zk&q_1A4P!t^$Lv@(7O^wdDThjqN2CO`+K+~BxiMh{%+iJPZtGO`^WKpo?kP{1Z3_&YUy5vw0N29b*b$;wi8TcyN*Uc;E{WNhW9J1BXi2i~moEA38YU1XE0}Tg6eLh zUfm;b!%*z;lUe-mk7bF+RdptlrTmvO`?UAaX2@f!j?v%a?%=fF{y%cP;*5Q=ltEk1 zLeHLeGd=}zy=`@CP{NDrpqG8oE~dJ?`wA%HUJJ)<;h#7w+J|8!^Hh0GgEa#0J(JLJ zDlFCM$c0$6+oB`@-vQB;ZMY;Xgtf&~AY~azvStHGf%$CY3O&4`{W6RYUI7LH?nW~V z7-0J_5}>h-8!BOLpoT|#^Y)e^CnW^ zG!xWVzr4lB>TCRc{FyGqo}!?#_Ko$TM%}?`lxgNcv+yq4KO!r#pSt_ft#B#=t8;SW zMA?{3QeO2C(zM)fC5HPU4iDBOvjdbim%+eUqd{^Y@8-Z%g<0NfeJ1hkJ?p`!Kk6ce zC+P~5kQdK(f|IL2nosfQLfrju$G+@VD=ym^U>ayS9+`D&<)wfk z>%EN-9bd0dZHI;U=q%Bnid@%nyZGv=7NhBs_{n>BYg zZdN(bwsN3Non}}ZbrlWD>_2a4!cXs@(uY4l=z^2T7;|`Vw|}nI%yC+P=lN883*&0+ z*Wk4trKTkKtkS}ER$^(@!G*4m;uUs%e@}FhBQPbR!oGeUoYDe5U9XA+Lg|1O`55S_ zzykrrjymi2v#jD8y%`Bk!n_W^!s@}*5hiTn8(Xp7Nng?HCx+jyTZkSKU^s`&S9MoM zAZNAu`Lhbi#IB=Dfp~&jBMKPZ80r>>F;-)kVB`u)1SzVrxzlpVEY&p1nTmFc5T-6U zYcypfNmMj*VYPma8FV(41KC%pd4f`w1-@?Cj@h&;{D9<{nSE|ty^}6I#m25AC zHAZIQTa+kWCB85@fX51;{nNC$1i`(iwsKz#?uL#&iWz7S(W8VSIxuM64I~#~V7o1! zS=T);1~Y|J(NiU`Zh92^`hjaSK!2J8{&(;Sh^r5k+jx!iml|9DQK$0l*HGMBlbJqm zg-2t|gUhKftuWTDBA547is>Jxuo{6`T!v)`q^ zlHoiFxXtOHB*Vys_LfU`0q2S!`w7 zKY|e;le$>ql!@+^zd$Rdi0$3urE3(=)q}W1_r%KDaUmc2u1pCk*uQGYqa^*f8qs!! zv*x%qJ(*E=z4MtGKlt-V&Y<9wTyuLh$-^LSUIhawF5YYi$`&Ite`SSK?(o^?`agL7 z&SI%Lz&NTnHvR0$Z&Wu&Ye^stvm|Gw{?_^A2UxIh6lMaQqe;;KtveE8KwgrF*^Z3{ z|Ko(I26X%yFcZp-X31_|4dGewj4f)EfhaCui}b$PMDGi(t|lYS@DhK)UkQBOx- zAa$0_>COeJ1gSUO-khcS97Ak4t*K;ad8?YCZh3BPHgii(6e%eml9)dFda7JH;-AS% z)Fyq$fr6pp5s4~7(Rm_Klx!IYV7xYU<)k9;B#x&57mao|)(`Y+eS5^C&xnZyH3)l{ z;7}H~gOV>ag`~wcCD{JaNZCF+k{9q*NZkJKvgQlRls++OLfaU$hy;nX5^m*E3v6W_ zww&XIQML*IeE_QzvIPI^iHS<}gF&b}mmUO?6O(Z*cdiU#=O1>f$<*RHZj*gK+heAZ zu=U$YJmu+UWk(99{+ex6vtkJ zuGqgTGLwkrqDPyy<7Ap^ky+7Vn-I=lvuIA2FueeGT{hpU^tg(*r)6ZZU>k1JJbU># z?#y0t9;JW5D-!|=#0x|f@DnZ(g%eHc`o&fpFM@xLJtaVc-)P3kkx^dVstlBCLiRF# z=a6Y|gA+yiY;X-F;o|O^8Nfo*ORm^yg*M3_ITh@E#3iP;=_Lee6KnA+{~Mi`M{x)J zsqe)jw*Wan#=p`}V^14)EXkr}A)RWai*RW`mPXFbRN%JVn?VK`)Nr#HYgalQ>>x>U z1=FZi|BMbnAKOf=6mdQ4F+zuQ8sF3Q zdWB*K0t{z5RBHqG@aki}*B!K^`f#kMMYTKw+_1KFHC$M+uKOzcJ_q)#=}n~MTuxu# zQk}w;v|A2u$-_8sMi@Zd-@i_uR7|oMfXV+b<32L`z%~@614d89n4F{G|`1u zcpLOqHY`xpx9Vh?SKuRb8X8<+LZrI&cgA*v(nT|_+(*F2Kf{mvH}|_Z4sCdCSKyBe z#MV(dc-2L4f3FLP2YM7t23zSbcw;Jw z)-*dV`?9R@rIOi({36>?taMX35tbH>CyZ9L?=p(hEX>7&a<*44P#7?N0zg?ynt+Nquti`@GXfOT1CxdWp3lXq^SpVfNfB zIY8_t6aOTJ8E|Rzp~XfP(C37ec`bsiL9C=m$;T2fOcxZQ(u(P?jW#MC!prGqVdGBw zaw0Br%w;JZMAd)aR$9f8^vT46H8=i^PAv|VL_}b$%0I5K-hUly_TmdubZfvn=rt3Y znb@Y;^Igk6fDYapg{v%J$f@<8>}lcet^H&0$Ebu65YR|Nm5m~+`Y>+!giiOC*dkDA zrg&NL`n1`n?#5VBG>=gdjY|>$I%pPU9(RZ?JU~lT%P9`zpFpTla+0+PIYVhDdB6nQ znsg-Q32;Z{K+72r_@@uK(O20qrMhdBot!oU^MUXh4h5S`lk|vv>*eJ8%4XNV9dG+V z|0DOMjR8^|NEj1)j9H|DE}_!$EvvB}rfKk3dK>L8yWM~dfrfWqSo?|UVyK_c2L^va zC3ZY(V!}McP^3yz%;KIslThw~NMb|9A}q0gepZ^-!xo42|B+mL_DEO=B!Louum-Q4 z7f1+mcLt2K*)~rh+gjoGRf$o}!}Z=Cj#A2{dm>ph|%%}HQjIC4xl4x2iuUUBeEdfrHuXXOjgfzmPP=^F^Og-u= z^hs|mmj2Q>bYesfQmT$lkcd-Z4;a8=u-80p&5<2<+?eQP=Y1jP zDN?R0oR{BmKP4Xv{XW5^`!_F9`Q_O^>L+*Ff=CXMW>7?H3h18ti|9X7i_luc38Qls z044jv-=Eg_x@i=H9g!eusStbV}efDGf! zV#y=eQD?RG!)i!CIW1QfHHaSV4fKz`Fmfc^@bToAk8cuNPqMgUtpXbCm9@uX)mK3> zy{!=pkx^8uG@1ScFQpRN=z0f8eIhNZ4;Xa_0$Wgl&WJwX-XPb9b1M*IzoznS)Wm8b zy)$}i#I8XfZZ4^7U`0)h<#qE{4e#-RQCwumx&sxs` z2rDMvoLiN|Fygm=LkAjFtA42%5so2UpTLEtdfY4}8bc zvMOIy-lYex&bkSD&>=9ZWK+bqIAR-!SN)mpxhKITIMF_pr4@nx83ncU|V)ys1C)?|zmzb&5IvD%G1h^Z(EQQnMu29tW9 z*c1)YS9evHtoCcZW;n+G1ID`Pea0L`7pU+LQ&NSl3am0{&8n~)wKL~{jdyZTLXq7f z^$D!4NegKoF-TUUi6AA54qZa%#B|Tl7_M}9&p>Z$o5u;qOP6#I(&oVhJcgD5uoW`){$x2nI3TJc0YW(f0&$xQouOfDo8EWmEDhWo~6)y0~3hi zcu)oh1cEKLFJyU%u4mBd$eB^ksIOUYzl}O89#z8LOk_9uj5__45khAUO$jWQ>6Z0- zn{Ew7-87+=5wV*zg4HUEg{&tjSUNi9Wq%uUDclB)X?=HDdSZw82teW3c0S<6PZOoT z*56Wx0D{pW$9+X%1}A6{#GR%$(>K@}I1r$nDHvyaz&&{3c8F=|5`8KXu2zQ|_0tb87A zyzwCQ+|QO^2V;RL=bX_F*|K4`mc^!6o(XTRGfPF_s%tKeFg#WPE#+Oht37vHv}Gf{ ziKZzQ0#`tvyn79mNYF{L?j3@AI^@tVV3ds&6jvhh0Jq=7r_P?CbGBhCLEhhrtGYu^ zIgZ~QTHCzckexO3ooq^(xD8YD(9OVQT&mFpM4;I!^LNfN;Y`eb*^9k*VCS|mOrwwQe9}~L1RiV596QgsJ58#lNhfX ztq6Kkdf3r74W*oNmZ_lY1;pR^T$r6hK4R~4YM*@R`**kPF~F1Ep+D5XpRXSn=u5_7 zrjBQC4-pD;b97v-YX+S=j)`d#Bp6 z@z6=?;$6!cYHt44(Lc4**vAo-4pthXYdiHo`8cR1pb~XlGe*5PQnU_N5a2PK@37A7 z4E+~r5@^UXf;X_!(U0GG_OJh$g_^k--pkg#wuVV&jrc5BU<{)?lPs2-`YFGxn5557lShwg)hQ>epMI6~vZMRL}jI&a%260tY({ zZM0aJfA%{70)7PmTJDI9m3wX`5xOq5(D)55b3D6H3h3gdRVwCC0lv00Z|y`b%e#dl z-FgL*7hn{h!~|1Iy$ zT0{cWSN8-T1dN~PCEK|;N=;UKM4n>zGtTkL>5UFRKh6C-?PL7zznI;DBrd=Empi1< zDzodab`}>z9zzsMybnH{v5sv<&Je5kWt=*FaO8XS+7#QD=-^Ip4)OaW>CvjhJ9Ofh zJUcDS>(~+*lRCBw?niB(M+39gx$=jyn^dG%5K2yda;&LuC3t3fYkaOOv&mb{4+4aD zS^`6+RRYRUZ$Tf2UT7+@85u9Ot#d5-)LxNic^MH~$6Lgxw}++5wo1y_<9QAU#pt2z(1vGmejwhRht zD#_4od_ac<#Hd7hvWjU2$5ap?y3p_)d@|CJb5OKKB&yo%1hb{U5-~cpFNYe8IwtiE z=@>}PfpPf#l0@RA*!E}2s5!B+`RdO-q9kY8|#Wt%ug$6P(YGlWze-D1;6jjvcE zgnO`j`}2)mcbTCDfji^r>0P<1G&C~I)uo#F?I8vJEMtluJYYYqBPF|C_9YM1^3$RzfCuYTAQRg(5o7Tu*pH4wSq67;}W zCr>{$0^`3O0(BGm_Ol3M#wrLS7w$kN3Lrx%2uq9EiojvW>COPRo+y6<|ah4LD$d6KoIVH_eb_!wubQYh9HvU>F75&gh~*qaGD^4 z&6UJ81Q003a81KmLS~P4J!MWaKqgM!QG*@o5^bn;Huq`>Xud0uSW|T*n@bm3dqeEf zX?Q!nBFZ=7cJtonh83Q{8qXPaKcGaop1Wb`Dj$MAFl86y@fR0sE zWZmtfO<8w$r!NK|2TppaUc`8@HY1l<59`h7rc+iMx?Zk`_Q^2{F}z=dir%LC@NYu_ zz&&AY7*cGseDv-Exbo&XzLOe;+-E*+?y*`no_#dI9;01s=$11)7Bo89JX8RzEI}%t z0&0D+3S!X~a7k3;eX|w>lVG&@>}$te5&&GK528)Mj400`Iz7srz%wEhWGAYNb%F87 zOh1XVy9*vn4*~f{nknhfgwoMl%ou_nBIww!$VSduvL=fgwIQ7lRinZ8(7l%lLxIrq zmNOb%inW|%Vh7UvVc?rrM3x+(^mFbf3s-IzP^LL*;s}4{3z)q{xfGE7ql!diaj#aV zwVNtbs8!_{nwN~&l=7@5 z#^|dnq-Zh0)%zshyJqaC7Sff@pO5W^%uBH3F}?v_xDFzIM%>&t!!cAuZy3XAT0fB)>k#A}-fp5ZH47O{TxUreKWhg z06&ok+!z|kuW+*u_+KAEo%R_A_1$0&aPe2$B+okSuL)Tf>ethtS1RB~{DMC6XTxHL zAffXK-X(;QyS4_pCIY0ZrdA_GiTSHe1`vCNrgKsFfLP4N3txTjX93-&loV82R3}33 zN|6+PhdpGm?(_zUMM(fKIg zB7B`e&gIcIK_80}tb)%~sX3RLs0^t$tl>0@3OC^zT=sq&xa(yszP_={^>MbEq!2s% zy?!c>@$566&*L|P&$!HW*m?q!v)3ek*!A~hJjyKRpDHLxpdBg897Y;&j^tfUCb=4C4?_9<5Pk!aTkjSETu)ew>h5u%OmB$ z9Gl4|0-WE!9WB!xb(I|R@ahTlhIYJ`SyKZ}Ob{kzOF}V1tCOFj;v&;OJZM!LlE;ur z$X#PsK6!|mjDs7H$Moa}7!%(>K@`_C6*~9mXbaX-)Rfk@elF^AtDkzoZBBU{`koJZ zkCg3+l2S%U$tg!jI!0UH^VNU6D%IMsq?~QtBw3Q4ox-c2az%e2dXifI&Xmd)d!6Pc z(vqBS1rZgoQ9YTVBaQ%=a}Ep4@{7evhGAOGZ1L=Dh{SeJ{Yqo0(ZaxKo04rqG^I2pPfNu3LKdC2Fwl(&M6{lzZ>G9liyso!GS)J^A^}ZoiIU3F;tD_AX)KwNv{NLxyho{+eWm}nG034u*)oO8M!BygfkXF8&+Z^y?cbr`xGDZ+V z$9!@u_|es(^|fIeUKU%kn&t9}@I8XvWY~z@0`Hdvdw)vZwup9qxSaD{5Vnn|INtdj z0LiI_r1A`2Yi5o9zQx=$%q-<>4{{RvV@l2m>|=maUJ^*TSA=wl5UoZ@?+r=Szl54b zJ;0h_qw0aBBWxWiMHudOLV4J-^Qu6{>z9rje!s2rmE9*uafqmVmhn$x)`NZum8X~9 zeAPVg%-d(^ zv8DLkwMbfU@-2Ie9Q1TtJlT-`^frB7TN?#uztkG1wi1X^HDc-a9|~nlFt*9$0P(1)_T_ zq#Ci-hYEuGNkEMh;80db>1SEaaTIz8bDwOdTb@>mZ6toS6dW`}c4%Q8He@ANEzzXf z=l8rhZPZKpULldrg;Xb*G=w*6!e^sG1LtE-W954h-8D>~sWc80v6@6p^7+o)y$~`d zGgIPuW8#nS94D?(T`932RVd5&wS?NB9|`v=9{$7vc!o{GN*-cA0d@zXf+ zt)lL2o-_^D(FH}r;-=m@1tzj2_l~PCWLsEjT`J z$>=E+@35pc%?E{T0JS$quGvEa7fZRK#oG~f2zk34S(3(!@xycE`kW(BkQ1QeI3H)G zyk7?>CWTa&b-|Ro!;H3JqK1GDJVx6>q9~K}McX)xFRa$N*3Pd$K>MG6}l%$BP?Q}4}+Ze%(>a;<#@ zfI=DtGu50b8oDDD@r zDjQo6Q!E1=UW;D!YUFb8DswrBRC7$#=?`nO8VebvTij0}KS$C@nwe|h91j5cHZqP8 zOF><%#mrkorYKZJj%O+_oMg$~!+Lx2pam?Y?-MdweoC?<%~OhF1)O)$SY42aBZcen z(2HgrNF@0I9glCxxz}BI$-xDW5S+Ol33C`g1U-4x#MMvtVPntDFl^P7G35gi z?${qrclkuG5IYhy(QpFm3*@D=zo^XBM%Q7=jYSu!pc)t@#L&B33XkhGkYf^tlgs6tB-eW27)rn&X3q8C<~L z;sm0%+4Pl(^E2Vs!OsAy?Cl86A;MXh*4U8DT4ygv+))NK6b3>6vQU@74Q7tMfYYk% zdhP3n&lGy1LNwj%K*LfwdzXr@pNP4}C18>g=E5<2?Qw!QXu8hqXrc6rh}3BLM4DC(-qFSj-9fX!|(#)0w1fgrAdB?D7fE$S( z>X%c}H23v?>fy{aJi_?QQ4>f}B0Sa!7v6E!>O*OEpX} z2O2I7lr%HSy!PAX-1n65xtS*Jo0iYR@<3t_rSqU=+yXPrgkv-)bis!waB0&x2Q1eC zclZgQ8Lh71opRHBrqkMjGZ+ui2rzUyb^gxZK<8TcjvvSu?HOa0&ub0wCTuUu0#zKggshkW_sA~}0=$9wT~IbSi#Lm^pt5;#_o z5D_@O0`;X*q7U@@tjA!m0ohgP)amt@4Efg%splX@wTJwOwZHYX4X zgnp1)Sn$lZ{~V&jgsdl*%KB+Ur?dr$qx5$aJK5z`cEx*py&M(Rf0@+~>}x+vU;;eM zxA7vAaq^Ev-?8ZKgYS{>7Bo0d1yKA#xx@mN^MPL0-Pn;*J8`kxCdP69P<-bP1jM+# zf`Z)}(W2c7Uw^g#l7?Eu;g`BSXZ->dvh$JKuv=VHxK^aKE0G2$!2s@xKXRRfDpV8) z|AU({LIl`xH!w5Wu16$VVZ;AhJ&!W*2qF#W)Ib;p7$e~^_+C1~Y}sF{Nv%U8rk_*^ zOB067pp?C&T=u;i)C}^Lc0o)WL z?X0j%*pi_K-*!s&4)`4H59$Z6SMHVs^~o6BlXWHDmuiq$rG<0bdgPSWQ|uKu`Jt9Je8oz#w_2V}OHPBBE)0^h$1FsqO z+Fr_jd&qtSuEC5u46}Ut*1os3&ALpyJPYN@j9bDJ2+K;)UX5_7+M#0vNH*Ca1c{)A zX}>o2`MtzOj>@@m7x~$ESX+vBLFEb%D1#J_=Nk__ zdpcbN*|O6Qjz2fhWd+g2dnLwdhN-tGfrL*G55$1<(5yD4Ww6;JRu|g?$MAP}{%l8D z84ColNU9}Z$)_q%!fXh-hdxhiWZx>?*@e0tZQk9AY;iIgTr0*$Q!GhtOqQdq7#yY2 zev%;0n`rTHkClNZxq7tb9*kBIRALpe#6hGtQK+&(59g|E<$g??-(qmQH`7I^_LpWR zUYo;ghFT4m@|_6Fg&_AtOKQD-?1Bg5{Ka)|YB&~Fj7Izewg}cDt#QQjt;PkUGvov{ z)%8qWe^U-GSF};4GS5;BiM%s=C6)ce?szil91<74>FI@bczp+g z&3$TSK)Zm}luXnBntW8}0ZP!VQ0J^IvgNYY94-Xzz|{@Ouq|5}eS?Ib`jgkjsR$WO zoV16aE^TjgjJhm6kJqn*C7~t9&uLXQ*TiuBWXBF@$BmurKn{?vjgvf%SZ65txn|JCh~dZkO=!DYHhI2;xagf6UO?pN0=CA2Sri(;Ly1i8-O!U^d%zvD(V~q z2h14G9#ot9hZNeB4SpGJ`T#ud(fO76KX++D*A@E9gE`2R2SzQX!P5wtfyDHm%-&w} z143>b-><~-MVK+z0Zy73vjXZenNi9V`Y}wGb9H=E!lHJ~oXjUBZ zlkMo^)N#C>WY1mx2)Ny{#%bqdhtJt!w`qdiyIgyeJAklzRcL@O(_igpYEaY+!<-e8 zX(Ga_5>OSR!ACe!fT!|zTR-NbBgB|Y$+JomkNnpV{AS3|+|Eg}0FEZDu1@~UkTKiP zZ-zsk15|{>K~C!Gc?93i9{J1y19%TJMk-bQcA%Bp_z;3f`q4<$jlY;=W8t3z|Cn=b zm|7`TbiP^y-I|4jr7H-L-2MZzt}q+SZ9>L?kX%FH>c=TppI`M=JQb4WvS2+XlKA34 zOE#{2%L-2C5Z#?MqC1$#nf(x*@T!AF;vdZ}*d#`d5YY z`2I&E9V@_A2CgL_1c%+RSdhq-quM*lk44c<PLxt=Ew1Ezyve2t(v~0$AuS- z26N+Dkbe#E@juYjKaxL)WE;a5S`YR8cRq&qQpK;0Q+jafhgv$XKE+$D$+hw+$N3-H z7VdrX?f3laXV}$@S62b)HMGG8qL0e>CK0)?T;gaILqU??gC#G}%3WarEFw(Mbf7Mf z=k@8T+uyE?1~QI{csdSWq{`u>&3sb6wyW=WDRY>Irgeg6UUKD|c}o`IS$)R1H%60dl4^ z&YYD{_C5D(KTMa2hFfELUE>3X{eSl)VIdRoNczj~g3c!NSzqaz{jqNjYjyTp)o2NmT+SjhI}gU3nbr`MozPjADO%>Vu28W zvThCU3B4@$rZf$DbM>%fE-mIcT>Qkyt9IbbU;VPSMItFk4q*#dqEE1bSM>vMUm1iA zkvdWb&cV3ZZCa686lUNqBR49qXA2*4`Kjzl^z=LwA1S@%y3FGE+1CrYA6Xv8Rhh2s zOMN*6n97>1=@#Fw|BY94y7y0-qKL$Nzq`D zjO9pzl*QEL#IE5c8aUaAGd8#lpcRj<{>Ou*)(_oI}XC5BJZJ8 z1jyzm^)5WiBGmmH0nhspGeoA_(dg21p0Uwdf7?ebIhDr~VUeP(0T?afB6H3POZ}V&)QqG6+-cVkTkM_V(pU_Tk9q>o9*-%dA{p2eAMCPK%P(}qFya4d&o;UKB^ zTItBxQ|fzCS6}NSldpzl3r^c53K?_>$N?usT|mWGy^^XVz+Prihgkp#S1qQ&J;Uj# z7=WjCYHS@atWeQgL#pVGpL|QUWWYntF?BQI+!jsd;?Nx|5FjE5zXu6=QH0@97Srqr zW6GU8_ov*=#jd5=ut47{=pH=+WXOM)5uxuC*V2)9+YUIOX!gQNsCmpA!gwg}xA&(T zkHsf1kGlc;U!JTdf%+{jP_OdG0{bzHxezz zU0gj7USs*w6rnZk_(IVf6Nm9@+bfClIo#?NELh8v`6es6-1olD*nxjh5VA9C(jN%(@;ufnY=vn zPIUEo>tP{aakIsxBJhw`EMqWE^xQZv)e?RGvMqh8GW`Q*gp?IiapLnZuR#|u)^wDG zgX!U(p}~3CJ3l}^D(YPq%%%~h-3rcrsM6|k%}i|dXjoq0~WO+&f3iH?GG4gIW9 z)1%u}$IHRLNTjZfC0_FR!`#uX@}C^wLvnnRzz|YWo}EWyu9GLWwcHzM#5p5P`X? zRhF*I%=dCILeSl+eL|zOsd~yb`|k*v*|#n^28@~f?#+U%Y((1JEGi;-jW$b6%0n92 zJ92RYXGl8sriAqs%LcTR#68T5=fd}QD{2hFnWOhk)AfK(UxqRc^sLtG?GB|3T~g3 zcDnJ154|Bpn}#?>5-R8-d1~TxUBBW1#yq)~U_yzCMfHw~p>NO!V_z5s2rom?VToV9 z(ziwOOZeG8l#j}xs{@*QR;2V{Gz53{+bU#_j3vg?RyZfc=*hrFR?KtaYi*N^rby(@ z^{wFvUVmV<;1sMKiXz8IIRMq#n}RS^dGnDb%A%Ewq+sP1o2dM1;@ht*|9w+1mGX1f zmup9lukAiDN`~OKcDf``?ER317X?zgztQtrb^4}6nwJ`gQ%$0OVSNIJ>!@@yRCIK~ zb(l|{K6mY081HizYK>#+!KC-xt&Msn_FeGd$I7k5)7^9Ys<)Xr=;LLsbt?QD?25x@nrmHOn96&c1I9 zI+EJs*GohE%_7x?#?1#@Uwu&+o{nqeNx8Vm>LVqUF($wBJMhQ%w5Ukz{JZ@3_K2fD zCT?DA;#Z7o~%00vbS0H zDxSQQU1%Kp^bJ^5wC<2Xe-h-`13Qui&D=CdEl-YXtXJ_P*q2+1jFpP(4M0Q5r^mYq zxt?0cdaMm)qq)Ll&cv>n1Sz06yqNAoMizXuoE?p2WZ+)T<=d1Pr@`lVE?%Vvg=NfY z!l^$0w1eGHld?pbsA%;zt3n*Y@a;jjCVPSD(ZKB>WUIl;fh+OSxpRguUf){4BnyXg zdjoqv*Sl!prtFNM1i%oS4!vw~>-0C#Mk>GB0o&b9t^6mwaVL$};Cg(Zkef#$JW-my zZ~-)SQl!EMUf$80Y|~lL(qFlc>#DCJ3s%MZ+2e zgn2HzSQ@x3>T$wTP4|5E?)F^%Ci!}|=H=$T9H*&%ENIcOW z(Jb_Wd#9bbr^b5qp$eyJcG!lF=Z~2)dLkqvcN_Tkxd7T$5Pwn|J~G=jQltIA_e(wwXs-|El_^UBBTf*P3i%f{ds6nm`K-!^e1ilwtBlYkthJ zXo3b(2ZlAh%dv9vY@yfN2$>d|Cz~JQ$lyf3%^EqV4l;EF+2Wf-I!{Y}$Ao-9CpkXH zy0DQ=D=Ju1mF!;NWMhye$}AgHX_x{M47jz%jD$H(6w}pTlFf=$=L$!Ou?Q4Ih1L%H z3vQZ{M)hpaWh|OT+-;!_ZKv~XF_r>V${{soHB{Jnw`poKd>kUT-aut~-<|Y=kf8(zo-H!Qrmh#zJ2MrVWgQfh zELW4grObyh5r;Fm6h3<K(7S(;t{ujWlyMBDrBpe8q|?&^IsL=q)|Gtq;Rx?K1}7V)rsJC z1&95D9PZQgO~(%3VFvk0@O!aNV?79-S+GfhGgkw}EgY!42}A<}R3<(q(nG>fcwy)n zRo7if?v>yOBG0SIz8-7*7BQjqWtA+~;S?LAnLzw?wMU);g&VF4H+R&=1#Ci2rke&UmOL`uGW zCGNLwseIeE{ToPg{<;NZ@ihD~F>WP2wu=z};RBbc)mgySj|~R1mwVA?aUrxub`k-K z!w2cqF=53aJfBHa0^B-6kX|qtg4tcgyG6^bQlIGsrs8eE=0@Nkj1(Hx)<~YMKwEOR zTEph+a4UAOiAV=1zCg9HR@=-h?WXGV-frR1v;qAkWFJpes_h2shwr<8HsY-dqRR|< z<(|gmkzVfFy-&LA2X$->tnlNP1igI5T zwKB#w#vn+P%?dBb3eUol+|A;4R}e?Cc@q<;R{1h*QCG_xq;`sQAATA~k2PbP{reiL z2i0aM$BQ|+@fckYTq^MEo;X@ujJeW%QL;$INapzJi%piVPHi=@`AN>k2OK6~o=1*n zNTB4vCCyw$FLlmURo$XeXOV>tc@G%(O4dc`WPAf|Ezy8z1O59{Fsu>(C+7;A3JGF+ zA>w4lLh{mBc|>T78JoFa_a)g;;wtAaxH2a1eL^jlJ2`@mEzsg)<*9x8^qTBzf>)8* zYPi{<08&drIZ#IPqWUVUZbC-~F6Xgq7{F4To86Fh)bd^KGd7X+N`m$1%uL$~Q9I0@ ztprDrZ1|ZCxRLX5L+yBIEUB>eh!fD$78*425N^M-dkaB|{z)Mac?t(1C;}JiM$iQl zk6c*_SvZkTV6p1)O6~7jQ33Di`{P zH+gWX1_Wnmm0@DBH`#wg+|F;@_0LFnc}!lmP8}<2&Iiu?e|l}g);AR0we_QjY( zz?S|WNXDtI5*HnAEGszwmqcm@z=T1zX?del+t^ZjVer*Lx{zjjg8b&qGZ$U^V8Glv z*u(?s>f8RHQdav`#-4KJU?`zw*YKhy$7GJWvNy~l&;xHz8F2iM*sWVn zmh*3Qs=22unB|Y#=`8;jJ@_BxCDj)aVi=hWE|om!_!0^-<6L2p$LFeG7q(}U3a>c` zI1s7D@Y7n<4Kp^5|1LR@H4MB;Y8!xE+vUeS*36PQZy;K5JNOMbO!;s}Jm?r;V4A># zlQCRVPvki81cndhIL_~xk9^=VoExlW64g>iKK{SMA;Bo#eJ*p~>5f${04nqz3- zj3jY3V+KgpU_t?UbG}A6M$}?_OY~(5f{3_}zc+Vo+zQ@>gQzJI%o8*I_amHB1-fsr zHkOc?$vcF!@BB@|2Zli^&3I8$X;D{xz_e zZ$5i1iR++Quce2E-cl{S6AC^})oW8iYfqDxIvHy$3S5rOhjM-W7xMQ~_8VIVz{gOO(e?V<*LC8$qm^e2`tdoSNKpLOVaX-KhJpX{+0Vwmg#mIq##hUFg3*q+o@#{IVEtEr{AWd zV!mLi7!0DC9N%2IqTmwUkPq)V8r1tfh?l|9r_PJROej`m#d?6Az87nNQy=8Gv7*WY zVMm87qMG3iv&=_$m`&SdKKrrfxe7iX`qeJQ*vP#>C~9 zvIx)EFf~i4$EJkUTV_bV&&M!9i3}ABJ#Lf~l~-RN_!(}wLNFuLMePjO)_ARn%)1r& zQ)ngZK!U(Rz-#9+9bVZco>Omm^|A}l7v zfKNUAxVaaD&C_h>I24V`VVn}KSeggB)QY7+h0rVPP6ZQW^MC~nNwR5io?IxBS5a}g z)$&NVvao7hU_0Zo;XGm8Obxl8K(lD6oyOh*t;9%aX_U6m3uyKM{X|Oq^H?f%mangw zQZqG;h0z^~L7E_+?=D{hu3O&hU+Jyfs&q-(&^)TciV4=28_FGdtfr8&#xy5%psbW=jqwDX|3RPD<>PzWH*SJ?<MMcNV8~h83u^cRLo&y_0qSK$Td4hf?N# z^%G*tjWZ2@!rGIeAML_*Xn2Y^GPd<^Pi%x$(8~fK4s)`VGvKf@t3|CK*|b6%zqZo+ z(u3UyQ3DAsetsC2R8zUE(Sc+ zbPg8*B2Sz|#Y)Z%)FWPI3=z-6B~yB7N5-IgDOj&ar;%0S#)2>1dA`dE-+A8VH-hI? z#Bruy`~js^uBk6uj+qg85&TBIb)YKwti?WIi{ZFQD{{P?vLriDv9)o$2}s-kx_i7@0q?(aKAq<~mHTYie#?sQh&NNhDp)aL*Z* zv1`jIlI_+iUEB=wn(2_ZZ>Xp?_-3;;+*Zpz{7FEIDl7vIE{&`rZ=*E`MuvZX#D2bl zmW9x03M?h2@<_u+j+v+%XAXDMZIP;}oc>$n0_i5s(TB_$hjFrs(UfHW zRlv2xgOir0&m@NVHI082@QuG$z~!GeOT&eb-M4Bj-sTZ4uJp3IYu5<-uEG*qT zA~?TlHQsaMVQc?Ocyl%nEz9QsH$ce0r!*2F|C+^-vxlFrH+uJ{UuUtB0HS3R&w1IEowuCI)%8`)<{|n*t>~Uv;Cz92jQoZ zh|i`y85vmN(2HVMW1INcFVPQ6%U?m>EdbAAesaYbGy`DsQ91#rkmK2B_-F>%GF_Od zmdk_fu5&XpKMG7;re^cDJ}xX=$=cvNZl_FU(+J$~iELN2PLgJ$G3%U6lmIVOpXQ3l zt>HtSUlitK3SyIWQ4KLi`cni!X|Tq|{GzRBY^(t2u74SN4_{J>U(7WCDT35@C$VDY z)+ha&FHzzDvc`_Zw#;$>v-u+r1Xu@Z;B9h{*X|9-7?8ot+#z;}Z}OPT3dn5H?NHKX zXWFBMpM6%07X74Svd{4-7WwuNQNnpj|IDS49hLIisp9JBo+>>d9>8kF^^CC1OQ7jx$oTj12c5Otv zE4Ug2z;(fO8ePwvI&YyMzmAVC__-??+$YU;&bdTYQ67e3EwnuGNcOm{vd8A--Ytz4 z<%msWh>wt?dJ&2i_NMFaSlghKU z*f+cWR}^15_tE6ltiUF!`bFGQ%}v^I&El8&snBh!dEE4y^+;cGY)NKBYhfPc;eYd zngT^)batEe)pM5dJ}=PD-^$d zHe>~ zEpEYHQvu6nu|&6C!x2gkwr4ifL4s&k;k2Ml?-et=EkcS)re8@+LT38BO&@c*c973< zVEn{j4tLh#&I;mEpd@X%!&RMVFG7ws$KN=PG1eYra6h?D$B5QFnFlxY8>u2CFeEK! zFNx{rn_6PQe(2sClo1#;`zBXW(9wBjGEY)fT#;^-_0$jCA-G=eMfey(Ue$lK{0dbZ zm=0#3V~$_FZdK+_4Gw-10f%f|%`z?PI1;lx!nH-?TAd~xMEGFi}Hm`-5h>qqqeXL5+))HOerG3G)|*h385bEuV0;HGZ- z?YqPKZL>MD$MmQCedOIu3#0)1k&q!s4~`l~<{a~>Y|_22r>Qr<2!Y`8CmxeOSagPk zH3vNUH3=-I)A3CjLG-j(cJ{`J|DBY;#WfLaz7V+g*+Vs3iNXPwu2>W;IFqKcn_k8a z@jR>%3+H~UWJo%xdwv{*)QGM?BKd2hIk`u4FmqL!YT~Kzie-KO1c)zvLwAUu$*obZ zHXQt(vzaa8)$N(UF~=lj6Oc(-DBSVC$sk$sq77|n;vx@1iB&<#`bB*BV7uZG6n$6C znG_t0B;w^nstK0gL0TNWGCz(^;L#q0sml8&gbE!v%_fJVYMcUIRM7=s@eoprsCGZL zy&h$KdVk~(n$L_QBP6N{dMk}0;z>m~{t!mQ3D#3JCnnCRMz7moPKzWiFseC_8FiL9 z!P8o=u8}a?ZvZmkcfq&pKkA&8b8gt^B`UyQoWZ+R3WsqfgWS)v>NN*vjeldG=j*<- z$z=p!AQQ6(%^N>g--!zTa3Bt$3BJrJ6Q-347UV5?EHpmR!&josDrQJV*GZ5>Ikq1w zO`#EUjaDU+&QV$>bwA2w0s6VAKoej5NK7(1Nk3pj{(Lj-YZ;G1bO2FoTLF;6PeLgb zb5)QDZrVxb3Q}G{c1_bQHH~J})Z#a?%3O3W385gS&Q>sltxZM_1ORnKDq;g-0L=-~ zd7N;JeqA}C%e_w{nd1vo`3WO6)%P1=D?gOqrVfgma>dD}VIXoJp{vo;Nxjv1e<6g( z4eRZMz$M5$HqPdssfW}(?3rlrjQ&V-Sv3@yR^=wUcJp;hq(th1&q9>8CE40RkKRa) zx)aJpO>|-CV&bV|r!%z*+{I(>&jy#3o#v(!^iR4fL8AKYWP@wQ8!gp86pJv;5>pRo zNz=dfjCFkCA{W>!#JzR5_9|w!?*He66+pg`l=Z2cwkLEEgqQ1GiA#;su15s`n*E@5 zcV^V-H<(9eM3>(NXZ3=B!2b?_4v~hBH;g85pgL=4Jsvf>RMFHvaoMP=;Ow*>vfbtL z+f4i*puG?=&3&AI|7)X()le<IT_U(_KRTpQ)@BS#&U~ojS7SJ}(m%aY868 zVwf{1?WGD==wGh9ehmVA(4LgGS@FLg`|$=|fUDncFzvZ(Qxq}nRqcj-%W`MTvOkFpkKKbeZ zUP<SDDY{3&&^r-=pRW&N#VHn8Uz|x>*<<{qudI9F z4YV{M;!uo5Kk+Nu!DIZ;xQgvyJXEI%11Wx&XCEfeKKTO$)OBN1lycqcbd@F@ep=$PCkDsUCA<_)ubww!83*|iYo`N_c z!z%!4o4;y!z(D{CknKREy!%nhH5~mK56H^)USzuGmqnf+)_MVMZt9?25#kA(vk%i$r-so;|p65&iq}A9M(oeXT&qUoe&~<1PzP46GRAxFdIr zpcrxSyI|^dMhS#qtN5-ULhO5f!RGfvJ3~z%#fd0_RuSFAMVW5tD%aDd8qL8=t+_Z7 zzEF$?Q*K5(?mp1+>|C9hu18{h!lQfKfmu?R;uWPEIK zbFfG72$MpS)pcN9!>K%B-TN%jk+w&i7XZ7Jxm}ur(CX1qadc?t)U$l)Pw&M$-hu#Mw)a8r z_JZcm{lx*6-~ofyIB!N)l?(=tQ;de4F@2%NG?H?ou7Yi=pJq8F#%TR1s zQ%k`W8k0#X27AZ#>>2Bkj#w$TBQR-T4Z@@L5C2GE`@4?_Cwb5B+b$gHln6LBRm;1< z6Y{O$8~j$~R=V~bTH-Q^Y6JzoifcW$#y~$-z=OY3Qk}-sBPse(qQNgnbRb$@c@0=TD*p zonaT#*0m$>*|^gsWesMV*-#?|^^vt-*tAGqDUckvGU2d<36lB0r56Ox(@)h{d&N@C zwvHMc8}d^98605=3(yH5dTj3U_Axcucv5silg=s(*4C;LXo@LwNi4Ysw=Z4|23#p= z+>e(qRaRAW&Q$W^d(pkZ+YXM(~e=R=j{i zCl302>yihINgug-1yNn_KsgpKf?Yj(wdk1xOrG6JKmSrCkMbqFsnw7O3G*j@brpp8 zGFH>NE7{tNr?)sUHWeIsToEtw;*S)njH@_;9*Exke_s46V^lp)Ud`3z^OpKjGgKat zB8XCysOK)X;+n>?toIh_k5%b#wU(m}Z;x{L@Aj$TR0$$wx3(mP=DDCaf{P@k=z8mykk4D#dqE8nO9BFH7Rf(kZtrD&v~W3q|+D zR;l0+k^KMOeGuL6xA;7!5|kV30~aGU&YfvYt+Ej&PfFQ}KoDV7+e;i%MX?faUn%>OXc7r(Ctrc*;=aKn<2(Gh8oL) zAjiT0fH0%hFYqw((woF$^v^y*e70mi-f@r+zPIWTIXFo6>TFUIF@9ksz5C_AthYDK zFFYNLY#rIIKKfdG+#|kh2_nUn%J=#2^wXA1X*U?;lmeG4lof)0PY;I|g}W=377*t) z^Xg6%gU~uON9l*cudD6}Rkodx+Vd|BI-zYu--SSC!G`%_oNzi02}R=;1&*EDaP4?KE??j2UFE5z)9pQxD6ol^+5i|+z7cws^)U+x`Z@dBIlZF z+-EO-IBhxkgLTKk)-(s%GJmKd5U|q@hyKj!xybU3>sDQRYO$nQpR3tFUKxpQ_X<|Cf_1G zNdOd1UYaPFHy9e9);Ip3{HOro!)^_^Or@dRT+~Wrx1yEew(AUZEtVSFuI6kFP26CV zmX@ba7gs7k4$~>+@UigWL2nF8e=uMUr31x^lwC&{~sjDhq~IEjFk2lRRN! z6xB;w4%I1TlR$QeMV<=gS5!oowL(6jkL{jZE5x+%J^MaTu?LdTF}vTrXnqGpPm4=n zP(LJMM4d9;R&!!GBK`b|qW+Z7F?vpss<=;cbc9ynWx0cfQS~KH(5z(s!TYK9pK6UE zw3pgEcaT$sJYk@wOc;bL@I0wkckF=}NqzYmQL6syM~_l<=r3%?7n7{g`^~VndM5@{ zr|(~>y>ReUVt7{pvwrEkQe1x-Hqr>>D0EXi5U<5lUuVZIcTt?TIIyBsjTI3 zs4_nh4G=`p7I=&b)%SaOZgEtYc*j?nV~Cm}0!uxAjMc3hxt zZl>Z78#BrNx)TOD^*1Ci)gfXY&tfsQRtATIHj`o3VxVYni+|^~5ASbN?@HsC#5Cc4 zC@dJ!F~9YwDerA9S|I_1ZQJc$Mj2a|#qs!7S1!vla-o0@Um{)!w}O?2=E(@ruR+OM z>T(ku0rfx=W;p#{9GJ&&X8?!hh62muNUTCj!t#Dvi5(+7E5UZ$UU)in5i> z#V9o;V5x8v5ynN}WGs_zMn0L-SSjS(%#Xq<7|Om7)YX64pWy(qtiO^7_=`XK!aarE zwTsj71&lHO1v@kXlsb~~Fre0pbh3B?9>-6Gxiy;|qq{|+L$V1pe`JA&9dL~4<#LTn zh|ovR*n$-rgWAO<3LT&)*R*k|1ex{u*P+$BaNSzBgKMu=IXbsH_>G`_SOcW7Wz(q1 zCWo2*OelK&m0%z}ocf#lD9A-l7$JD>)W89uw}|l3WBd7nLhn2`q#ipzwF8cFk)2Xg zQ%{y+sfxg(|B(O`y9@wc@7Qg$wBmH)(lFK5Ru!Dp|7gtSO+@fiZX~-v&)9|j45vJ~ z$z_|9ypr`@BdS;?gb7G3UO0D>Jq)dc(Q{0PjrNlCjWb$Q-}r9gBl!|T$kp>aB=|zC z-4Ip#s?)h{JuDH2@0v@T3J9WrnlT6NwDMaVjT$r3CO7u=+5ET`P$yyxp>}b1yC%J$ zS*8JN&wvdeS^Y&?AosnMxhPnW{Ww6=0DaiKZvhU4xmV+6>LalTIqQXc*#A?Inb>Dq zX#lAUh4@cpYo=c}a(a7|*!VNkX{4O}qqv6QvsX2C9RiXQ-alR6;@cP8{-UT$cwQYf zv|6v~DU(l2rZPCLuT-ONy69TfG5CDs|Gy$X6CbF-z{g$P`#O5VrdC)D%&RRAJP6q6 zBY1!S+CU>HR_U^}t;LJrvi7ni6DeJ1PYw#2EUK;ZMGRqh3Qttd7mIGV?E;;+CdLWI@8r?+{l`Wr=G6Yy$B;V( zGKwId7`?g|2j%juHzc=*d2ro1Pp4PHykn3r2JV<|6ugAS(H7C&IOz{7C12FGTLVJ5 zdM?vFub2pza=5g8a6cpNXlP{lHsKWMLDPCC>kP~wXql289Fll5j~OIOYk7&v(%i=sK`OK7I$$`Z0Ty*t`NyTT^^bac0Pf%Yu1A2{Z;`yay#wM9 zHPpb5i)H1HbP@pQK9dXvrwqkfJjQZwdXQy_@uduuG-^+WBJf|kU`Y|SN(+!Ww29N zxJ%HL3K&eu>qI1VYtWe1_o;-rXv*G`z~>I;RYak?&jb5mrK7Kkhk+>h zr4UDhelc9h8S=Y(x5;q!qIrfC(@2+fOKmHU8|f+S3M5y<)e?__Q_2+@R*vdnl6cbE zDDev<1cDI?x&HqlfXp8_SPSUH+lXNafVA4=1^m zBM%4pacYjD!YyG;pJkBUl8d$pJ>ZV!Y}>9&($CfEbJF>!$+mgJJSu5NX-_c*Ec2>y z;I*7o^4^`WD$k+UBKpf-c8HWYXf zBStU*BqfDsA^t&S`V#?Kx)to#-(N_5qGhaXjPiR!^qWnDX?5HKKc#4@5-nV5UyKGk z(&W#D6dZ5&vNblji1?GJs8ZpWV~rc@w|}?!iV~_DTt$#6d^;zwK%y&i=ucECyV6SL zVD%WZ;v}x6g;Cvq03k)IsSD;K$zDvGTw?e}a|z}2jm@Oa<;At&Ge8yj#g8hGUSW%e zW0g|JCCWIqTd>n9s}CwjI;{w2l7m%sqHUr!2%0@FC5Tj8Ar^m5CIUdYe@0Ucw`sV> zq*vj}&?`uNuHq2bF&)RQK(%_t0s`GG`}#bfVl2lYu(Kl_iZ;_DQG)^&FGtgSvKNJ| zQk1Hb_2ZnRASEo7*xbGjqRj|WX~c9Y<= zG{C~Y)3k z2Xzb9U*+luUD0Mx(#WbxlF@3g{wfhbB>1WOz@p{j7gcK7)#Hf6v(IfU*LAiHqqtmC z4z}g#)cck^Ufy4#NrtB6`7Z4XA_j5W6&I^p&8?#we`OLT#fiuHIU#cf!W2&EI8sSb z{_FkOeiVCS_cG@f^>Cr|g-G4B8|e_6_*>B%xMkL5)ic)9-VPiGlc?uRXk?e1tkYer zZ9EEILvxNxclGTx5sQpOE8l0MmxweG?$CTEew~FE!O$KJp8m4#g=JdJ(F@XaAI;}F z5c}wR@gjERVd+it^S}T?#v9j+jaPs|?B&NDAdjudL^PfOA>JDM;oAn?`pU}99Q8<+ zKYIT0QdFrgPo>1l+TlYI5wxgC^j;d{@?&*x>VTDuTD49Y4zU8#5v$y6_z1^>b-(6A zklGl8c07(+yyV>wG4%p5C`mdZcu=mPitMI83dyhkIAcCIgPhCeF$8r zNj1u-@Rad%&)mo4;6wg(v|~_7*P#z}mW4)0n3*^D!e#N^XOFMilA(y0N3F z5gyXsjT+`v(6#PxA0_u)OxCy1E~)F&0ET{23hQDK7F9F(;`v?fRmZ7E9#B z``bS1jHuQKzC1*3?*eYH9MTmS(ZW7sxQAp68eFDFo1UQxzGW z^1(3Vw7^d9Q#w4hzWSJ_%JgO_3vchO>*I+9E2}&8r2XquNX6^CF_Di7&)27|a=Nh{ z(y+$%^GF6<>C|asYE|-N)T-J&3v@Dtoc&Umxu<Wq_R<3-3c)i=t z%~~=2N~yc@8Ac(n8UUIB?r)g;;LG%5IX#moV1A3q={`N_eH3LevQ4SdlPk*AbHh;w z+W~B_4^=>FcD6bmy}Ah(RuPOZyXc&|Z%+EcXck zF(cNXaXTMg&@?9qqRCqY7)&tgpq`B?Fu;T~VdFpALEaCsd-|k#rQP_}?evnp*IW(vLDNVH zPCr+QUQ_7=SCGPMZXNM-mU7DdiwFy)M2w|X>loiqzrLcreYs=>B#0vvt;n_FtON_r zP(tM9!2T3lFdtoHJx8j{GqG3QCX{@@O!yy=%<6t=h@=|$9P$7P2*8$hZJz_38kl?d z38bHUL=6XVC~v*U2$)c+>PBaE=88Achsxy@g+gz!!rjC6eUrC=TeKYU1i#~hTcxtq z_7G_7eS%fn`ueQ~&y@^cpR&F5Kv9S+>27c&Q)8T{G+9&=&5yNb3w$iwR~o1cQw9Q; z2)v3PiXP8GGaA!WEPxB1RjjE2$T(@2~)froUKP2`HZNFAEJhx*oe$@B&Y^}@*~N+MiVN{!$>;aKsq}==)=rF`spc6u{NMB z@rKd6?o;BWez2Y?PQM7o+0@;TXqY4cHA_?18zZ@n4$FVNPdr^Cez642q_zjuXBBT9 zcQQmhw5u2EXL&sRcy#L&NtY!Nl_p*xr!3%5Lly&&5IrX~wUMMren~?3!-V_}#8mp5 zm-jIPXO1j2h3zyhf~C_MKjDOdv_76tbm}IT-%>Fj%Xjz~w)Y_a2Od>X&Zw?C3ylaO zR18bkwI|G2IBL2jN_g8C+J}T{4Lp6+RlMl38qOP`p&;c;PrQS(A7AMR28boVJJV7a zV4vwPEMPIeCDbhJmU(%~A3!E%@XeN8cPbdG>b-LV;^M`v;Gb>XmGmRRtFel0(O~q4 zrXNy(>TZHPWR!)pxn2m%j@qABMUv5~gNSmJ&Sv^)a zIs46AfWP4l$XC_YJf1r3F5jaWjLsYUSPzpPU}h4t_30=suI+dgCgCC@S0zS?Jk$4!iYYf|OYkE>im%|fX=!#308D2MI$A1++@nM@&Iyk( zb;@2=)kiXf+k77BJtA2vyQsw#pp1#{e+fom>N|w zK@S3-+uMd<>=R|gU!^N-Z3LYcJDpuo`$bE3Mhx${Fb&!K`9+*iGU!A!xau9{#scn6vC@_ zi_f*jo2=K(c&9u_E?yR~@ z#tM4za!R{26A5n}^=!uJq>wWzUf9n2gMb#}#Y6*IFQ`4g%lKn^s7Ocbo2~Y2-t=izH3e#yxz!z?z`&e8Ka}}9|)$I~!xzmGY zpIeRJZ={tT0f{d~Fsv1eZ>UymeBUOq1kKmUkXJ?=QxMXO9gbw`$Eg>we7eIn39F2+ z#h>P|PP2(3$h3Xx7|KQZ)9M!k71fd7h6?15@D0yaOOoiE2-tjMhxg66#(L-)J?r_Vu zRLa}(zGtQND)k&p3_YSp01Av0yjGTK;dn&6R(IT8_MNZ;- z9&G@}5Ce_?r*4(A2rpT-tCZ{{ZuRK4TCyr@#Y)owmMKt0ao{$>ykae;iOxog z2!XefKjIuI0fLmX)E6PWJfW$ zK8tUuJRjv%7^$Z~mL6H>RwY0phb(Rj3RFR`H3G^VE!xc*So13aH&svJL&1=5Vj;D9 zx<4imt@2a-+GN|H{NQw9fG(R7DN;Zt77tzw+q)PzObn*rf2`=ywFq{Zgg-2rfTJS+fz7H>wT7jH6a2u@RDtUjV{t;y1zcR6|cb}~8uf_tTMYZ8ty30iAw?iPCQn4qHzEF!wG?xQF!UoJl~Xb)9&Eg zM(2^3<)M=HgptKeceangim~PHN9>7}4lIGH(tT zJL%)z3dpvraDdzlUl`bmPE2Cg-(ZSoFrtaB8oy;#i}56ATd!Pk>+g-=Sh~JNT-eVA zN2s$H8R2~={c{no8^_C}hX}@xJT;H)uG&It&i1I-8p@-(`X%mR>R4q&-b~>s-TK15 ztk_w&J7Mq*n9OTYNzY4wf1bR((pKj4{{^mJC-^to8yD(ltK6O8cq`dv$LHry;4lfL zUF=sBCC8r~W8*AZ&|84XELL~Uqdk%48sDqsWui*%sa&J0J@CLz6*7Fjo zcZtBxQiC}_fd$=*K$Cb1k=sna;qH+sXzcZ`FPuB-U(IsLrxLL@dj1`GDbQRVL9;*p zM(ArZNvPdYpbd1qq;BFg2~Yy1Cj73&TW7jRclx}U7?x&*f{aDIgp0r?zhF{Y_f<3M zk5#3q?)0sf;@!f9TU8PKNEqoOMS$bu5|+haiWi0P7cxXbn*XQahplfOfXB+iUpC(Z z^fZm@CAK*$!JXq6lTH~#E_zW*pF_-GfBMZRSqo+=u1iAFthL)hF%kfyWA`li1>%bm z4=_(ShW@ww8k1i4vP^wSfx)QxXo?p?P#`$~27y9m>a*CcYVVVQckB*G9B92?u15@{ ze5`ME>QE9`8nlR=NO~Paj$EmM=NiPQnDNOFfwEC};QbHJUTK`W-^ma}`2r?$B%N?z za7-fje0WeGDb{x^P9h5@tu5M{(WgAxw{#ZB7m`NgBWzX={fE3OzT^fRuI zVFy)@XF=AbZv&XVlSX+)l?ot)?*$<62zD$zqukoB<$i1@fdU{8wP4{alGE+4g}3U* zz_5SxV;&UD?fBE9PnC;jx#q8`O8g`GJ?g(-6O!Lva7vb@@vszvMXMn3b-Dr6gdj*W zKcvqVJo=5pkq;3Y0X1-kY(qRN3>3~bzydq0+_H4*h7&H@3t&tj{3B1w+LHc@XG*6< zelKSphtChEb(8DXhDI!#ON7UMBgop*Gl z6<{5&gnhi;ry#^Jj!H31(G{|qY;bK=s8xKwf+PX_Qi+RnqP^xkDIRl4bz}u%N{(Bl zt6z17h%mt)3r6gMhzV2MsJ(OK_oAzjpu)uwV6l!fjOm9#R@j)y2O~*~CSvP1yba*- zOubD^Eiayc7)djTL$5)3H$CCPR)J`x5O(MIgVHlBv-fZJ^p$bdBTw<K52`=y(JH?&MtfnSE@AOSJx(QY5V|j0)U(Zq z%}vbhN(6g}kruVFa8z`qC`77R6PA% zx?8TBRHTA5=#HQ<#1w=Tt^_~oK%1ltQNar)Umcc=B(uIqk(gULJ(4BQGFrE&i>@hR zmU6FYQ%u;j>vOx$zwoQLQiqh(Qac^w~t*`8qa50bLrTL z5yu1781deY$!fr!m5TVP?g=hfNvHk97WRDf_(aH~5U?F7%m4K%@d4k%a;|nd0=fx}j~f|zTY#dtBfI>X`3FBkTx^{Ii*#`hL@3bx=%pAyc_(&HJfwTP!OHj2 z3{Gmz?c)Vl6irG`Dt|?gY&xN8{Je0m&{nZmeIN^+Qd>;__&C1;QG44!v8US7*p<Q<%YHOWSB z<;0L7)_4_ftW*Iwu4d1ywou9n_jv;t`GEmAW5?gs1^qf1%{*{a1-)N`WevGI4c!nx z2R%joqBijfX5HDo-uNn+oabQUJaKIqsWPr(LJX3L%%`&rzseT3kci7KEkdA3^9Mo{ ziDy?b!6ADl+t+_=@B*qCC(AEk^k|C-2}uzsRRj~v%2v(c;g9=8$`=O1z6tWD`ogxI zof#;Dc9bBQGJB~MaoQW|4y5k5bUNjkh&$m^>fT=V5+|iGI@+VhFCfja?XB5Pis50; z5FO|Ls(lQ6oFa#oJC8A2`|VIRS?rF-{6})V>=_MJ{?jolJMLrAsTLS_Jes*g0UzEo z#}M;G2)l0;OY_)VfNu2OM*79dx1Thl z>kXkrI^on8Vp)cY$=Flrc5jFBEk1r9!cEnYU=@Kgu_eG@Lz=K0scCGDgaXj8*1IY% zy+L_A$CJew=*CMxR5ZQsyS?CP#^k3e6@R{|nG0_>^Ycm19+QPr}0t$B~RE&v#W&b5z526lws zvn%2y8?9^9a5<<(;tvcW@x56^v+6K}1(~-YPjB*SgiJ#DtSrmvN)td+wO|2r^RX~> z(_blj!<33KU0pgJ!k7`O9%Tf1Y~RA2G+G63PJOW~WNs1XFW&I)Clk!gZ*6#(YD@rP z#wck)9c)NJsXOOa*L%4Tsv_T>q_&%^2$n-Oi?$5|{}KgY)gd%=W4gL29TZ!^))QXj zM>uJ1{~T@qwebnt1GT$e+o|D zUY?@Z7jvUSpwQ>LGf$t6(EwpM8@>P%;LC^e4-#xs_1I8X$>Ge2gcXM`fP>Tk+}0@b zz3~FdyW~y*8aBFXs(+aRuT)eS+^mFNU^u1jP1i><1(+FLBUrTmq~%s6_1A7JPcUq= ztOU0u_RHb`U3Cpu7hR`w=_qm_J=cTtki6hqh;Xt)3?k7H0VEcLmZop?`pULHPyfv0 z$10qOHg?RCH?Y)zhWpeh&ybj1-o%wWVR!EO%Tqc6KsV-6mr0)WvykooeXwLLQ^RjQ zY8>4j(o^>+pu~9d1DmK9{i?^~`Sasr%e8k?@HAP9jfT6XlQO2#ByMG1|9D#(N=L}3 z-;ZH3^h#9>jAGH*EQ;jKryT=1vuB4>_Q&77vGuV ze1Kaw>MQoIQ1Y=`y7AoN2nPedw;W05-oWkl{FJr&yUdR{iEQ&K7r?MKim-(oSh_w` z2}b;&$Y?v~oDj+c$+bFGLD0XtaiTz|kXn7wxwWT^#~HRDa3@>bhXOyh_~vQz)3K%( z{ysj*RAX4w()G07JOi9utL<%-`=(7I!+x{9>_lJ2zq@(lP!j}(?EFM~Sx5e0TZU|s zmDZ#!X0K2v!Q{Ly-9Aur6N(V%D2^6`zE&Vg@`}F5CRch1J62H>l|Zke)en9kbdZ5m zYZfBD5dl4IwMao^H-=WNko=U%nyyw2fMpYJGX93_D(P0YK1egjb|z|ciJPmBQ4?M? zL2n)rqYRRBdoF7)HfXXgsNm%ke9AoTBRV_GjN)xKex{Nxv5VbRagd#RmhZ8qILU|n zS`8JMs6&NM%80a)j}3#z-#Z*~8BWCW2r`pAZNM8tMHn2T=jU`Syy7^^TI_7#BN}r{ zOb?2LgB*cR4@q{gsR+TY0OuN9G*g@7iD-^?Gfz0(FoT*JEueJk`)_9i0A&c2-z1U( zHQw;3b4V}NtQ;z~Orr0=WDQnfAnieya3J9j_Pv9D{$^Zj?oy>iXD`7ER zZah5jVs%w!J)U549ev!;^tAMn>*)tF4fBVFC{tMU?t)8|U#;OwUpAw=yO?RU<0tmP2c^>?meA%wej0O-{R<$dQ-h%I|)0jX2K<32O z?14FgxB1lAKeSUZHRW=%tEaBvB#IBy9xC}M?xTZh9!j~M&#(+hDua`S9uTrYBgfuy zybg*D79i}$mFzj4abOKd zDX8xY>uVi&)~xz5aV^BCodUr-HVG+(A&((a1aDl(0@%aSB(!^60*h8=@^mb>EpVtC zSRUoZELa#~=?4;%7P5iQNAP>C@$Y1k9A`Cm(3GPWS3ZlR3X6V*{{!FjgzXF&)aeFi13+wraxn!cb|>cI*DsEVDxc_}M4d@RVnLSt{b>l@V85CFK2_V13MN4+>75dp0eS zpcV2sk_SQiAVa#?68HBYG2cf}IVc_Q`~DAnA*T#qj2#Jk8DugxH)rlT_&p!ul>5}J zC31bjfFRLp-Eto$&PUuX4c5u-)KOtA%1*QXR=_Kf(7r98@QOr<7hebI;@joS)*Vm* zB&Ry{vsyql@NkfMv-eIMyv4(KNT;KpHoM|}H2QeI_S<4Jiab`cwk>aHc+o;?7$^0o zxV9^g^u-bEgPTaU5{${%1n>~w>W@$iUGw-YNmdzLvATpW&NJ> zS1(rJV6Wy3?0?BYtggV@tb0kJvDEfg`2|C;AyIK?(s=qq*|~8Feqb8TgvS-+WBJ_O z+qW>Fy#hTaR4H}hPq(s%o)1`M$oUzl{seW*615{~$}DtWYU$5ED=F}t9H%*)$=!o^ z^Od6bMuz6=XuJ$U7^ z@p_CPYxcS-Cp{E)8wsnZ| zz8b1qH_c;`uUSmDVTQs^OFW~;iX*}2?lRF|$^0)SQbd+ zgS^iPGKux$R`*Xaqcsz8MGNxJe{a{HM?Ph?nb~oulxQN<-Z(ZNJE(P-LfUcW?taEK zlf`cM|J=NXbTIGMUymvuLHxdE(`704ZthakGlGFM_gq;N)%sn%iubwSGVTUF=kc~r z)rP3$`zMZIL|1;?>U=agKnz|wET~%~?(x9zAnn=7E=SR(8X}w&rvESErdHs?H}E@` zi%tX-4Gj3ecYj`#ok1*WO5iT)sw%5f=~XkDi!e97;tD>sKKlnDwp(<}IzYVP1yN)_ znNhsFqn{j5?Yxg4p|WP`c__`O!j!(!smBCqRX?BWMP`{&3ghZy_Ew|bu7g@1o6pIN zp611_jKKKVZwwAK_gwZXJegd;%KG8reLf_9^wz!C0_8R?06 z&xCgjEL8Ksi*u{Y0>n)-N2&8xXw2?uX<8bj7vwv|WbUpO3bH5H1bdi_1Jb)i@m*+Ub^jkXRi(xO|0_Ch9NtDBx-kj&U@b^e!g4?}PD24_YS zP1MoWAkfaJc`s1`m@n%E4e?>-Wo$A>&RgP`N4SVSh3Nd+DH_OPHMQHBG~J}VUwL{@ zHUe**UcUod8qW976Po`W#=PyF^A4L#*f9Xc*{tn?qywUncAVOllW}&Qe+@{UEIK56 z5zOJ^8)()sWy!IM+`(--hU&E}K>fYsbu{+xy7z?t9F1Ad0$az|_cfk_ibcNQ+sLG% zuhN44aC9m@!KRd$Z8b;#+Kz8`cLi=%vnIOTu4!c92lJ*;V$G}rv?h&0&*Cb+P@;Q+ znCzT0{+*(r_%AbxM;Tv>KvCG%|E(Y*=b#N!-et^l)MYZRkTK3_wQkao2*3=QlLPqy zXu9nlSwNJqh{5=z%zG#ZF&YzY9qC2s!N0SY>P9dBh9|HEuR%qM{zKK8|Z zR6{&d+^Lgqc$PM4Qq~_ahttE1a-}gN^Z%K&`&wa!awhIc!!OjFPSGi{lc}ojfye^2 z{9B7@M?{^spf`$bLakz-iOB>|cP`!`@T~~tblrThv^u9xkFNgGnhNGp!cda#BfGF1O~2{L>X}2!#d+N z6#K5WENM&Vc#3}2+E^mRV8e=FIt6`^tf}TEE{#`FmaMux zM$W(_GkCcIlx3k;l4Vx(haiPS|g3vq|!$s?;B(Dtu)cWE7uY+DYTBb}2~7 z=2Nh>r?vsZnd}{wPJ=RHlaFhmFXB%IOg>MG@epSAcTyr~thX>e&RL zJUWn1TXJy#{1#Wt*q1^Zv*v1DYunkW1(^3!lw$I;Vl?-nxHh&+NbB(b-TCZ66}2Px zv-jE8nVm(9mdz(bI`b;6wIjqL75L3t%YiFkOzHOT&3yq~6U&rrUww0JuB58ZIUu6g zyxI-)j62oDSja@c9p_>x!$!YbbMy|8bWZXO`=)We))*(dZ6qt04H_m}OG?_s1l>?t zf=1rA+*{?COA`mc&()k-W=hU_iCIGDw9`d9Q36UfyHTj*hy`M%Cf5JWGJ_ix^^qBR zDS%0i>=sQaJO1CfWKO4X1QL#Jn@{LWkSf!Ob{4wi4=YD}L9Gf9Lr_c#^w3f=06g(% z(f&yEQx%-m5eROYlq-@KDPKG{Ol){Z^t0}d`1tNBgC&LEg#mQ5N{a%|9u={5eHfsQ zMUxhmKRf}E%`5Kyxw$E)!EjG1c^mhLY5$RDok&VMf4)7kA|j7jTyHsXA5fR=G5DWR zY3En!aEsHxJc{iI4DUVwu zWqmX!dg|->%5R077~V&7^MG2kG^NJyVGs&R;i7Iz8&1vIFj+Xz9@E-Kijpqk#XrJA z+APNs8-X|Beiadgf~5vwBo)mv_FbTBb4}#Af_re3Xz*R+*)&+@FI*06GJ%7>btg1Y ziWl#)H|R^iKuY-ApGd&+Kzc|HrgJA?_}htMGVrKY{CVq|>y&vgp*Ks;Hqn6gtS(PI z)!_A9;V;RZ+W1T4h_4L1imM~>+arD?1mh+h1d}0DQ{Hm&#e`Jh$&`PW$=9%gS4)cG zmKpODhh<8h#F686jTNuQCJ@D0& z1s*WW8_>m9bh|_~Zxm#9vxU!7Q8T`?`5Vdm`qTUoTzw+_oV#Z zfs7=CC}PF7g*wK_h8;XTD}VHhcK||?1c)SKUhj5>TgZvNPAo0;43|Y4qNE;LwsMEo z&?}6TpLCXr+dm8Yv<$$kMhWkR(lePSYpf^ExSW_Ez_&e6O=79hr(RiC{5L<{X;PQL zKh>@Gck$ckx?r@?rM?FjuMZi1U|4abRx)GCen;@~24}jEj=wI#N-yX@lPV4Ro228? z;s~|R-tZJHzPbGos?QUEl2^~RwGHu@08s1Ekz)e(Tf)kEK4FGHi)YxI?} zzZGlAdU3S;ubli!pt%QbS%6EszfdH*Ftp`G*L3UeyT{z2MFHIIc>K4UW)*(f(ok)X zC3o-9bm6GjhgZ~)yEk0fY$rMmVDJrQw(1P2jWW-i(6ch%N2X0K5A^sCy2LkxVVMLr zUbf>z+5!#f2Gz8Uuyxe9wLnB{)rN{AfG@+2d_{aP>3}UDwHs|Oa+n9t+(7G{AAaE& zLBTC(<2c@4`vH9YR-fVjUdaEc$R|<9Gz}8B|E5*=WL4&M48|Zdyb#>4JNxJZMAxF^ zSO&_jOzk=yMvGbNkX4cNv2s;5v~n6CW}UnT(I|fOfO>JQupFGThS$T9$sgFVARRyP z6bH0aR0M053LjcOT0H~{SXxbhg;d+LTy(} zJ!IzdTfoOD*uM50AsBdq8E<#Sm`v>U}hbdb_a>J^qKy|ewPVgM*l%c10 zqN8}{$3G7pnBt^PD1#fm7LYKc9kj(l)ax&ez1nT2_GS#dKQ4 zN^y_qU+vRWV4xt}QDLOrnq;oe>MC-`bOwsOM|axo(GVlbcG^rBcYD`e|9T|)M~6** z{QFQlsVm=IDtk6R+>YpHFc5zX^f7#DHvG>(S~ztoS~ixHFrO`PaeRREYbkw%Ck8Xg zmp5#JC&nYrI+;b^Z|&$s*Xf;;kZne*fKm&qcwPZ7wAxj#Ae`i>EZ&nSFvD_?}RZ)~Ald2!h1ZB;ymJ zDQ>mU4twGEGJ98;BSsC6ZA{Af7f{P?}4N71#Ou@O+Qy4 zrJ&i(=vX!Y^#whh0|rtojtJV(ta9PAW)PdrBliV;WyPfkeijO@Dya<8Ki$K$6)}hC9MWIO(34FBHv0Zs1yB z(X01@-dtFRmjRq23)(5z2*RO6!p(>>_c*z|bLd&8^7BZ0K79*5N$Ib~G2aT?*#Y8& zV&LMyMbnaKx@;pjzc7VIltr3~9mLi>M_S1gtYo3gEDSj^!~} zhPXh*zLb~J4D#Y2svy_Q;8p$W+p7!Jf}ZRrx&;NRwvsaRnEo)%J@ zRo^-L^$9NpyyYaBjU;7|PgU(`z)de)-f9u$ye)FQd`I8GtVYszBk7|Annv5!Zoj8&FB?;>IGdMVAO@( zCbBNb!qtMcCG15Dna$M`zLt@5>{x2~(n(6P(L{BXcBRplS+E&JkcC+}b*G(USO(bc z<7)W?UUn=};nmW&RYsw4iKz{TTZiPX(J3RE=zwO#B7GTiEGe9Zd!K~(u%MHKyxQJ z2s!`CMJ`$EF)so?tVksvQH_KQ0?Pb+^B2NUT!A28F`9n>Mp;XkVqo%~)peLI7Q@`fanFQ>H>{e;@dkc3 zkkQXHr05;)sS(+6v5V3Ao3CR4zA}I13c+g7sQ)P8VnR%(vt}Om>r@V=qzb_)T9FIi z2Jvk_Tdb0xbEO#+OW~>gMoRDZW<1SEWorFSpbe=@3)Ap{Zlj*3r%mQegZPo~M0WEa z+8pW83nbg{* zg%yuRQ1Uw)jIv3_9F5gsMAti{3jDZB6)AzBrnfoSXM=nMgpS|(+%^HS#J&` zzj80)JF#R9WDQ^rpqC&%CsAtb&>Zttn!c`z$Z;g?&F%d#d<4lbV*=%f%g07W3zz7B z^l%m9V$zXS%N4ncB(Uf*SIp?;db*+wCP+J&F<7VAyE&xlP@~aW84H!YD;x8i0ZAqwTWLnv>zWv)j61JMGej+R==Su$~$&;reCphIP5 zWz11kkP)9r>OLy=JfcXx3eE+ap4CjX_ywyer=g4D z0({QFmW-=(e<5DIqhnPfl791+xS4#;QHPn(&)39u=$vEVc6I%8zr=HQIf%osB4ZJ6 zWZt=D&FWLnq#$S%gFV$=DkOn5G+mBGo9 zJ&W*xy1u#4%&0D3pI0as9b^>RT?)_1U$K8qn5K&pB~t9`k;fD;5WoQnaIW6%7A*Sw zJ^3TbR%;H9%6u}yy|7{Dw4UL_o`!Q`=Qz^$laAbUHa(j1K_b75WEp}=y*X*yykfnI zKL%#dLe;EZ>|SE9WW63O`n#lUX-PMwdCkncV+7`C5jre~4iA2~L1Py}jU1)xQBMgM zT<}o>e3den-1rsgeWl$#E!FOALi|rR&C;DK;Y!`U>sh}hqRV@9IU`E*_Fs=4 z%~B0Mnf+C5VcZNoPN~^e)&6_WVF|OuWeQ6j1Lx@Fw&0Z$2Kr}XYlh@gxOI;G-=9#G z!3Z%p935w?x{(=kz66Vm9Z6RgCv6+zLNKEiC5t3yDN!r!>C5#g`a?p)ZP+yv2qIk_uE{8m&3G=g6Wp}4*9yqf)F z@swHFY=E@@{kz@uDKoiyG| zr6Q7Q^oo4@$S=qt`&!B`~?+I#%Z=LLF7;x)9;g$sot9#Q#gV z6+)d6+_Xmjb4ts^ilT)=5uH9meGo&~{{noF9pD|FTM!EDis1ci^F4$%_x>KU`&)Mx zAR?|AuD1n|6c4IX%BDq3JCFs1Z+gm7+t9{jXwKX<8MKVWaDBEIsC+AV%}C64Jj0KF z@T&Q`atUR0WMtaZ_q<6ybIIILo{1lL5R4F;+p5j){vsDT>D(aZ&1MMUT6Y?qzW(@o zS|Ho|<``$7nW|J3IU;Xe0*`nq3O=#)&$?v$A&?=)ros+G7BNA+qHKD~BC@O;W^tD^zJFk( zKe3@}*U!|oW#b5yU2OZ%@I`q~g4EOoE%J(0ne^5V4~QS=_&UuddCt(&LY9+5)Ro_I zB;fls4C_+eAdZu!Um2z|Dhl%ywerkv=yd@P&i6X7TjQp^$*Fs!$~E)&cnLup7Rpe# z3SutgMpGTMW$WRj9s{N9KJ<6GQCzeAGn{1QL{iC%>q@MEm|v?Q)o~IQ{MYrVfi^i- zDh@zz0!N5HI0D!c8S2R5v087PO{&6Ot#F*|DhZ^R+HKl8b(#Q-@I5W=h=;F6C97YG zb4SCSWLuP{(euW8^VfUYJhRN|O{@j5Ho_BDpHk-cx#)91k=a1cpKd_$9v|nbvPpoOI8- zRb~?!5ctdVLba|lCT+B=3l|)_W~Zi%ME-+s zT9^4wf(v63==nz+a@bv%B-V7&FEfzZp0C7dViBAX_v>&C|Kr*&kx*N+=eo3qydLC5 z5W(Py0zLB$k72fT`-NOkZ}y9e8>smO9~}N~FWc8o8A7sqwKWuHz*|@=&Tv{RoGcEN zka2$sdymP^Xj_Dnt)}=lmfwi$zB&_4R3Ua>aM0+Np&3xIuA$44YG~SBPS&0q`0k%1UaX3QY1=RU>?-npKEZZP1+Pj~) zAFmQb5cwlS$nLX@B2=d};rdqW*i8Iw} z$KzHIozA`F@ua?ixu?}wjb&QZOjbv8hVkL=L~&)lcE*#TiC+@Ndi9paOs|oeR>9eV zScV5~Gq8i)O{%)p7mb{82c0wOl*)HCTF)%EfrkqoK$_M)TkGPnnWTd-$_17$_|VuplG>o(sV7I^CDaTT6-{{QdPI8&;LjrP$1{)K>_Ls0 z-S#fOk}&-6?Ly3WdDe;w8bKt>j7V&?Qd3C{9?hAGpz7(?{RcF+p(;g&N4X%%dH8Ty z?GSDgFFmxh8aLHzye0>ox@KJ{PHc)t0I}>oRGje!p8~7$aCmU5cX8EM9k0-he?8Ozn z}jVI2lNO}u%eUtS84J4=*pdw#n{@h!?m z;|X61qAMEu)dOs+=Pettn^#S0PC#1EI0!V6EvQrHm_5l9%;gZw%hZxp$eUG-2ZawZrLx!(tX+FYOZn;#!#@XPSTUFgpSI@q+`r8SBg zhBGq{1qG#ST4^L+1LDSpEUV3mWftaDHpRY1%P*{ue@YweyBKkdjRVI0qv_;pLckR* z9t&(L1mmYiG;?{}@V(U*H2ru=#}Qgj6=;&ghvoI~iPI(zaDOKNSEA21XL#L7y7F%U z0S;Iv28yWAFU0O)+N%gdK~;T~@rqZzKAkAHGI7gO`p3!l3Q!8{uRdvTht2Q5{kL3k; z*ua$!-Zm+DT9(P^el@j|_&_A>12EBE=h0UfkNh#k$9d9u>0WWF!DTEH$u9pRr;d$q zARxBfk&5QQYvN!(Ha7yhgR5uMb3u?59l0znB?>R0j&e5!;bNq7Kd|J>e8ee`9cE_j znpW>{Nw@p}-*+DQ{MVN{h;Ar<`4|gMi%bY}ciO%EHi6-@uiy{px<qD0`Jdi8@ik<`;u* zEUsCHOfS9vL&32}46o#qEirZI1u>;!K%cc=C*&yJRh}_Xo>pmbMZ4m1#+nBn>(;Q>M=dp@@?zD z8V5QF$Qg&qsLq~CB(A@^wX*Hb&v;~Ifq`6b`8x@v#L);;V;z#Wy&19fRPZ|(_P7|p zR|GMCRPAqPbvM?Pdd!hB z*&Tp7;@mfPRsYTwNXy#oE#C<>zxWyq?-rTWKtU!gcV(LFngx~Vm}VS&^z>lhHs%sM z+YzkN+qw>SY8=$BVkeh=WMw(Lwq;o|n(e?>Fh!2M`KXV1Yk}U|il2!~%1At4(5oS# z^T3d~0~j?3CVEqz-$f&eyejP?`G2uF8>wam^_A%0xO9BY6i$i=s&Q7EJ*wp1H#HXM z*vi^_yrt(qA$9lNUy^K6#Pv41t0IkCe!58aG@jO;qbhv~Knat!6!qN+ZXYhYkN3)$ zygcR$w9?Y>cjPN*7dyv)J~;%j(|W64DsVKKAVA*!kiZ0jjsYK13j1b;JOt?6bnhgN z7MtF+&jUwKzw#tc1WP_|C_Y)u4=k5B`)EiwvU!lPAmZO|&lI^o$a#x9?tCJrdyo~N z`GA!Bq``GboTqnE2t;lKz#v|2t<-e#m*Y&WNJXteiJYrsWhvCJ>4(=?f?R~35WltwuVx@?4F zPSqlCJg^BOYxBX%gR;8A zKBV7G6POkjp&_7=n}uKUSa>n1#KyZzMwAsTS$Ctbzjy|_o+;X0*Pe1#%5dl&+*RPD z7<@QdyyLOtFDXTTuJ}XO#UhK(+WvnXef%?H(7J%6xd7)H?fYGxis5}}!?`Bq(rmda zb9E(x>k+s>HsonL7dz0QOA`%ecW4!ZWj7O33T@$tQkc~(?RMF?u5e#9B&UH!NsxKwAGK+`>fEa*QCbhi+^UH5R8KLf#XGe1{CO z!&aO2nom)L2bMVs?>#6k&H6JK5$W4t`tX6@TFY%*0s6WTIcdDGxY#0W+38`t#4H$a zq+6LZs8 zHdTWCyLUFcx8zOg=)~F}S8Dle@MA!;qqrvpFWbh7jEwnkC*3^cmtj-n*aa z+$pB4>fJNc3S&V%2D~ZNDEJg9wY{pnu3deQk-P~%UBiNO{)*ItpDy(sBDGEig&R|K z*ra}1LJZ%T+4mr1u+Ke`%q8qW{MY7*y&#dUp|c}VvXxuFjC0wOJ?_j;aoQWRa(bF2 zX!V`ogtKzQPwNY~qdJg{lVZOtXP|0~PnmDHcf<0a)fpy1*~lzL>0_cNLc%KtCtSo2 zX2r)78S1&T-W%S{OSuxvkoH+F=JD{_*xiVJAsgHzL?AIr*R#-i&t{wt^D@BuB@FwR zkR6R`Zj2HafILYceDaM?eXPc^eLK6!7FNmpNSgS@?&lXWNP=>tE7nrlEzDGFAofy; z6#k=&Bt3VAsuYBl89|&w^bcxq#SBK>p7gaZI_82@96!$zZ-iGBsrG-}h0qps8h?ch zNw^kgRFFr7qg8MbW-i1Fh)zhVe!T0diGW;G-y|4xrUIBG&{tshsYmw>P zax*QjzO1Twal<&Bo;L|Ah1RZdvHs#xMcAe2vB5Q%+bsDFusevz;pYUe$NQ^K*4#xo z1iNUs*`eli&yp*_<_QSLsx)E6TVG?2#eIiYasLsNf=$Go1NY#x=Q;)9I9erW2_~Na zB{R;A*L*}S^JJhQ@9hw$7d}x++?BBTqguQ9;=J|dUZNgp9vjLqO+|an;GHxwsvRyb z4gfhI2mqg9WmL^o0~}`u031RW5Zk}4`)lUtWhc!Omu0W@D~8%dnW#pgNLi);2H4sH z{G8-O;>iMMSTcOSW=dbpVcFl|m+$v6trnUJj71i*44Vw{oUmQ4NX?^O>c(Yl-%!XWXCrOq<9Nk1#uG}|+?o?jHQby|WP&>A1={(b2<_ykD7PdC zSIGn_?r!G;$d{4~AO^@)e95IYik33IFF5+P16(4X9>rAG|2^Tt4`<`!xteq#(Bs9LafCfpS$W9Q?+JFyv~R^;_?!T!Vu^rEo< zsczBv^Up>lye>=w_56oUQ*ldAKZKTscykl8WLL17W zYu3JS*e0=^?6Jg}lK4^*iX5g;^hD+d+xRstubF^>aC<*R!WF``Hz@pLesa(yf3@}k zE&??AV(Vr0^Er^DC#~q-7ie zllP)?S3EgP0yE^&+cR;~z(s?=@i#J{Kn_E<%PTVl2Bqa8kYuQ%=H#Eo)@5S22!=eH ziUMC~GZuy@cgW0Rsh)KMVc8j~sMPb*MHZh!74n;N*UF`!tzvqjvOabIBSR(tZ2E}O zbi?fRs4nWD+MsKoO)wJ9?OJKdq@w|(xxPhl7^|Br!M)2{^<^yEv?8v@F^Tg6?^NY~ zjYgmju@2S3f&K<7R=Z=49!Xzf<7HR}jBBFZ$Dk&75QF__?PxcEH(0>$THCkQ-^o~L z6^Zn6+&FEB_`Zcqhp5|FUZqB(pvQ7o;9p3PttN@}ePXjg$$LErg|tolGYl|?k$D7i4PT9op)u^&371YMl@~GDuzykzh>VoeS!Xb z&}J$NCf=AJZ9>m82iAmUFIGp^+&|iIc&*{m9oktiQxva5ruhCMOHXJJ_svaX&O4b+_aojUg53}9zxGa~&gJ{dCygq9 zX#epVxJ-A1%?4G4Y~%UU}H@Jcs6bq<7Jzx4ERC zQ@EOweKfRbgtZb4(o9(ti6W}ACl9?GPZrDCl3SRsWv4iz$SgPqSjdN)(h0vAqn9l| zX96G}x~=A`>H5ENIie>1_@zN@yRPS6z6C_*=O<1|T&{kqZD$va7{RmvH0>LcFVm|x zO@|}nzW?!pHi|pV^rbd@ zPGpW4zklkJ@wkMBmd|tlQyS(|Mm4K$Hx^65O|4xCM;U%p^t`PBnPwbb^BRPQ-nDk! zD=5n>vo_(QSB7sk*&n8%pQ*G_R%ixq?qfXp!#2l_M6|3UdBe%n%2eHLha z&Q@ZdKUMMKIIA+y(%`D*()^L4Ek*xWIWy00X6)4(Zj!)V(;^C%EM!QWx!(+^)wn{2 zs7?vSdKqgSv~xJu0moLtQ2v=2j_L9#{Urz^5CV1Ny%H@Imi&}%QW$}SjIa3+1! zWs`&~?ES-AFgMJ+BsUlBQiH)V6@wNwS7l{8HyixFOHwddT5`EM@C|{cz$^xp`3FRO z{6P~DPEyI`Pp~+Wi!(BZx>3tg@ zADMp8f87;3w<=F+1e~>i_$_&%R=}!C0uRBjDl1P>xV_$T!Gh92)?7(XPyfGRdT1FLt)xGFt+jQH zlkTIhH?FBi#LOG>Sv!5}X!%Jv*@k^ZJ5mmj-|{}j)ysGE^BQT%P&9&Bn3~v`THtY= z2q17<6lMRR9F^w@TUH2Z+Hc!td_k}S?^T(e!09ELpary{R8 z(c*UHO^a|c+<_F-NUn0P(mB?_z>OD;6q2?g<}fvgHRFlZJmuFo;qxQ|I3N!MDyZ$P zhcQm(3tMaxaT?~%Q1Gy!@N`Hb-D2baY6|&N$OzMl03El$e$fASQ$N;hcmJ%<`#v4b zcNo{fc!)pe>7;yZo7j7d=1JJ+6#p??0Ci{Xxej~7LU%rDEz)38Y8UH1s55>Vy84p( zbuIhC3=8#Mp!y`q`AJQ-a915OjG?-D)~oLJyBQvwgHR5C$rmMn+%S|ZTS#k_Sh+(? zal8$jx71&^I-rIliK6yJzx!0jZ9X@Pw!8!b{;EhZ=%4&%lh2WKa^<8HhoN5wmsX z5?HyzDqH*KwC_E~0)h^}{2~wOw*xE*$%$Uty4EVFKuA!^n-Nk8}2x`~3`_8t!jvuH; zQIAgSFL|M$2?dqc+MJByNEHIC3Ve(6t>vEU#X(T=MBeI_ELEM%q$IDpWPY$Sw6pOi zA(rWFrdX`^2f`{SpeYCNq;7H|-ytQKW#Ire@R^Q zP{R8Mr;dmTy|B<1XtSs6l^Zo)!6#tOog8vc%MCLBrB$9Bw^@;dcYOb7B^uYiFVu( zmy5PIS5d{TgFQnV9E)1#xlZ{nz-C|anJL#B5y)#av*YNpVwWXc6>f>&5?7pKl)V;HBzy!W$b`YATj~vAS9xr{1PiBdPe>Wcs zC7mCTU$2Lc!qGQ{J~LjR%ER3;sIuA|e$F^k3@d=Uu@PSPR-4=2dNkT0`;cHrya3g5 zPbS-^arAn**T?0sKL%9S7&9aB;3Dl~B8QEdyWk>N4%=QeOr_cGX?#p*gr!9=%xUKh zm9POhS#`b3$vkixWDoH|=Tj>i$g0kimLJce+|ulOYQ28oKV$nMV{chzzR%#rweTXYo1KD~ z>SKdTi5R_189LFdVSO{%+tl#kQfvdA)WD`UXu4mkHt1Z4qe~+08NgE$Enf*S<#(EH z(f6(X2fYwLk=6@__Sd%Au%waWTHc3xPyt`xzfVf@l}(|5FJvNPK~mh9i|%?Z0LFk< z3k?K-8#1qgXkB^`^9S9iao(6dD%Pa537jUSW4p zQ;e7B`AIe389P}^@<*A(_7mM;LC@#B!}sdww$}p$(r4ZcUA?DMIB3tM&(3t$<)148 z!mW3SE>qPJdnSOWJHRVzjBdv(@?oiZ$d%Y9!MQ|yx&L3YVb9rNepo`-(R+)JtCxlK znm0)gn#xb`{w6MT$l=CDBb0whlL%n)t>YnG?6jIMk-7R*V1#7UjI-Is2un+KS~8q`T08 zY}Z^fu3nn!K~=X=bvRXEQd?nzUk;FLfk!Pm*9M>Jw*9ocZZClO_Dq{I*9z~CvV|ad zQVB(DEA|7u-RT9|=g7zgwc!v^a!Pt{tDVUicf=wczr&^bY32r>^x<&=5Z2%w{;o_G zH_Ujr5-te7tPO;_lRZwb1L;4wck&A3Q=nj;0N;fEw&``d*Gp>??#rxNej?3#<07#= zz|;w%+_h7MTmJ zYC|j>ucs|h8nz{)y#=gD;yP?3et&L8FzPFt9dO)h< zWYjs1_b$p30N9uLG@`^)kQkfw=jStxOe#Zf1OR1Rff=GhC29bzg4u9N2j9R>^FUJ| z&?zAEI5IP(C=b3ST`C(*{STXSWJ^ueAX@}VmjlbW1b^24S&qK_h`T?5 zAe=|=U_1DEKTsC+ok=$6wz(W6_1zGTf2!fl=Qv{;<9g)=ofGUU#{r;9i~EAeb1Px# ztqU|frvin=S=#W67)1dC1Ai1&Q{Mwe=)>2MkrJC2; zZVA9v09&}(gV}~jeJFXmWg^?s@8esgmbHK~{QJtvc_|RNTZ-ZBKvgzd3!Z$ItbwzYi%0le$9R^)ahv9H=+<6dbXdnZm*pTH7u!`?>)%?|W~lV_Z^v=c)o2yhq=ZccTrp$=`B`A5H%I z6*)N|Lf)9e-cW2p@hQ1f+e8opxKrp^)lknM4(kGsT`_?HYDue&jK%IpoPr5Kzjx>% zQeOX~X$nBS+orJqQzbw4_fH$VspIdI{qws(p!&0RH9^NVo(Bm^cZSN9RqfTFdy=sK zO!ZdOpm-=PwhsvB^=ZEy{xQqNa%;6L&n?m`QDh99hbqMs#C?5Fa3F14E#j_A2k~)8 z^b%1BBWD0m-Q$A<299>a%a?Rl1ZY{5QgB*26;;?CRQkvcOXF=wywOz4|Lwf z#aW*#@e5RhrC$=`LH%edN$X5-HgYk7#G3Wt{VIkI!HLt5n4##vV9*rmrHQ2Q2IU0< znnK9qyO7mDNx@xQ$BDy65IdC+_v_p*?%3D}_pt3k6ye9=f@2__pyH~cSx2V)qt9iq zGSb3KGDjMbv)xZ-0Z*wW5w!JzIfLHBlx?|Df6jwWkN7JT7Cw)?_z10cHzS@)L~I>j zTd)+-sq^JPw3XykH@&XMA%~G($Ymq>RumK3_whpXXyM{ZrEVzB-9Gd`40#vi5oD2?u+^;*5;DC`Vfl=m?4dlnU zAkul8&p2&HtRiW3FOcw!dl^RhOsclW{9Kx@{vq+(ak^iqG&0dvU4w{f`Oi(DswjkS zFb<*F?jLP{J}D~<11e>mEXDtln}p!f0#+{+0mAaL+NFdQ%mx?0N$=Er6tt4L?iDRf zF!ue>i0@;{+3nCPz0!C!P0EM5bmVXXsY$fF?HoG{b4eYIz{ZO}MD8EKNtMg>swHnC zBLG&K#OL4=P`^IMOljx&ywi^$={v9X%<>jQJwmb8NWmXC*?Sii3^U?p(};u z7E@=Ph>GO_M79`k{Zzd4JCj$Vg%@mK001BLhKOP`C8!v3nS1iK9k9ul3nwH+;^@OhK=_ zpzZfw0wJ9QBZxX`%HVK;LA zvdipEiNov;4}Y5#+uXDo_kgXjQ0KrL#2iq)7Z1RihOGKguAFB$c15tS&JXQ^NCB1; z5)-1nt6jX|z(2#K#u2r%S!mQer<*be9n|;~2e+o;5fn{i>KbvWD$b&svbIbz4|+d4 z{yCJNw3C~tAI~VrN?o3h%~wWga1kgRk;YDnC>{`Ea)M@!s9gK!S1|26)M?cnlord1 z9t@WwC@(tFt{brB1;R5} zzKD}yZw@ezS1IMwV9{--8?_%tM1y7sOs4e7B6kScT&W2Q3r(I9qflvS1Ggc4^w*s_ z_ac*ejcDwQqwf6w^N(B?{Uj9XY*9L2_&$EM;>}7KkLJHpgoCKg2lSvl9!c|dYzjml zyZ^Iv>cknj<;lh&=clwAMuxY$mzs0e1-XK9cF0gQ!d9C+crL=Xq>pXcdN_1T=Pt%$ zpH<34)ELH7Hcm(MaF;5F$h&;A9S+gLa=%g#SHqq4I z2!TdCTio0y+Gk@7_HqWmtW$IMiS_e7L-mLXQf@`MxsY zs^VB*NPcT&VGQSUwS-t1&O`g))8rR@+Q)(C1CbxK@V~`agGu4WyK0}mU?8}g= zeZXDN4ZqpI9u-ysw#$gs2|gjj9(E7UN;^l!_36Fqc-Oj{OtZvz2Ky=RB8{|=?%iOr z+`|Q_h#eT}K&Coi0;zZd5_vAXYwiCi_YeX)8tzQw!5o@3hl?6f$W8TVPJ9VNLo_`Ra8A`%`v42 zl+KDN>AIMDpvgFa!QTQV=l%itkWHxPI1;)12iQv$czLM5&!gOP0D*?XYC)y>DP| z;BPgTY(Z&!h`c1k&aVPL%b7aK^2)n%kNs|hUN87;K;L$7D)x{!4H|U!n<$c89hpq_ zdl@!SD5ubo&-T}-t8`wb4&*LsM^pfnik z{|#fdfJL;AvWe_f*03J|08fnXes`mk2~Su*%|#`zWdrD~ug7;#kPnu0ZnUepcEoMN zmOoGe^Q!{N*Ydxb^(Gn z<2?!kn&!VQlJv3q1LdRP%Nm|1y&l65i^Vf}J6DSJj5^BR8j(#Gd!J7seI0KoP%8~? z84os1N)w=wxE2O1mVz#kWqRbT$Q{;8z}2GnVdX8+pYQ9M6;l=LGre+{Ri`W{Kl-Tz zefSRHxfF}oolPjDEK<+rJ%dQLn^yEL`}Q`RHFztkB@|$&Ntb9f*r6^+R=L@t8((&M z<;w_u@!&V1_H3?{BQMi&o4_$^h4>&}?mZZRIo+UmTe;ni8tqx{_~^O>e{PMVF6L;o58lTl-xj!RnCWSOmYyx%XWDk_?H z7(<_4NrOC9ISB>Sx*^!AzPn6pW~4Vm4*`^CnbDn&T{ZZ`w}dHC$I+F60bH=|Mm2_Q zPX$WqCmEcVrps`c8Y!0;_~vKYZ!?JS)c~M?tJeE@e*Lg1ySOh!{$y(fwCg8yGC5<;R;LNF9d+HC{+Z~V3>Ws*#GLkK zeh)t5J+k7!DkAy5LMHPZ~09vz{UwiUkiS1hELmh)EQX)fVzd>kq&f7OQ8B`Wr7hr z;s3ZyfjLR*aagc|JI{Z*e<~jgoy|n&Yrb~UMV~D$s-yY}mI4%IBaGJ7+>g-TA)Uuw zC~AVVbv=kp#TGwm%*|~}B}IV~t`Y=;2TFgAZN`x_ZhAEX%nqXgOk9G2Vx~f`V45QHi22YVT4W1$uUW?He61yC89K+O7Cw;M` zMynH}p?@I;I)V!%CI?-2owie5J;}NVyK%;!H>4#pX-hk5V;4_-nA&^iG|(=ilucUv zKdB@#z?aCzG{4j|dPkN0tHX35iBq?!{BBrJHV6%tYjhL@uW^H|ukeU2dz(-JU6vTM zZ=ALo5&IH@7HXZj?r6$qrx&vCFD-M6(S51bb1~?=qm;RgS|@_)n_;`pIkNUNYkkhpvNvj* z@`Ndcy|lYfx;SL)`c{w*)qIH{S)?N>2Xh7H%5aq^WS4C^^-ODMGtX7!E3<#PFTf&L zI9exw9J<+Ji!IJ69d>_w9Xt%Qc51&+YrRA1iCnN>i)y53IQJ%b8teM{;$g)P_$ zV$-oAyx7-aJ;3!7c&*FiRs?BPV)FODHML2kiTW{fs~spX%MH|bgqzO9MCRhiHNOIU z%ar9d0D@7)h@ygGBUyxmtCUH^clm>1m%b+;QEVO=%Xym7w{}P3&9^A*@3a<3(Wi$e zl?{8Jn3Ti~-c!8>97ic+AkC!C+kyNw^0{-}W7Ix*v8Jwi2ZUia87Xk&Rg%@F2h1f_ zD$IJ|dUE?1Wh;Q(*W3(MvAf5fhlmxhqn69-KV8#zRjM|UuX*D+43ErVh&DJ<<)I#O zbP8PhY8t7cQ?CkfSRe1kZTYN?{ukoc4K!Va*3GHg1Nu4{H+5P|Noecqv=L*Nv0GL& zMX?;$%8i?hXv6v4PE8n2l_`Go7uOHeoJPRvbC_XNm?634cc}h`x9q-8sv?Xw+Jf@e zlS~o+qB3YZ%a)e{@YBtA80+5|mBAi(1fwWijQRcsB)c8R-pHd_f{2|UhW@=pUP`7{ zZXOHze1sk3DX@(f_#^V(g5n=rdTy>|*uIr6-=t+GkNPmqncVKpuQ{A`pLj)VEU!I52p%um{y2$epZcDzBgkBH3n?+Tp+>73(B$ViG;| zvxj!Kz){6P$83m&o)1vFodYm=1`5r&89tu#_qU*k4tz_|BUR&ucOYY78S({B(TQb~ zp?4>%DDub*4kq5!w4E)w*D`_cy46Q^ux%05OrlB*C!wsSqW=N+EGwBg0DF9wM!+`h zTNc6-i_?jhk9K2#v{Kn|oMo0IuJBD?B-CWtDeu$(xZ8!~Y94=oG<6E1ih8G9yBxuT zxa2!Df^9}h1G;i*DpI~gi|_TT&365C1G*f#YeXPw-|uZ^SN?3PXYg6(jVxFTkd3=1 z`YXw$kkwS}%tL?p|o6$%UsV5wsO6nLZkN2*0F(0d|j&X1r7fvS< zzLla(m=sq69^?T;rZR-KIzEbg-^6TZFe0=$vh z*F%d`q>vI3WpUPi5CHtBxzWeP%ylWz5-gAYz z+#b9U2zQNMGWwLpTj-<1tiBAo&iTl=*2Hx4t^-2jLhlcNhPu&&a7NllEw8q>;8}3P z!IlpxsXeyqHLkWI<^`YA)006+wFcM65VahpV%|;2`vp$Sg^F7!$>|uFsxKCp;0$sJ z!@>~q3OL^?RHa<>);wVoDV;(} zW3Y~&*QXmHo#s}yn;?SrC7C<`-`Al7z&{zLq0ki$^q|^NF<|8-oNnU~4!D07Et2Q| zZwJDz@uYA0h#JJ?}7MoqBM+NR5nyL#9Y$xhZwzKNf zal3G13ma;kSvGabEc5nSouQ$BJ}WeSRAi2ss5Kq7T?r+F0r};F@A^90%YS8;cb=Cb z);Z^=07({m+QHsgBa9X=nINbClzKR*8~O7&O)CPl1raBEQ5CcI%n|qJY=ICY-4eQf z+$9SZ?KN7I`jqtA3eFCiJ7aaEnfbZ@Q9e{X>hJzLtG+Eghc8n)qt_t4trcY|? zUr}|l`-H5vYlRZ`H-`5yusYq3{^c37SG1^yx$oj!a|dtv;*dCwzUb68zJ9GVy9g37 zbnUrTCHzn-zB~Ls;84TQzM}ZAc#c@Gr*SK3Vmsg0>Y&=(?~C)*^A=kaVjmwPY*kaQ zGX`Hud|1da0JJvfIRUf38oP~y_!7M4dR^JLfTA%>6K})KT&49s{dHEAqJ2G`6pOOz z&h9^RG~xL*zw6Qwi9qgs;O?6I55E2a6bI#B^G@33b@~zcj-5*@c_JPUm0x_#-J}FP z8|a{@cTyiTRAMcX>pIK@XpPE{nYb+tT?966C!0_=jnH~+J(RH9v|27=~ONP+3E&SX-N`QOmZsaCRj8| ze|7!TdJm`TS=(`Tnd;H~fuUFDazg7YYdP>KRb3_xCTnC=idIBja1i&nOJO*ap#UYn zvL!kA@wmc*dV!qafjjgnCHeaE3^!*WbKU6-+4iX;&VAth&5z#&Jg~n8uJaCm<;d^m zyh)%6Q%GOR=IxFF`wIcU>zyGB`!DyL={>f%wH}L^ZdxCCAc}TeGO!Vj)BECtER46` zE3GctPcuS8*w@hatf~Nd6}9xJJMwhW(92@I$KIpy$jiVI4cPYP*0t6n@J#wMA%>SZ z(PjqYBPAz|@$O%zO<6ks1K>^WLk(|K-_3*TPw{(jNoPvuip^7I)d0_SxA{WK2opVa zfI9Rnu7Icrcx_hH=nKt?@9<)sA48Pq161Jdtng~t492}Z9%*y^>wrDs>lya@yJ7b| zw$8285TaPeG)|Tnfpd?g5}tntXP~?= z;gHGsU>IrUw!A$)9?OtcN1ywk4iJE1$F!U?zFvbi^*g;haB}ZK*KC^3VuI~V|27cG z_3yYqgMzMnGQ`hKYt3K)_K=UMC7BY%8ex*)zvAV6R1d$$(-H`~bi^)o=QswDHy4)h zykZ?Z+7SgOF?N}H?Uye{tNVC6b*eKm5WHsKj6qi0>7Vo%dNDcdyuBs`aSl}M`#YJN zt-NZb-ggiq)VfXimm)j;)PpN(e#OD+hbQ>(8?beA_G8~Aq~Ltq4|gnVcV+G)dqt2F z$P-C`2i9N8VE^2&S+S7Uw0QG~j1s8Gq@S)O?}CCWBvb&mCUsjsJ0_zUIKpZPLB60; z`d*H0#~PLXUr%p9n?DbjeWqAmil2iL0|UPxt=cVug~|&#^j7}i!$!ok*QXoCDr}z<$iJzoDoLyZCQEn69F+PC#o~s^&b>Jp`*K~&KrQwn zoS~vAJA#bCD(Du@%eHgE0kY9n71M?AHN>!(KZ{65;o;y;fCaL1^X{kBk8YQhS6csn>2`fn9k`B z6nZJ3iPRq+EY@kdqW7}iv*G#&h-IADUCcl~b)Dy@uw4xK^vWNQjN|}cths) zxXW)RrmVgWkE$onuO_27&N*>*kj1QDFfcETaGFOK!$8F~Jhu)lvg8 zq7!?jayNezT`#%0&1R?AubO=2E*&g^Wb4O}3bcah!-e6SM9Zuf-1M%k! z-2=2{xRjAoEw_V)gt|gU{(lp8xT|CZ768Z$Y}tjfJmT02cAx@$=x)@x*u>ON?Uxrk z1983i@TA4`?7CQSlvTTs=7S_Rfzmtdm}Ftj39#;Nn9X(--FB{+;|jeZ#Ab|Ys2We% zMk_WB6ozb{^H>pM>FN@LPBoC=M{F!N&sl5iQ!;W92`%eDjSfm_Y=mO#XB^Yd+pFiD zZAkM8G9XH7Uu1h`xyrO4M?@9u)fux$7Mb8Cz-qg6P+sjIthXjsy3Hadfvp#P6Xh++Op?4^9M*OC*2Kv$=J>gk_g|RdpwDD~M}E*mR(QD^xbmppR=TR} zS@k0tsD>Tb7YLw5H%N$R=Ew*gF-0yf9VfgS@SFhahK9t7+G5Bhep9MF!+q$`DxQ-ByUO$DZxm-5@A(CqN!zlWn_303~l{EpU*(lWQ+@2T>E|?MB zXV?_9sv&}nzsaegFmsE_(__*!UCJ7cUdM{?67JgBQurUk6V*?Ya~XLi7&OttSV0Q# zuE35tQ#3xMqDG9o84G8jV)nb@#FCgXojl2@}F9_O6^zIfzbb)MMF)j`IhxQv+ka%IxZkM9+(Fw9EjG^`>T z*SbB-vy!fH)Zci|Bc+? zz>FgklO|RwClm(Z6}6utk;Ec{Cv=4QS?(r}Io4|G>;t1AX~p71YzT zqN}+TXwNCSEWEn}uP>09O?LMgKum}MRt@(jHDpP1&=5_7G$B-e?5I5G!+XSf`3UIU z!_Cs+!nH)7rkE#ii;BSj-{<0nI>=G>WzcwvzC9H(-M3IOEppyw4qdWGdBRpKw}&Tc z@&>V~mNgC}^e1gu2N2f`>qIW6DU-wY6Yffk=;8`%(h{61MlgIcgG~pxa0fy?PHF?h z;;{i(;9(L?qo4~MS74JN;a(djEu(Irj#J-$tZ0~S0br5nN_C;*r$D?5--QKf>snju0r82O*sgNeySoj)Du&tY97?EP;$7g92c8O_ z&DwWlO#L?Ho4Ye6$X4&MUf0M}(l53e+p*H426@CA1AQ)dKr5tiT3gBDyrK`eQb*sI z4refnoz(B$^={H!-j<^_`^PdBd@cY$2?Xh#Gs^+%r<-4v`)g@v@sMw4JXmVV`eiJs z_%qu9lacr=+lgQYCZocF=H-RPH7CFz>zqO%>UL8+O)5?K!#9%|!R2y?q?WAg&bRim}JgJglY6H>akJ!#g{1gBBP%XiJB z&F>(zo36#3<1+StZZ}P#{Wm%Sj^Ek?iVFbxt20_Gf7;tcb=zS$t-h$>>7GXW$roS? z6cmtWY&tnwXAZp)n`_ubkakADdGq0)IF9 z+1@E_4g$`wFo?>zog~}GF+Qn9XS#Ie%raAj{>Yi0=Im%LxJQ6`PGIJxh>2py2VtGW zOna2iLULz!=MhY;dEbr~#!^*?@;(+q=;LwBAt&gs)s5h%P|}PJ#(O_7 zS+BSI<56R|Id;|l3LKMIF}W^VDiySF6xASRJQ~j=mZ+Vf{kurZQvpAHkDMQ$!08Rqyhl=|E2F7gQ(G1Y-mr*U9 zlWwzyl0r6*Fs9iQ7@CHSSUpH5v>oHeBCzNd-iij(hcq$kN8>Vu;7JL&17nmZiG+3U z?O|%`d2;ouvG;}#MZCXgA}dt82q#l-^4V3y(n`;`;l06sWJp!r3%1c$Q{4~U6E189 zHWRcJY{dhK`s(z8fAA9H8gqXiyhr}eoW*%cH_7D7Vb|wYV$cVpY zx1?QbS0)&GqGPq8e6Kq$q9i-rXBpm7S)OZz6MwG(qNlqB-hrBDP5EFsDV{n6cD2HVbL(#Bn z`o5MAaVwVT<4!w&=`$}N0yDfu$d0a%uDdy46cBuQjjK>W&Db|mJJv)S!ed7CMA&Kb z|Ldtewn=_XV#pjEj<8C619oLOOoz14`f#wLu1~3k2zN*bPVca~IO?&78YX->9==9eBI5E0SrH2i}1-jHOg`$t>4oxb9rn^6K@~YMM))LU> zq>9kLz_uGvnalo}II&!9)TD^_j{2zU2qN3>&A6>SdN=Z;ESs6Kg7dddE9S$r1nObx9|osuahDHydzJIM zTL-W@T}=j9k`F~WbE~nucN=UM+ZP|)vz#e>OB$a)WCUb?qh+|^SKcNWc$Fg(1?8)0 zU~gyYAKHk>vEz=kc|th!rzK{l7VKvSw?KI#2s+(*{VF;^)gA0h*NS%Fy!dTaWKyLC z>Z8geQPQOTPrUj*c`T?@_<=d9fP*3#2V#Upzwe`z`U2S_ivGeV}cvl+oX;OPg6I1!npKHN|| z=Mt`C<^nEky>fRL!<5}F|5tTv8a)u+mlngPnwlo|?#(5K(6Xg?@o{Jy1_6lJQ00 zGEG@RjRqnC%Kc_;5b$UG|0kqAhRUZ->m(UJX_=?s=^Bn+Vo1g4a6g@Z@A}XWh`1Kt zCp_GvWA6Txap%Ssq7}-YR^$urYEo zZ0Hm3c>N7+5bw>iZywG#!Wb)e^_YE)FB>+hNbV^@LMPIk}QVsbbNMIS8wfgxrNkK^KGB9|Uz zzr|ljOnl+=grz%m5EEj82$nJ+{;nomwvFwd?dzDRI`qq1cl-Rd z(v^?a^MCm*7DCp^U&itH(Ur}0UK9N3L#k=7Ik_O|l1W`4`z)s$YVHJ(X`O|QS$)SC19TTj}sNf^U6%1J5OQLgJ8|@bj1ekIFbrKNlog8rVsJ_58=Fj zmV$9zS83W5!k1NV4ke}ZYChwUWjBmUmjve;2PvMe5ck5&T8*?EE4($VIp5$e&_%Fd z0p%L=pbcly4qgs*19QD`A>A!vLr#|?jJ;sTb~!N_TkUz&rC2?mISMoD(NnF*(a2XW zA!C~GCUexEJWz{0HhCRKo3}ciQR=0#cz)+MHcwuz@*nIS;J|wc9^}^S3#z%f*XgRn z8qo)+9t-4|X-t6?Tj$xUzA?EM7P!wA#EJ7KVj;e@bh(`Q{EtF7os5vPuHr z3eZ2v$7mxWC0YP0k@Es1C14U`2zP1z^(P}N*k4;LJ*lK65>I zWHKf@-ij=ivw)bLM5#QYXSaRRDeY~gOBdqC10Lj`W36D>(&%?2Y zV^$28Wr+aES4%E3B|3y)@ofW_b!da2%UTS9iWHwl)(REq8ByKJ*>~JQiQTRI=7j3p z1G958Tn-#PxebWX5~!oYsaGMkC>Y7t9($e~)EfCWfD-ja3VPYo&u6dTD?U}cBsaHW z=di0vrC)%NuRpD|TBH~uj^3i>+=$-YgJ-KM^5vk(ZV0KOnx;G#9HWv;#e$+N_<&#M z{#}Zo8ss&?Hc0Ln7@e^j@(8BJ7s0vM_0jTX?^$@7qGBKl3Su16_+gK-d=S5NgF zI97~5x?r`Ws=41KB%{KN^4FvpMv zGZA-#>_|$Oo_}3SanZ4Pzje#t7Ioi�hJf_dJIA17U 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

|QZTGq6M7MfP2jbD;%o<-^O$w368yt{z2A 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 bdyeW8JeM*iL%Kp`GB`JRa!&{BUG~2K;3UnG literal 0 HcmV?d00001 diff --git "a/docs/assets/DALL\302\267E 2024-04-04 11.20.42 - A logo featuring multiple cute carps, designed with a whimsical and charming style. The carps should be depicted with smiling faces, conveying a sense.webp" "b/docs/assets/DALL\302\267E 2024-04-04 11.20.42 - A logo featuring multiple cute carps, designed with a whimsical and charming style. The carps should be depicted with smiling faces, conveying a sense.webp" new file mode 100644 index 0000000000000000000000000000000000000000..53ed20f9742dea2582d421d194a636494cf8c172 GIT binary patch literal 357032 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"`X-@Q9?Uu! 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 !|H{6+1m2f_)&Qg=D2L$I1-Fa8Ha(##B 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

$XJ- zXCCu`erjPKyt?o%TpI9tQBo{o$;VpT`+NrzDm2oh^ve9P^WO6He z9`a_9n_iGs)#@mDJSKF`33ci%^D4;=6=tz-u>qTIzSn{Ja=7 zmzNno1YYh3u25hv1Tpl#Z_ir!E}Y|Xvqh?B`{7hA0fSM;Rg|vOMPhVSKKr>1Z!i7X zP)VYTxK(DIbWJ*c?hN#|_TwDEA@L=AS$}NKu}Q_!qg0^>)CMz#8#g*Cu>3@;bs(&~F}U-cA`R zxMQlu4@RR1yo{tM>ZC#ViH(j4?Q2BYZ1&ysTfv&}WtVHU2nnM5eyM@9+xn|q9Yi1< z05wG8aCFCDzz~GlDxFa~<=!}nYLkL8$?